mirror of
https://github.com/danieladov/jellyfin-plugin-skin-manager.git
synced 2026-01-18 16:37:31 +01:00
35 lines
912 B
XML
35 lines
912 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>NET8.0</TargetFramework>
|
|
<IsPackable>true</IsPackable>
|
|
<AssemblyVersion>2.0.2</AssemblyVersion>
|
|
<FileVersion>2.0.2</FileVersion>
|
|
<Authors />
|
|
<Company />
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Jellyfin.Controller" Version="10.10.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="Configuration\configurationpage.html" />
|
|
<EmbeddedResource Include="Configuration\configurationpage.html" />
|
|
|
|
<None Remove="Configuration\fontpicker.js" />
|
|
<EmbeddedResource Include="Configuration\fontpicker.js" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Properties\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="MediaBrowser.Api">
|
|
<HintPath>..\..\..\..\..\..\Program Files\Jellyfin\Server\MediaBrowser.Api.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
</Project>
|