jellyfin/MediaBrowser.Common/MediaBrowser.Common.csproj

42 lines
1.3 KiB
XML
Raw Normal View History

2019-03-07 13:04:09 -05:00
<Project Sdk="Microsoft.NET.Sdk">
2018-12-27 18:27:57 -05:00
2019-01-19 09:01:16 -05: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 09:01:16 -05:00
<ItemGroup>
<ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj" />
</ItemGroup>
2018-12-27 18:27:57 -05:00
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="3.0.0" />
2019-03-07 13:04:09 -05:00
<PackageReference Include="Microsoft.Net.Http.Headers" Version="2.2.0" />
</ItemGroup>
2019-01-19 09:01:16 -05:00
<ItemGroup>
<Compile Include="..\SharedVersion.cs" />
</ItemGroup>
2018-12-27 18:27:57 -05:00
2019-01-19 09:01:16 -05:00
<PropertyGroup>
2019-10-18 18:22:08 -04:00
<TargetFramework>netstandard2.1</TargetFramework>
2019-01-19 09:01:16 -05:00
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
2019-01-19 09:01:16 -05:00
</PropertyGroup>
2018-12-27 18:27:57 -05:00
2019-08-16 11:37:40 -04: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-27 18:27:57 -05:00
</Project>