jellyfin-server/MediaBrowser.Model/MediaBrowser.Model.csproj

52 lines
2.1 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
2018-12-27 23:27:57 +00:00
<!-- ProjectGuid is only included as a requirement for SonarQube analysis -->
<PropertyGroup>
<ProjectGuid>{7EEEB4BB-F3E8-48FC-B4C5-70F0FFF8329B}</ProjectGuid>
</PropertyGroup>
2019-01-19 14:01:16 +00:00
<PropertyGroup>
<Authors>Jellyfin Contributors</Authors>
<PackageId>Jellyfin.Model</PackageId>
2020-08-13 13:22:12 +00:00
<PackageVersion>10.7.0</PackageVersion>
2019-01-19 14:01:16 +00:00
<PackageLicenseUrl>https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt</PackageLicenseUrl>
<RepositoryUrl>https://github.com/jellyfin/jellyfin</RepositoryUrl>
</PropertyGroup>
2019-01-19 14:01:16 +00:00
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
2019-01-19 14:01:16 +00:00
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
2020-03-22 01:03:07 +00:00
<TreatWarningsAsErrors Condition=" '$(Configuration)' == 'Release' ">true</TreatWarningsAsErrors>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
2019-01-19 14:01:16 +00:00
</PropertyGroup>
2018-12-27 23:27:57 +00:00
2019-01-19 14:01:16 +00:00
<ItemGroup>
2019-03-07 18:04:09 +00:00
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
2020-07-17 23:48:11 +00:00
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.6" />
2019-11-03 14:52:10 +00:00
<PackageReference Include="System.Globalization" Version="4.3.0" />
2020-05-17 17:33:38 +00:00
<PackageReference Include="System.Text.Json" Version="4.7.2" />
2019-01-19 14:01:16 +00:00
</ItemGroup>
2019-01-19 14:01:16 +00:00
<ItemGroup>
<Compile Include="..\SharedVersion.cs" />
</ItemGroup>
2018-12-27 23:27:57 +00:00
2020-02-04 00:49:27 +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>
2020-05-02 22:32:22 +00:00
<ItemGroup>
<ProjectReference Include="..\Jellyfin.Data\Jellyfin.Data.csproj" />
</ItemGroup>
2020-02-04 00:49:27 +00:00
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<CodeAnalysisRuleSet>../jellyfin.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
2018-12-27 23:27:57 +00:00
</Project>