-
Notifications
You must be signed in to change notification settings - Fork 1
/
dotNS.csproj
38 lines (34 loc) · 1.35 KB
/
dotNS.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>kolya5544</Authors>
<Company>kolya5544</Company>
<Description>A C# library for NationStates API access.</Description>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageProjectUrl>https://github.com/kolya5544/dotNS</PackageProjectUrl>
<PackageDescription>A C# library for NationStates API access.</PackageDescription>
<PackageIcon>favicon.png</PackageIcon>
<RepositoryUrl>https://github.com/kolya5544/dotNS</RepositoryUrl>
<RepositoryType>public</RepositoryType>
<PackageTags>nationstates, rest, xml, api, library</PackageTags>
<Version>0.5.1</Version>
<AssemblyVersion>0.5.0.0</AssemblyVersion>
<FileVersion>0.5.0.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<None Include="favicon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="SkiaSharp" Version="2.88.6" />
<PackageReference Include="SkiaSharp.NativeAssets.Linux" Version="2.88.6" />
<PackageReference Include="SkiaSharp.NativeAssets.Win32" Version="2.88.6" />
</ItemGroup>
</Project>