jellyfin/MediaBrowser.Model/MediaBrowser.Model.csproj

28 lines
983 B
XML
Raw Normal View History

<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.Model</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
<PropertyGroup>
2020-01-09 11:07:13 -05:00
<TargetFramework>netstandard2.1</TargetFramework>
2019-01-19 09:01:16 -05:00
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
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-01-28 16:42:07 -05:00
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.1" />
2019-11-03 09:52:10 -05:00
<PackageReference Include="System.Globalization" Version="4.3.0" />
2020-01-28 16:42:07 -05:00
<PackageReference Include="System.Text.Json" Version="4.7.0" />
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
</Project>