Emby.Naming.csproj 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netstandard2.0</TargetFramework>
  4. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  5. </PropertyGroup>
  6. <ItemGroup>
  7. <Compile Include="..\SharedVersion.cs" />
  8. </ItemGroup>
  9. <ItemGroup>
  10. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj" />
  11. </ItemGroup>
  12. <PropertyGroup>
  13. <Authors>Jellyfin Contributors</Authors>
  14. <PackageId>Jellyfin.Naming</PackageId>
  15. <PackageLicenseUrl>https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt</PackageLicenseUrl>
  16. <RepositoryUrl>https://github.com/jellyfin/jellyfin</RepositoryUrl>
  17. <GenerateDocumentationFile>true</GenerateDocumentationFile>
  18. </PropertyGroup>
  19. <!-- Code analysers-->
  20. <ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
  21. <PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.4" />
  22. <PackageReference Include="StyleCop.Analyzers" Version="1.1.118" />
  23. <PackageReference Include="SerilogAnalyzer" Version="0.15.0" />
  24. </ItemGroup>
  25. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  26. <CodeAnalysisRuleSet>../jellyfin.ruleset</CodeAnalysisRuleSet>
  27. </PropertyGroup>
  28. </Project>