-
Notifications
You must be signed in to change notification settings - Fork 305
Expand file tree
/
Copy pathWinFormSamples.csproj
More file actions
69 lines (59 loc) · 2.62 KB
/
WinFormSamples.csproj
File metadata and controls
69 lines (59 loc) · 2.62 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$(SolutionDir)SharpMap.Common.props" />
<PropertyGroup>
<TargetFramework>net472</TargetFramework>
<Product>WinFormSamples</Product>
<Copyright>
Copyright © 2006 iter.dk
Copyright 2008-2019 SharpMap - Team
</Copyright>
<PackageTags>sharpmap winforms</PackageTags>
<ApplicationIcon />
<OutputType>WinExe</OutputType>
<StartupObject>WinFormSamples.Program</StartupObject>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<GenerateResourceUsePreserializedResources>true</GenerateResourceUsePreserializedResources>
<NoWarn>618;1701;1702;1591;1573</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="GDAL.Native" Version="2.4.2" />
<PackageReference Include="Npgsql" Version="4.0.10" />
<PackageReference Include="ProjNET4GeoAPI" Version="1.4.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\SharpMap.CoordinateSystems.DotSpatial\SharpMap.CoordinateSystems.DotSpatial.csproj" />
<ProjectReference Include="..\..\SharpMap\SharpMap.csproj" />
<ProjectReference Include="..\..\SharpMap.UI\SharpMap.UI.csproj" />
<ProjectReference Include="..\..\SharpMap.Extensions\SharpMap.Extensions.csproj" />
<ProjectReference Include="..\..\SharpMap.Layers.BruTile\SharpMap.Layers.BruTile.csproj" />
<ProjectReference Include="..\..\SharpMap.Layers.HeatLayer\SharpMap.Layers.HeatLayer.csproj" />
<ProjectReference Include="..\..\SharpMap.SqlServerSpatialObjects\SharpMap.SqlServerSpatialObjects.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Windows.Forms" />
</ItemGroup>
<ItemGroup>
<None Update="GeoData\**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Images\**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Resources\**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Settings.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<None Update="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
</Project>