2024-06-27 01:47:44 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2024-11-08 03:09:17 +01:00
|
|
|
<RootNamespace>Jellyfin.Plugin.SmartPlaylist</RootNamespace>
|
2024-06-27 01:47:44 +02:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
2025-01-20 00:06:08 +01:00
|
|
|
<Version>0.5.0.0</Version>
|
2024-06-27 01:47:44 +02:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-11-19 16:57:34 +01:00
|
|
|
<PackageReference Include="Jellyfin.Controller" Version="10.10.3" />
|
|
|
|
<PackageReference Include="Jellyfin.Model" Version="10.10.3" />
|
2024-12-22 18:21:32 +01:00
|
|
|
<PackageReference Include="YamlDotNet" Version="16.2.1" />
|
2024-06-27 01:47:44 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
2024-11-08 03:09:17 +01:00
|
|
|
<ItemGroup>
|
2025-01-19 21:49:23 +01:00
|
|
|
<None Remove="Configuration\configPage.html"/>
|
|
|
|
<None Remove="Configuration\configPage.js"/>
|
|
|
|
<None Remove="Pages\smartPlaylists.html"/>
|
|
|
|
<None Remove="Pages\smartPlaylists.js"/>
|
|
|
|
<None Remove="Pages\smartCollections.html"/>
|
|
|
|
<None Remove="Pages\smartCollections.js"/>
|
2025-01-19 23:59:24 +01:00
|
|
|
<None Remove="Pages\lispPlayground.html"/>
|
|
|
|
<None Remove="Pages\lispPlayground.js"/>
|
2025-01-19 21:49:23 +01:00
|
|
|
<EmbeddedResource Include="Configuration\configPage.html"/>
|
|
|
|
<EmbeddedResource Include="Configuration\configPage.js"/>
|
|
|
|
<EmbeddedResource Include="Pages\smartPlaylists.html"/>
|
|
|
|
<EmbeddedResource Include="Pages\smartPlaylists.js"/>
|
|
|
|
<EmbeddedResource Include="Pages\smartCollections.html"/>
|
|
|
|
<EmbeddedResource Include="Pages\smartCollections.js"/>
|
2025-01-19 23:59:24 +01:00
|
|
|
<EmbeddedResource Include="Pages\lispPlayground.html"/>
|
|
|
|
<EmbeddedResource Include="Pages\lispPlayground.js"/>
|
2024-11-08 03:09:17 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
2024-06-27 01:47:44 +02:00
|
|
|
</Project>
|