forked from AniAPI-Team/AniAPI.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAniAPI.NET.csproj
More file actions
32 lines (27 loc) · 1.16 KB
/
AniAPI.NET.csproj
File metadata and controls
32 lines (27 loc) · 1.16 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<PackageId>AniAPI.NET</PackageId>
<Version>1.1.2</Version>
<Authors>Dazorn96</Authors>
<Company>AnIAPI</Company>
<PackageReleaseNotes>Updated to AniAPI version 1.1.0</PackageReleaseNotes>
<PackageTags>aniapi anime api wrapper netcore</PackageTags>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageIcon>aniapi_icon_dark.png</PackageIcon>
<PackageProjectUrl>https://github.com/AniAPI-Team/AniAPI.NET</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>
<ItemGroup>
<Folder Include="Images\" />
</ItemGroup>
<ItemGroup>
<None Include="Images\aniapi_icon_dark.png" Pack="true" PackagePath="\" />
<None Include="../README.md" Pack="true" PackagePath="\" />
<None Include="../LICENSE" Pack="true" PackagePath="" />
</ItemGroup>
</Project>