Files
Jellyfin-Comments/SmokeTests/SmokeTests.csproj
Gabrieal Jimmy ee94f4fd49 Fix
2026-07-16 13:54:01 -05:00

18 lines
609 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Jellyfin.Plugin.RedditComments\Jellyfin.Plugin.RedditComments.csproj" />
<!-- The plugin itself excludes runtime assets (the Jellyfin server provides this assembly);
the tests need it present to exercise the cache. -->
<PackageReference Include="Microsoft.Data.Sqlite" Version="9.0.11" />
</ItemGroup>
</Project>