Enhanced JavaScript files for autumn, christmas, easter, fireworks, halloween, hearts, santa, snowfall, snowflakes, and snowstorm to support configuration options via window.SeasonalsPluginConfig. Added automatic theme selection based on date in README.md.
35 lines
1.4 KiB
XML
35 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<JellyfinVersion>10.11.0</JellyfinVersion>
|
|
<TargetFramework Condition="$(JellyfinVersion.StartsWith('10.11'))">net9.0</TargetFramework>
|
|
<TargetFramework Condition="!$(JellyfinVersion.StartsWith('10.11'))">net8.0</TargetFramework>
|
|
<RootNamespace>Jellyfin.Plugin.Seasonals</RootNamespace>
|
|
<Nullable>enable</Nullable>
|
|
<!-- <AnalysisMode>AllEnabledByDefault</AnalysisMode> -->
|
|
<!-- <CodeAnalysisRuleSet>../jellyfin.ruleset</CodeAnalysisRuleSet> -->
|
|
<!-- <GenerateDocumentationFile>true</GenerateDocumentationFile> -->
|
|
<!-- <TreatWarningsAsErrors>false</TreatWarningsAsErrors> -->
|
|
<Title>Jellyfin Seasonals Plugin</Title>
|
|
<Authors>CodeDevMLH</Authors>
|
|
<Version>1.1.0.0</Version>
|
|
<RepositoryUrl>https://github.com/CodeDevMLH/jellyfin-plugin-seasonals</RepositoryUrl>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Jellyfin.Controller" Version="$(JellyfinVersion)" />
|
|
<PackageReference Include="Jellyfin.Model" Version="$(JellyfinVersion)" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="Configuration\configPage.html" />
|
|
<EmbeddedResource Include="Configuration\configPage.html" />
|
|
<None Remove="Web\**" />
|
|
<EmbeddedResource Include="Web\**" />
|
|
|
|
<None Include="..\README.md" />
|
|
<None Include="..\logo.png" CopyToOutputDirectory="Always" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|