18 lines
609 B
XML
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>
|