|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | | - |
3 | | - <PropertyGroup> |
4 | | - <Copyright>Copyright © Simon Bartlett 2012</Copyright> |
5 | | - <NeutralLanguage>en</NeutralLanguage> |
6 | | - <Authors>Simon Bartlett</Authors> |
7 | | - <AssemblyName>Geo</AssemblyName> |
8 | | - <Version>1.1.1</Version> |
9 | | - <Description>A geospatial library for .NET</Description> |
10 | | - <PackageLicenseExpression>LGPL-3.0-or-later</PackageLicenseExpression> |
11 | | - <PackageTags>geo;spatial;gps;coordinates;wgs84;geography;WKT;WKB;GeoJSON;GPX;IGC;NMEA;Garmin;PocketFMS;SkyDemon;magnetic declination;magnetic variation;geomagnetism;igrf;wmm</PackageTags> |
12 | | - <RepositoryType>git</RepositoryType> |
13 | | - <RepositoryUrl>https://github.com/sibartlett/Geo</RepositoryUrl> |
14 | | - <DefineConstants>SIMPLE_JSON_TYPEINFO</DefineConstants> |
15 | | - <TargetFramework>netstandard2.0</TargetFramework> |
16 | | - <LangVersion>default</LangVersion> |
17 | | - <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
18 | | - </PropertyGroup> |
19 | | - |
20 | | - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
21 | | - <NoWarn/> |
22 | | - <DefineConstants>$(DefineConstants);DEBUG;TRACE</DefineConstants> |
23 | | - </PropertyGroup> |
24 | | - |
25 | | - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
26 | | - <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
27 | | - </PropertyGroup> |
28 | | - |
29 | | - <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3'"> |
30 | | - <PackageReference Include="System.Reflection.TypeExtensions" Version="4.7.0"/> |
31 | | - <PackageReference Include="System.Runtime.Serialization.Primitives" Version="4.3.0"/> |
32 | | - <PackageReference Include="System.Xml.XmlDocument" Version="4.3.0"/> |
33 | | - <PackageReference Include="System.Xml.XmlSerializer" Version="4.3.0"/> |
34 | | - </ItemGroup> |
35 | | - |
36 | | - <ItemGroup> |
37 | | - <None Include="..\README.md" Pack="true" PackagePath="\" /> |
38 | | - </ItemGroup> |
39 | | - |
40 | | - <Target Name="Husky" BeforeTargets="Restore;CollectPackageReferences" Condition="'$(HUSKY)' != 0"> |
41 | | - <Exec Command="dotnet tool restore" StandardOutputImportance="Low" StandardErrorImportance="High" /> |
42 | | - <Exec Command="dotnet husky install" StandardOutputImportance="Low" StandardErrorImportance="High" WorkingDirectory=".." /> |
43 | | - </Target> |
44 | | - |
| 2 | + <PropertyGroup> |
| 3 | + <Copyright>Copyright © Simon Bartlett 2012</Copyright> |
| 4 | + <NeutralLanguage>en</NeutralLanguage> |
| 5 | + <Authors>Simon Bartlett</Authors> |
| 6 | + <AssemblyName>Geo</AssemblyName> |
| 7 | + <Version>1.1.1</Version> |
| 8 | + <Description>A geospatial library for .NET</Description> |
| 9 | + <PackageLicenseExpression>LGPL-3.0-or-later</PackageLicenseExpression> |
| 10 | + <PackageTags>geo;spatial;gps;coordinates;wgs84;geography;WKT;WKB;GeoJSON;GPX;IGC;NMEA;Garmin;PocketFMS;SkyDemon;magnetic declination;magnetic variation;geomagnetism;igrf;wmm</PackageTags> |
| 11 | + <RepositoryType>git</RepositoryType> |
| 12 | + <RepositoryUrl>https://github.com/sibartlett/Geo</RepositoryUrl> |
| 13 | + <DefineConstants>SIMPLE_JSON_TYPEINFO</DefineConstants> |
| 14 | + <TargetFramework>netstandard2.0</TargetFramework> |
| 15 | + <LangVersion>default</LangVersion> |
| 16 | + <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
| 17 | + </PropertyGroup> |
| 18 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
| 19 | + <NoWarn /> |
| 20 | + <DefineConstants>$(DefineConstants);DEBUG;TRACE</DefineConstants> |
| 21 | + </PropertyGroup> |
| 22 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
| 23 | + <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
| 24 | + </PropertyGroup> |
| 25 | + <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3'"> |
| 26 | + <PackageReference Include="System.Reflection.TypeExtensions" Version="4.7.0" /> |
| 27 | + <PackageReference Include="System.Runtime.Serialization.Primitives" Version="4.3.0" /> |
| 28 | + <PackageReference Include="System.Xml.XmlDocument" Version="4.3.0" /> |
| 29 | + <PackageReference Include="System.Xml.XmlSerializer" Version="4.3.0" /> |
| 30 | + </ItemGroup> |
| 31 | + <ItemGroup> |
| 32 | + <None Include="..\README.md" Pack="true" PackagePath="\" /> |
| 33 | + </ItemGroup> |
| 34 | + <Target Name="Husky" BeforeTargets="Restore;CollectPackageReferences" Condition="'$(HUSKY)' != 0"> |
| 35 | + <Exec |
| 36 | + Command="dotnet tool restore" |
| 37 | + StandardOutputImportance="Low" |
| 38 | + StandardErrorImportance="High" |
| 39 | + /> |
| 40 | + <Exec |
| 41 | + Command="dotnet husky install" |
| 42 | + StandardOutputImportance="Low" |
| 43 | + StandardErrorImportance="High" |
| 44 | + WorkingDirectory=".." |
| 45 | + /> |
| 46 | + </Target> |
45 | 47 | </Project> |
0 commit comments