jellyfin/MediaBrowser.Model/MediaBrowser.Model.csproj

52 lines
2.1 KiB
XML
Raw Normal View History

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