-
Notifications
You must be signed in to change notification settings - Fork 1
/
FileWriter.csproj
32 lines (28 loc) · 961 Bytes
/
FileWriter.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<None Remove="ExtractETW.cmd" />
<None Remove="MultiProfile.wprp" />
<None Remove="ProfileTest.cmd" />
<None Remove="RunPerformanceTests.cmd" />
</ItemGroup>
<ItemGroup>
<Content Include="ExtractETW.cmd">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="MultiProfile.wprp">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="ProfileTest.cmd">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="RunPerformanceTests.cmd">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>