2019-01-20 03:41:33 -07:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-12-29 15:57:22 -07:00
|
|
|
|
|
2020-04-21 13:21:09 -07:00
|
|
|
|
<!-- ProjectGuid is only included as a requirement for SonarQube analysis -->
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<ProjectGuid>{960295EE-4AF4-4440-A525-B4C295B01A61}</ProjectGuid>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2019-01-19 07:01:16 -07:00
|
|
|
|
<PropertyGroup>
|
2020-11-10 09:52:34 -07:00
|
|
|
|
<TargetFramework>net5.0</TargetFramework>
|
2019-01-19 07:01:16 -07:00
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2019-08-11 07:52:37 -07:00
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
2020-08-04 07:20:52 -07:00
|
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
2019-01-19 07:01:16 -07:00
|
|
|
|
</PropertyGroup>
|
2018-12-29 15:57:22 -07:00
|
|
|
|
|
2019-01-19 07:01:16 -07:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="..\SharedVersion.cs" />
|
|
|
|
|
</ItemGroup>
|
2018-12-29 15:57:22 -07:00
|
|
|
|
|
2019-01-19 07:01:16 -07:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj" />
|
|
|
|
|
<ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj" />
|
|
|
|
|
<ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj" />
|
|
|
|
|
</ItemGroup>
|
2018-12-29 15:57:22 -07:00
|
|
|
|
|
2019-01-16 12:50:40 -07:00
|
|
|
|
<ItemGroup>
|
2019-10-13 02:21:20 -07:00
|
|
|
|
<PackageReference Include="BDInfo" Version="0.7.6.1" />
|
2021-03-01 05:00:38 -07:00
|
|
|
|
<PackageReference Include="libse" Version="3.6.0" />
|
2020-12-22 08:57:51 -07:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Http" Version="5.0.0" />
|
2020-11-10 09:52:34 -07:00
|
|
|
|
<PackageReference Include="System.Text.Encoding.CodePages" Version="5.0.0" />
|
2020-01-28 14:42:07 -07:00
|
|
|
|
<PackageReference Include="UTF.Unknown" Version="2.3.0" />
|
2019-01-16 12:50:40 -07:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-08-04 08:08:09 -07:00
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
|
<CodeAnalysisRuleSet>../jellyfin.ruleset</CodeAnalysisRuleSet>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<!-- Code Analyzers-->
|
|
|
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
|
2020-08-20 03:16:24 -07:00
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.8" PrivateAssets="All" />
|
2020-08-04 08:08:09 -07: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" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-12-14 02:40:55 -07:00
|
|
|
|
</Project>
|