-
Notifications
You must be signed in to change notification settings - Fork 205
/
Directory.Build.props
38 lines (31 loc) · 2 KB
/
Directory.Build.props
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
<Project>
<PropertyGroup>
<Company>MainSoft Technology</Company>
<PackageVersion>2.1.7</PackageVersion>
<ApplicationVersion>$(PackageVersion).0</ApplicationVersion>
<Version>$(PackageVersion).0</Version>
<FileVersion>$(PackageVersion).0</FileVersion>
<InformationalVersion>$(PackageVersion).0</InformationalVersion>
<Deterministic>true</Deterministic>
<OutputType>Library</OutputType>
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)sn.snk</AssemblyOriginatorKeyFile>
<Prefer32Bit>false</Prefer32Bit>
<Title>GMap.NET - Maps For Windows</Title>
<Authors>Jurgen De Leon Rodriguez</Authors>
<owners>MainSoft Technology</owners>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageLicenseUrl>https://github.com/judero01col/GMap.NET/wiki/License</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/judero01col/GMap.NET</PackageProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/judero01col/GMap.NET/master/GMap.ico</PackageIconUrl>
<Description>GMap.NET Windows Forms, Presentation & Avalonia is an excellent open source, powerful, free and cross-platform .NET control. Allows the use of routing, geocoding, directions and maps from Google, Yahoo!, Bing, OpenStreetMap, ArcGIS, Pergo, SigPac, Yendux, Mapy.cz, Maps.lt, iKarte.lv, NearMap, HereMap, CloudMade, WikiMapia, MapQuest and many more.</Description>
<Copyright>Copyright (c) MainSoft Technology 2016-2022</Copyright>
<PackageTags>GMap, Map, Maps, gmaps, tiling, Control, mapkit, Mapping, GIS, Geo, Places, Elevation, Geocode, Directions, Google, Here, Bing, OpenStreet</PackageTags>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
<OutputPath>..\..\Build\Debug\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
<OutputPath>..\..\Build\Release\</OutputPath>
</PropertyGroup>
</Project>