jellyfin/MediaBrowser.Common/MediaBrowser.Common.csproj

42 lines
1.3 KiB
XML
Raw Normal View History

2019-03-07 19:04:09 +01:00
<Project Sdk="Microsoft.NET.Sdk">
2018-12-28 00:27:57 +01:00
2019-01-19 15:01:16 +01:00
<PropertyGroup>
<Authors>Jellyfin Contributors</Authors>
<PackageId>Jellyfin.Common</PackageId>
<PackageLicenseUrl>https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt</PackageLicenseUrl>
<RepositoryUrl>https://github.com/jellyfin/jellyfin</RepositoryUrl>
</PropertyGroup>
2019-01-19 15:01:16 +01:00
<ItemGroup>
<ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj" />
</ItemGroup>
2018-12-28 00:27:57 +01:00
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="3.0.0" />
2019-03-07 19:04:09 +01:00
<PackageReference Include="Microsoft.Net.Http.Headers" Version="2.2.0" />
</ItemGroup>
2019-01-19 15:01:16 +01:00
<ItemGroup>
<Compile Include="..\SharedVersion.cs" />
</ItemGroup>
2018-12-28 00:27:57 +01:00
2019-01-19 15:01:16 +01:00
<PropertyGroup>
2019-10-19 00:22:08 +02:00
<TargetFramework>netstandard2.1</TargetFramework>
2019-01-19 15:01:16 +01:00
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
2019-01-19 15:01:16 +01:00
</PropertyGroup>
2018-12-28 00:27:57 +01:00
2019-08-16 17:37:40 +02:00
<PropertyGroup>
<!-- We need at least C# 7.1 for the "default literal" feature-->
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>Jellyfin.Common.Tests</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
2018-12-28 00:27:57 +01:00
</Project>