forked from I-Sokolov/RDFGeomApi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGeomAPIgenerator.csproj
54 lines (42 loc) · 1.63 KB
/
GeomAPIgenerator.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath></OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<NoWarn>1701;1702;CA1416</NoWarn>
<WarningsAsErrors>NU1605</WarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<NoWarn>1701;1702;CA1416</NoWarn>
<WarningsAsErrors>NU1605</WarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Examples\**" />
<EmbeddedResource Remove="Examples\**" />
<None Remove="Examples\**" />
</ItemGroup>
<ItemGroup>
<None Remove="Program.cs~RF2092e90c.TMP" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="EngineEx_Template.cs" />
<EmbeddedResource Include="EngineEx_Template.h" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.8.0" />
<PackageReference Include="System.CodeDom" Version="6.0.0" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<None Include="O:\DevArea\RDF\a.out\x64\Debug\engine.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<None Include="O:\DevArea\RDF\a.out\x64\Release\engine.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>