-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
119 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<BaseIntermediateOutputPath>obj/emby-4.9</BaseIntermediateOutputPath> | ||
<BaseOutputPath>bin/emby-4.9</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,NO_HTML</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.9.*-*" /> | ||
<PackageReference Include="SharpCompress" Version="0.33.0" /> | ||
<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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<BaseIntermediateOutputPath>obj/jellyfin-10.10</BaseIntermediateOutputPath> | ||
<BaseOutputPath>bin/jellyfin-10.10</BaseOutputPath> | ||
</PropertyGroup> | ||
|
||
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" /> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<CheckEolTargetFramework>false</CheckEolTargetFramework> | ||
<RootNamespace>subbuzz</RootNamespace> | ||
<AssemblyName>subbuzz</AssemblyName> | ||
<DefineConstants>JELLYFIN,NO_HTML</DefineConstants> | ||
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute> | ||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> | ||
<PackageProjectUrl>https://github.com/josdion/subbuzz</PackageProjectUrl> | ||
<Nullable>annotations</Nullable> | ||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Remove="API\ControllerEmby.cs" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Jellyfin.Controller" Version="10.10.*-*" IncludeAssets="compile" /> | ||
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.0" IncludeAssets="compile" /> | ||
<FrameworkReference Include="Microsoft.AspNetCore.App" Version="2.2.8" IncludeAssets="compile" /> | ||
<PackageReference Include="SharpCompress" Version="0.37.2" /> | ||
</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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters