| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 | <Project Sdk="Microsoft.NET.Sdk">  <!-- ProjectGuid is only included as a requirement for SonarQube analysis -->  <PropertyGroup>    <ProjectGuid>{7EEEB4BB-F3E8-48FC-B4C5-70F0FFF8329B}</ProjectGuid>  </PropertyGroup>  <PropertyGroup>    <Authors>Jellyfin Contributors</Authors>    <PackageId>Jellyfin.Model</PackageId>    <VersionPrefix>10.8.0</VersionPrefix>    <RepositoryUrl>https://github.com/jellyfin/jellyfin</RepositoryUrl>    <PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>  </PropertyGroup>  <PropertyGroup>    <TargetFramework>net6.0</TargetFramework>    <GenerateAssemblyInfo>false</GenerateAssemblyInfo>    <GenerateDocumentationFile>true</GenerateDocumentationFile>    <PublishRepositoryUrl>true</PublishRepositoryUrl>    <EmbedUntrackedSources>true</EmbedUntrackedSources>    <IncludeSymbols>true</IncludeSymbols>    <SymbolPackageFormat>snupkg</SymbolPackageFormat>  </PropertyGroup>  <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>  </PropertyGroup>  <PropertyGroup Condition=" '$(Stability)'=='Unstable'">    <!-- Include all symbols in the main nupkg until Azure Artifact Feed starts supporting ingesting NuGet symbol packages. -->    <AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>  </PropertyGroup>  <ItemGroup>    <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />    <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0" />    <PackageReference Include="MimeTypes" Version="2.2.1">      <PrivateAssets>all</PrivateAssets>      <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>    </PackageReference>    <PackageReference Include="System.Globalization" Version="4.3.0" />    <PackageReference Include="System.Text.Json" Version="6.0.1" />  </ItemGroup>  <ItemGroup>    <Compile Include="..\SharedVersion.cs" />  </ItemGroup>  <!-- Code Analyzers-->  <ItemGroup Condition=" '$(Configuration)' == 'Debug' ">    <PackageReference Include="SerilogAnalyzer" Version="0.15.0" PrivateAssets="All" />    <PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.376" PrivateAssets="All" />    <PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" Version="1.1.31" PrivateAssets="All" />  </ItemGroup>  <ItemGroup>    <ProjectReference Include="../Jellyfin.Data/Jellyfin.Data.csproj" />    <ProjectReference Include="../src/Jellyfin.Extensions/Jellyfin.Extensions.csproj" />  </ItemGroup></Project>
 |