-
Notifications
You must be signed in to change notification settings - Fork 9
/
subbuzz.emby.4.7.csproj
48 lines (41 loc) · 1.73 KB
/
subbuzz.emby.4.7.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
46
47
48
<Project>
<PropertyGroup>
<BaseIntermediateOutputPath>obj/emby-4.7</BaseIntermediateOutputPath>
<BaseOutputPath>bin/emby-4.7</BaseOutputPath>
</PropertyGroup>
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<CheckEolTargetFramework>false</CheckEolTargetFramework>
<LangVersion>latest</LangVersion>
<RootNamespace>subbuzz</RootNamespace>
<AssemblyName>subbuzz</AssemblyName>
<DefineConstants>EMBY,EMBY_47</DefineConstants>
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<PackageProjectUrl>https://github.com/josdion/subbuzz</PackageProjectUrl>
<Nullable>annotations</Nullable>
</PropertyGroup>
<ItemGroup>
<Compile Remove="API\ControllerJellyfin.cs" />
<Compile Remove="PluginServiceRegistrator.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="mediabrowser.server.core" Version="4.7.*" />
<PackageReference Include="SharpCompress" Version="0.32.1" />
<PackageReference Include="System.Memory" Version="4.5.5" />
<PackageReference Include="System.Text.Json" Version="6.0.10" />
</ItemGroup>
<ItemGroup>
<None Remove="Configuration\*.html" />
<None Remove="Configuration\*.js" />
<None Remove="Configuration\**" />
<None Remove="thumb.png" />
<EmbeddedResource Include="Configuration\*.html" />
<EmbeddedResource Include="Configuration\*.js" />
<EmbeddedResource Include="Configuration\Emby\*.js" />
<EmbeddedResource Include="Configuration\Emby\*.html" />
<EmbeddedResource Include="thumb.png" />
</ItemGroup>
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
</Project>