forked from SharpMap/SharpMap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDemoWinForm.csproj
More file actions
40 lines (32 loc) · 1.2 KB
/
DemoWinForm.csproj
File metadata and controls
40 lines (32 loc) · 1.2 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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$(SolutionDir)SharpMap.Common.props" />
<PropertyGroup>
<TargetFramework>net472</TargetFramework>
<Product>DemoWinForm</Product>
<Copyright>
Copyright © 2006 iter.dk
Copyright 2008-2019 SharpMap - Team
</Copyright>
<PackageTags>sharpmap demowinform</PackageTags>
<ApplicationIcon />
<OutputType>WinExe</OutputType>
<StartupObject>DemoWinForm.Program</StartupObject>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<NoWarn>618;1701;1702;1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<Reference Include="System.Windows.Forms" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ProjNet4GeoAPI" Version="1.4.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\SharpMap\SharpMap.csproj" />
<ProjectReference Include="..\..\SharpMap.UI\SharpMap.UI.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="Data\**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>