2019-01-13 20:10:15 +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>{08FFF49B-F175-4807-A2B5-73B0EBD9F716}</ProjectGuid>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2019-01-20 03:38:41 +00:00
|
|
|
<PropertyGroup>
|
2019-10-18 22:22:08 +00:00
|
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
2019-01-20 03:38:41 +00:00
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2019-08-11 14:52:37 +00:00
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
2020-04-05 19:19:04 +00:00
|
|
|
<Nullable>enable</Nullable>
|
2019-01-20 03:38:41 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2019-01-20 03:30:16 +00:00
|
|
|
<ItemGroup>
|
2019-01-20 03:38:41 +00:00
|
|
|
<ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj" />
|
|
|
|
<ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj" />
|
|
|
|
<ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj" />
|
2019-01-20 03:30:16 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
2019-01-19 14:01:16 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<Compile Include="..\SharedVersion.cs" />
|
|
|
|
</ItemGroup>
|
2018-09-12 17:26:21 +00:00
|
|
|
|
2020-01-21 19:26:30 +00:00
|
|
|
<!-- Code analysers-->
|
|
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.8" PrivateAssets="All" />
|
|
|
|
<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" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
<CodeAnalysisRuleSet>../jellyfin.ruleset</CodeAnalysisRuleSet>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
</Project>
|