-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathIP2Country.DataSources.CSVFile.csproj
More file actions
42 lines (36 loc) · 1.77 KB
/
IP2Country.DataSources.CSVFile.csproj
File metadata and controls
42 lines (36 loc) · 1.77 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard1.5</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>IP-2-Country.DataSources.CSVFile</PackageId>
<Product>IP-2-Country.DataSources.CSVFile</Product>
<Copyright>(C) 2018 - 2019 Devcorner.nl</Copyright>
<Authors>RobIII</Authors>
<Company>Devcorner.nl</Company>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/RobThree/IP2Country</PackageProjectUrl>
<PackageTags>IP Geolocation Country IP2Country IpToCountry</PackageTags>
<PackageReleaseNotes>* NetStandard 1.5 support</PackageReleaseNotes>
<Description>Provides base classes for handling CSV files (plain, gzipped or zipped) for IP2Country</Description>
<PackageIcon>csvdatasource.png</PackageIcon>
<Version>1.0.8</Version>
<RepositoryUrl>https://github.com/RobThree/IP2Country</RepositoryUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.6">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="System.IO.Compression" Version="4.3.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\IP2Country\IP2Country.csproj" />
<None Include="../icons/csvdatasource.png" Pack="true" PackagePath="" />
</ItemGroup>
</Project>