forked from AlexanderKrutov/WinFormsMapControl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMapControl.csproj
More file actions
33 lines (33 loc) · 1.53 KB
/
Copy pathMapControl.csproj
File metadata and controls
33 lines (33 loc) · 1.53 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net451</TargetFrameworks>
<Version>1.1.0</Version>
<Product>System.Windows.Forms.MapControl</Product>
<Description>Map control for WindowsForms</Description>
<Copyright>© Alexander Krutov 2020-2021</Copyright>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Title>System.Windows.Forms.MapControl</Title>
<Summary>Map control for WindowsForms</Summary>
<PackageId>WinFormsMapControl</PackageId>
<Authors>Alexander Krutov</Authors>
<Company>Alexander Krutov</Company>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/AlexanderKrutov/WinFormsMapControl</PackageProjectUrl>
<RepositoryUrl>https://github.com/AlexanderKrutov/WinFormsMapControl.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>WindowsForms, MapControl, OpenStreetMap</PackageTags>
<AssemblyName>System.Windows.Forms.MapControl</AssemblyName>
<RootNamespace>System.Windows.Forms</RootNamespace>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net451|AnyCPU'">
<DocumentationFile>System.Windows.Forms.MapControl.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="OfflineMaps\**\*.jpg" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Windows" />
<Reference Include="System.Windows.Forms" />
</ItemGroup>
</Project>