jellyfin/Emby.Naming/Emby.Naming.csproj

44 lines
1.6 KiB
XML
Raw Normal View History

2019-05-10 14:37:42 -04:00
<Project Sdk="Microsoft.NET.Sdk">
2018-09-12 13:26:21 -04:00
<!-- ProjectGuid is only included as a requirement for SonarQube analysis -->
<PropertyGroup>
<ProjectGuid>{E5AF7B26-2239-4CE0-B477-0AA2018EDAA2}</ProjectGuid>
</PropertyGroup>
2019-01-19 09:01:16 -05:00
<PropertyGroup>
2019-10-11 12:22:29 -04:00
<TargetFramework>netstandard2.1</TargetFramework>
2019-01-19 09:01:16 -05:00
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
2019-11-04 15:57:57 -05:00
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
2019-01-19 09:01:16 -05:00
<ItemGroup>
<Compile Include="..\SharedVersion.cs" />
2019-01-19 09:01:16 -05:00
</ItemGroup>
2019-01-13 14:45:51 -05:00
2019-01-19 09:01:16 -05:00
<ItemGroup>
<ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj" />
2019-01-19 09:01:16 -05:00
</ItemGroup>
2019-01-14 16:02:51 -05:00
<PropertyGroup>
<Authors>Jellyfin Contributors</Authors>
<PackageId>Jellyfin.Naming</PackageId>
2020-08-13 13:03:24 -04:00
<VersionPrefix>10.7.0</VersionPrefix>
2019-01-14 16:02:51 -05:00
<RepositoryUrl>https://github.com/jellyfin/jellyfin</RepositoryUrl>
2020-08-26 09:39:01 -04:00
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
2019-05-10 14:37:42 -04:00
</PropertyGroup>
<!-- Code Analyzers-->
2019-05-10 14:37:42 -04:00
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
2020-01-22 16:18:56 -05:00
<!-- TODO: <PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.8" PrivateAssets="All" /> -->
2019-11-08 13:59:48 -05:00
<PackageReference Include="SerilogAnalyzer" Version="0.15.0" PrivateAssets="All" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="All" />
<PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" Version="1.1.31" PrivateAssets="All" />
2019-05-10 14:37:42 -04:00
</ItemGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<CodeAnalysisRuleSet>../jellyfin.ruleset</CodeAnalysisRuleSet>
2019-01-14 16:02:51 -05:00
</PropertyGroup>
</Project>