-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathIpData.csproj
More file actions
31 lines (28 loc) · 1.42 KB
/
IpData.csproj
File metadata and controls
31 lines (28 loc) · 1.42 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>latest</LangVersion>
<PackageTags>ip ipdata</PackageTags>
<Description>C# library to gather information for an IP using ipdata.co</Description>
<Authors>IpData Community</Authors>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageProjectUrl>https://github.com/alexkhil/IpData</PackageProjectUrl>
<RepositoryUrl>https://github.com/alexkhil/IpData</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIconUrl>https://image.ibb.co/iDQdUS/ipdatalogo.png</PackageIconUrl>
<ApplicationIcon>ipdata.ico</ApplicationIcon>
<Copyright>IpData Community</Copyright>
<Win32Resource />
<PackageReleaseNotes>Release notes are at https://github.com/alexkhil/IpData/releases</PackageReleaseNotes>
<SignAssembly>false</SignAssembly>
<DelaySign>false</DelaySign>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<Version>2.0.1</Version>
<AssemblyVersion>2.0.1.0</AssemblyVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>
</Project>