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