2018-12-10 23:39:20 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
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.Common\MediaBrowser.Common.csproj" />
|
|
|
|
</ItemGroup>
|
2019-01-13 19:45:51 +00:00
|
|
|
|
2019-01-19 14:01:16 +00:00
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2019-08-11 14:52:37 +00:00
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
2019-08-16 19:03:45 +00:00
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<!-- Code analysers-->
|
|
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.4" />
|
|
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" />
|
|
|
|
<PackageReference Include="SerilogAnalyzer" Version="0.15.0" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
<CodeAnalysisRuleSet>../../jellyfin.ruleset</CodeAnalysisRuleSet>
|
2019-01-19 14:01:16 +00:00
|
|
|
</PropertyGroup>
|
2018-12-10 23:39:20 +00:00
|
|
|
|
|
|
|
</Project>
|