-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathOpenNETCF.Extensions.csproj
More file actions
41 lines (35 loc) · 1.29 KB
/
Copy pathOpenNETCF.Extensions.csproj
File metadata and controls
41 lines (35 loc) · 1.29 KB
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>
<Product>OpenNETCF Extensions</Product>
<Copyright>©2016-2019</Copyright>
<Authors>Chris Tacke</Authors>
<Company>Tacke Consulting</Company>
<Version>1.0.19330</Version>
<RootNamespace>OpenNETCF.Extensions</RootNamespace>
<AssemblyName>OpenNETCF.Extensions</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>TRACE;NETSTANDARD</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>TRACE;NETSTANDARD</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Test\**" />
<EmbeddedResource Remove="Test\**" />
<None Remove="Test\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="ControlExtensions.cs" />
</ItemGroup>
<ItemGroup>
<None Remove=".gitignore" />
<None Remove="com.opennetcf.extensions.nuspec" />
<None Remove="com.opennetcf.extensions.pcl.nuspec" />
<None Remove="com.opennetcf.extensions.standard.nuspec" />
<None Remove="LICENSE" />
<None Remove="NuGetReferenceHintPathRewrite.targets" />
<None Remove="README.md" />
</ItemGroup>
</Project>