-
Notifications
You must be signed in to change notification settings - Fork 9
/
subbuzz.jellyfin.10.8.csproj
45 lines (38 loc) · 1.64 KB
/
subbuzz.jellyfin.10.8.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
39
40
41
42
43
44
45
<Project>
<PropertyGroup>
<BaseIntermediateOutputPath>obj/jellyfin-10.8</BaseIntermediateOutputPath>
<BaseOutputPath>bin/jellyfin-10.8</BaseOutputPath>
</PropertyGroup>
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<CheckEolTargetFramework>false</CheckEolTargetFramework>
<RootNamespace>subbuzz</RootNamespace>
<AssemblyName>subbuzz</AssemblyName>
<DefineConstants>JELLYFIN,JELLYFIN_108,NO_HTML</DefineConstants>
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<PackageProjectUrl>https://github.com/josdion/subbuzz</PackageProjectUrl>
<Nullable>annotations</Nullable>
</PropertyGroup>
<ItemGroup>
<Compile Remove="API\ControllerEmby.cs" />
<Compile Remove="PluginServiceRegistrator.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Jellyfin.Controller" Version="10.8.*-*" />
<PackageReference Include="SharpCompress" Version="0.32.2" />
<PackageReference Include="Microsoft.Extensions.Http" Version="6.0.0" />
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<None Remove="Configuration\*.html" />
<None Remove="Configuration\*.js" />
<None Remove="Configuration\**" />
<EmbeddedResource Include="Configuration\*.html" />
<EmbeddedResource Include="Configuration\*.js" />
<EmbeddedResource Include="Configuration\Jellyfin\*.js" />
<EmbeddedResource Include="Configuration\Jellyfin\*.html" />
</ItemGroup>
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
</Project>