-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIPAPI-Client.csproj
More file actions
34 lines (28 loc) · 1.13 KB
/
Copy pathIPAPI-Client.csproj
File metadata and controls
34 lines (28 loc) · 1.13 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>IPAPIClient</RootNamespace>
<DisableImplicitNamespaceImports>true</DisableImplicitNamespaceImports>
<Nullable>disable</Nullable>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Text.Json" Version="5.0.2" />
</ItemGroup>
<!-- Package Details -->
<PropertyGroup>
<PackageId>IP-API</PackageId>
<Version>1.0.0</Version>
<Authors>Luke Preiner</Authors>
<title>IP-API</title>
<RepositoryUrl>https://github.com/lpreiner/IPAPI-Client</RepositoryUrl>
<description>Simple client for ip-api.com with support for both free and pro endpoints</description>
<PackageProjectUrl>https://github.com/lpreiner/IPAPI-Client</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
</Project>