-
Notifications
You must be signed in to change notification settings - Fork 7
/
CgmInfo.csproj
41 lines (34 loc) · 1.13 KB
/
CgmInfo.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>CgmInfo</AssemblyName>
<RootNamespace>CgmInfo</RootNamespace>
<Description>CGM Metafile Info Library</Description>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>bin\Debug\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>bin\Release\</OutputPath>
</PropertyGroup>
<ImportGroup>
<Import Project="Common.props" />
</ImportGroup>
<ItemGroup>
<Compile Remove="CgmInfoCmd\**" />
<Compile Remove="CgmInfoGui\**" />
<Compile Remove="packages\**" />
<EmbeddedResource Remove="CgmInfoCmd\**" />
<EmbeddedResource Remove="CgmInfoGui\**" />
<EmbeddedResource Remove="packages\**" />
<None Remove="CgmInfoCmd\**" />
<None Remove="CgmInfoGui\**" />
<None Remove="packages\**" />
</ItemGroup>
<ItemGroup>
<None Remove="*.bak" />
<None Remove="*.suo" />
</ItemGroup>
</Project>