| 1234567891011121314151617181920212223242526272829 | <Project Sdk="Microsoft.NET.Sdk">  <!-- ProjectGuid is only included as a requirement for SonarQube analysis -->  <PropertyGroup>    <ProjectGuid>{A2FD0A10-8F62-4F9D-B171-FFDF9F0AFA9D}</ProjectGuid>  </PropertyGroup>  <ItemGroup>    <PackageReference Include="AutoFixture" />    <PackageReference Include="AutoFixture.AutoMoq" />    <PackageReference Include="AutoFixture.Xunit2" />    <PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" />    <PackageReference Include="Microsoft.Extensions.Options" />    <PackageReference Include="Microsoft.NET.Test.Sdk" />    <PackageReference Include="xunit" />    <PackageReference Include="xunit.runner.visualstudio">      <PrivateAssets>all</PrivateAssets>      <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>    </PackageReference>    <PackageReference Include="coverlet.collector" />    <PackageReference Include="Moq" />  </ItemGroup>  <ItemGroup>    <ProjectReference Include="../../Jellyfin.Api/Jellyfin.Api.csproj" />    <ProjectReference Include="../../Jellyfin.Server.Implementations/Jellyfin.Server.Implementations.csproj" />  </ItemGroup></Project>
 |