blob: 9663551f1b03652b787ba577d94067d6b6fb8035 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<FileVersion>1.4.0.0</FileVersion>
<Version>1.4.0</Version>
<Authors>HandBrake Team</Authors>
<Description>HandBrake is an open-source, GPL-licensed, multiplatform,video transcoder.</Description>
<Copyright>Copyright © 2003-2020 HandBrake Team</Copyright>
<PackageProjectUrl>https://handbrake.fr</PackageProjectUrl>
<RepositoryUrl>https://github.com/HandBrake/HandBrake</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>Video Transcoder</PackageTags>
<Platforms>AnyCPU</Platforms>
<PlatformTarget>AnyCPU</PlatformTarget>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
</ItemGroup>
</Project>
|