| 123456789101112131415161718192021222324252627282930313233343536373839404142 | <Project Sdk="Microsoft.NET.Sdk">  <PropertyGroup>    <TargetFramework>net9.0</TargetFramework>    <GenerateAssemblyInfo>false</GenerateAssemblyInfo>    <GenerateDocumentationFile>true</GenerateDocumentationFile>  </PropertyGroup>  <!-- Code Analyzers -->  <ItemGroup Condition=" '$(Configuration)' == 'Debug' ">    <PackageReference Include="IDisposableAnalyzers">      <PrivateAssets>all</PrivateAssets>      <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>    </PackageReference>    <PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers">      <PrivateAssets>all</PrivateAssets>      <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>    </PackageReference>    <PackageReference Include="SerilogAnalyzer" PrivateAssets="All" />    <PackageReference Include="StyleCop.Analyzers" PrivateAssets="All" />    <PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" PrivateAssets="All" />  </ItemGroup>  <ItemGroup>    <Compile Include="..\SharedVersion.cs" />  </ItemGroup>  <ItemGroup>    <PackageReference Include="AsyncKeyedLock" />    <PackageReference Include="System.Linq.Async" />    <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" />  </ItemGroup>  <ItemGroup>    <ProjectReference Include="..\Jellyfin.Data\Jellyfin.Data.csproj" />    <ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj" />    <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj" />    <ProjectReference Include="..\src\Jellyfin.Database\Jellyfin.Database.Implementations\Jellyfin.Database.Implementations.csproj" />    <ProjectReference Include="..\src\Jellyfin.Database\Jellyfin.Database.Providers.Sqlite\Jellyfin.Database.Providers.Sqlite.csproj" />  </ItemGroup></Project>
 |