Emby.Naming.csproj 2.2 KB

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