-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathPixivCS.csproj
23 lines (23 loc) · 939 Bytes
/
PixivCS.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>0.5.12</Version>
<Authors>TobiichiAmane</Authors>
<Company />
<Description>C# version of Pixiv API in .NET Standard 2.0. Used by Pixiv UWP.</Description>
<PackageLicenseExpression>GPL-2.0-only</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/tobiichiamane/pixivcs</PackageProjectUrl>
<RepositoryUrl>https://github.com/tobiichiamane/pixivcs</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>Pixiv PixivAPI</PackageTags>
</PropertyGroup>
<ItemGroup>
<None Remove=".gitattributes" />
<None Remove=".gitignore" />
<None Remove="SauceNAOJsonObjectReturn.txt" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
</ItemGroup>
</Project>