|
| 1 | +<Project> |
| 2 | + <PropertyGroup> |
| 3 | + <BaseIntermediateOutputPath>obj/jellyfin-10.11</BaseIntermediateOutputPath> |
| 4 | + <BaseOutputPath>bin/jellyfin-10.11</BaseOutputPath> |
| 5 | + </PropertyGroup> |
| 6 | + |
| 7 | + <Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" /> |
| 8 | + |
| 9 | + <PropertyGroup> |
| 10 | + <TargetFramework>net9.0</TargetFramework> |
| 11 | + <CheckEolTargetFramework>false</CheckEolTargetFramework> |
| 12 | + <RootNamespace>subbuzz</RootNamespace> |
| 13 | + <AssemblyName>subbuzz</AssemblyName> |
| 14 | + <DefineConstants>JELLYFIN,NO_HTML</DefineConstants> |
| 15 | + <GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute> |
| 16 | + <GenerateAssemblyInfo>false</GenerateAssemblyInfo> |
| 17 | + <PackageProjectUrl>https://github.com/josdion/subbuzz</PackageProjectUrl> |
| 18 | + <Nullable>annotations</Nullable> |
| 19 | + <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> |
| 20 | + </PropertyGroup> |
| 21 | + |
| 22 | + <ItemGroup> |
| 23 | + <Compile Remove="API\ControllerEmby.cs" /> |
| 24 | + </ItemGroup> |
| 25 | + |
| 26 | + <ItemGroup> |
| 27 | + <PackageReference Include="Jellyfin.Controller" Version="10.11.*-*" IncludeAssets="compile" /> |
| 28 | + <PackageReference Include="Microsoft.Extensions.Http" Version="9.0.4" IncludeAssets="compile" /> |
| 29 | + <PackageReference Include="SharpCompress" Version="0.37.2" /> |
| 30 | + </ItemGroup> |
| 31 | + |
| 32 | + <ItemGroup> |
| 33 | + <None Remove="Configuration\*.html" /> |
| 34 | + <None Remove="Configuration\*.js" /> |
| 35 | + <None Remove="Configuration\**" /> |
| 36 | + <EmbeddedResource Include="Configuration\*.html" /> |
| 37 | + <EmbeddedResource Include="Configuration\*.js" /> |
| 38 | + <EmbeddedResource Include="Configuration\Jellyfin\*.js" /> |
| 39 | + <EmbeddedResource Include="Configuration\Jellyfin\*.html" /> |
| 40 | + </ItemGroup> |
| 41 | + |
| 42 | + <Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" /> |
| 43 | + |
| 44 | +</Project> |
0 commit comments