<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.11.0</VersionPrefix>
<RepositoryUrl > https://github.com/jellyfin/jellyfin</RepositoryUrl>
<PackageLicenseExpression > GPL-3.0-only</PackageLicenseExpression>
</PropertyGroup>
<PropertyGroup >
<TargetFramework > net8.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' " >
<CodeAnalysisTreatWarningsAsErrors > false</CodeAnalysisTreatWarningsAsErrors>
</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 >
<FrameworkReference Include= "Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup >
<PackageReference Include= "Microsoft.Extensions.Logging.Abstractions" />
<PackageReference Include= "MimeTypes" >
<PrivateAssets > all</PrivateAssets>
<IncludeAssets > runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include= "System.Globalization" />
<PackageReference Include= "System.Text.Json" />
</ItemGroup>
<ItemGroup >
<Compile Include= "..\SharedVersion.cs" />
</ItemGroup>
<!-- 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 >
<ProjectReference Include= "../Jellyfin.Data/Jellyfin.Data.csproj" />
<ProjectReference Include= "../src/Jellyfin.Extensions/Jellyfin.Extensions.csproj" />
</ItemGroup>
</Project>