2
0

MediaBrowser.Model.csproj 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <!-- ProjectGuid is only included as a requirement for SonarQube analysis -->
  3. <PropertyGroup>
  4. <ProjectGuid>{7EEEB4BB-F3E8-48FC-B4C5-70F0FFF8329B}</ProjectGuid>
  5. </PropertyGroup>
  6. <PropertyGroup>
  7. <Authors>Jellyfin Contributors</Authors>
  8. <PackageId>Jellyfin.Model</PackageId>
  9. <VersionPrefix>10.8.0</VersionPrefix>
  10. <RepositoryUrl>https://github.com/jellyfin/jellyfin</RepositoryUrl>
  11. <PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
  12. </PropertyGroup>
  13. <PropertyGroup>
  14. <TargetFramework>net6.0</TargetFramework>
  15. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  16. <GenerateDocumentationFile>true</GenerateDocumentationFile>
  17. <PublishRepositoryUrl>true</PublishRepositoryUrl>
  18. <EmbedUntrackedSources>true</EmbedUntrackedSources>
  19. <IncludeSymbols>true</IncludeSymbols>
  20. <SymbolPackageFormat>snupkg</SymbolPackageFormat>
  21. </PropertyGroup>
  22. <PropertyGroup Condition=" '$(Stability)'=='Unstable'">
  23. <!-- Include all symbols in the main nupkg until Azure Artifact Feed starts supporting ingesting NuGet symbol packages. -->
  24. <AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
  25. </PropertyGroup>
  26. <ItemGroup>
  27. <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.0" PrivateAssets="All" />
  28. <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0" />
  29. <PackageReference Include="System.Globalization" Version="4.3.0" />
  30. <PackageReference Include="System.Text.Json" Version="6.0.0" />
  31. </ItemGroup>
  32. <ItemGroup>
  33. <Compile Include="..\SharedVersion.cs" />
  34. </ItemGroup>
  35. <!-- Code Analyzers-->
  36. <ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
  37. <PackageReference Include="SerilogAnalyzer" Version="0.15.0" PrivateAssets="All" />
  38. <PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="All" />
  39. <PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" Version="1.1.31" PrivateAssets="All" />
  40. </ItemGroup>
  41. <ItemGroup>
  42. <ProjectReference Include="../Jellyfin.Data/Jellyfin.Data.csproj" />
  43. <ProjectReference Include="../src/Jellyfin.Extensions/Jellyfin.Extensions.csproj" />
  44. </ItemGroup>
  45. </Project>