-
Notifications
You must be signed in to change notification settings - Fork 304
Expand file tree
/
Copy pathSharpMap.UI.csproj
More file actions
44 lines (35 loc) · 1.43 KB
/
SharpMap.UI.csproj
File metadata and controls
44 lines (35 loc) · 1.43 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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$(SolutionDir)SharpMap.Common.props" />
<PropertyGroup>
<TargetFramework>net472</TargetFramework>
<RootNamespace>SharpMap</RootNamespace>
<Product>SharpMap UI Compontents for System.Windows.Forms</Product>
<Copyright>Copyright © 2006 iter.dk
Copyright 2008-2019 SharpMap - Team</Copyright>
<PackageTags>sharpmap winforms</PackageTags>
<Description>This package contains UI Compontents for System.Windows.Forms.</Description>
<GenerateResourceUsePreserializedResources>true</GenerateResourceUsePreserializedResources>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Web\**" />
<EmbeddedResource Remove="Web\**" />
<None Remove="Web\**" />
</ItemGroup>
<ItemGroup>
<None Remove="Forms\Icons\**" />
</ItemGroup>
<ItemGroup>
<Content Include="Forms\Icons\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="GeoAPI.Core" Version="1.7.5" />
<PackageReference Include="System.Resources.Extensions" Version="4.7.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SharpMap\SharpMap.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Windows.Forms" />
</ItemGroup>
</Project>