-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathShoko.Plugin.Abstractions.csproj
29 lines (29 loc) · 1.39 KB
/
Shoko.Plugin.Abstractions.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<OutputType>Library</OutputType>
<LangVersion>latest</LangVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Title>Interfaces for Shoko Plugins</Title>
<Authors>Shoko Team</Authors>
<PackageProjectUrl>https://shokoanime.com</PackageProjectUrl>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageIcon>icon.png</PackageIcon>
<RepositoryUrl>https://github.com/ShokoAnime/ShokoServer</RepositoryUrl>
<PackageTags>plugins, shoko, anime, metadata, tagging</PackageTags>
<PackageReleaseNotes>Renamer Rewrite</PackageReleaseNotes>
<Version>4.2.0-beta4</Version>
<Configurations>Debug;Release;Benchmarks</Configurations>
<Platforms>AnyCPU;x64</Platforms>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<None Include="../LICENSE" Pack="true" PackagePath="/" />
<None Include="../icon.png" Pack="true" PackagePath="/" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
</ItemGroup>
</Project>