-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathCppHeader2CS.csproj
More file actions
37 lines (30 loc) · 870 Bytes
/
Copy pathCppHeader2CS.csproj
File metadata and controls
37 lines (30 loc) · 870 Bytes
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
33
34
35
36
37
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Compile Remove="NonPublish\**" />
<EmbeddedResource Remove="NonPublish\**" />
<None Remove="NonPublish\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="SampleOutput.cs" />
</ItemGroup>
<ItemGroup>
<None Remove=".gitattributes" />
<None Remove=".gitignore" />
<None Remove="CodeProject Site.url" />
<None Remove="CppHeader2CS_article.docx" />
</ItemGroup>
<ItemGroup>
<None Include="SampleOutput.cs" />
</ItemGroup>
<ItemGroup>
<None Update="SampleInput.h">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>