-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
BooruDex.csproj
35 lines (30 loc) · 1.59 KB
/
BooruDex.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Shiroechi</Authors>
<PackageProjectUrl>https://github.com/Shiroechi/BooruDex</PackageProjectUrl>
<RepositoryUrl>https://github.com/Shiroechi/BooruDex</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>Imageboard Image Booru Danbooru Gelbooru Gelbooru02 Moebooru Yandere Konachan Safebooru Lolibooru Rule34 Behoimi Realbooru</PackageTags>
<NeutralLanguage>en</NeutralLanguage>
<Description>Library to access the booru website using public API. This library only support GET method, it means only listing and searching only.</Description>
<PackageReleaseNotes></PackageReleaseNotes>
<Version>2.0.0</Version>
<AssemblyName>BooruDex</AssemblyName>
<RootNamespace>BooruDex</RootNamespace>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<Optimize>true</Optimize>
<DocumentationFile>D:\Project\C#\API\BooruDex\BooruDex.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<PlatformTarget>AnyCPU</PlatformTarget>
<DocumentationFile>D:\Project\C#\API\BooruDex\BooruDex.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Litdex.Security.RNG" Version="2.1.0" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="System.Text.Json" Version="5.0.0" />
</ItemGroup>
</Project>