Emby.Naming.csproj 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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>netstandard2.1</TargetFramework>
  8. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  9. <GenerateDocumentationFile>true</GenerateDocumentationFile>
  10. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <Compile Include="..\SharedVersion.cs" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj" />
  17. </ItemGroup>
  18. <PropertyGroup>
  19. <Authors>Jellyfin Contributors</Authors>
  20. <PackageId>Jellyfin.Naming</PackageId>
  21. <PackageLicenseUrl>https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt</PackageLicenseUrl>
  22. <RepositoryUrl>https://github.com/jellyfin/jellyfin</RepositoryUrl>
  23. </PropertyGroup>
  24. <!-- Code Analyzers-->
  25. <ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
  26. <!-- TODO: <PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.8" PrivateAssets="All" /> -->
  27. <PackageReference Include="SerilogAnalyzer" Version="0.15.0" PrivateAssets="All" />
  28. <PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="All" />
  29. <PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" Version="1.1.31" PrivateAssets="All" />
  30. </ItemGroup>
  31. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  32. <CodeAnalysisRuleSet>../jellyfin.ruleset</CodeAnalysisRuleSet>
  33. </PropertyGroup>
  34. </Project>