forked from chadly/Geocoding.net
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
28 lines (27 loc) · 1.51 KB
/
Directory.Build.props
File metadata and controls
28 lines (27 loc) · 1.51 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
<Project>
<PropertyGroup>
<Authors>chadly,Exceptionless</Authors>
<Product>Geocoding.Net</Product>
<Description>Generic C# Geocoding API - unified interface for geocoding and reverse geocoding across multiple providers.</Description>
<PackageTags>geocoding;geocode;geocoder;maps;address;validation;normalization</PackageTags>
<PackageProjectUrl>https://github.com/exceptionless/Geocoding.net</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReleaseNotes>https://github.com/exceptionless/Geocoding.net/releases/latest</PackageReleaseNotes>
<RepositoryUrl>https://github.com/exceptionless/Geocoding.net.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<MinVerTagPrefix>v</MinVerTagPrefix>
<MinVerMinimumMajorMinor>5.0</MinVerMinimumMajorMinor>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.201" PrivateAssets="All"/>
<PackageReference Include="AsyncFixer" Version="2.1.0" PrivateAssets="All" />
<PackageReference Include="MinVer" Version="7.0.0" PrivateAssets="All" />
</ItemGroup>
</Project>