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>{2E030C33-6923-4530-9E54-FA29FA6AD1A9}</ProjectGuid>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2019-01-19 14:01:16 +00:00
|
|
|
<PropertyGroup>
|
2020-11-10 16:52:34 +00:00
|
|
|
<TargetFramework>net5.0</TargetFramework>
|
2019-01-19 14:01:16 +00:00
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2019-08-11 14:52:37 +00:00
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
2019-12-20 20:30:51 +00:00
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
|
|
<Nullable>enable</Nullable>
|
2019-01-19 14:01:16 +00:00
|
|
|
</PropertyGroup>
|
2018-09-12 17:26:21 +00:00
|
|
|
|
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-06 20:50:43 +00:00
|
|
|
|
2019-01-19 14:01:16 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj" />
|
|
|
|
<ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj" />
|
|
|
|
<ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj" />
|
|
|
|
</ItemGroup>
|
2018-09-12 17:26:21 +00:00
|
|
|
|
2019-12-20 20:30:51 +00:00
|
|
|
<!-- Code analyzers-->
|
|
|
|
<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>
|