blob: efc29219eb13fa779476e9bd39cf69093d6db841 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net471</TargetFramework>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<ApplicationIcon />
<StartupObject />
<Platforms>x64</Platforms>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>The HandBrake Team</Authors>
<PackageProjectUrl>https://handbrake.fr</PackageProjectUrl>
<PackageLicenseExpression></PackageLicenseExpression>
<PackageIconUrl>https://handbrake.fr/img/logo.png</PackageIconUrl>
<RepositoryUrl>https://github.com/HandBrake/HandBrake.git</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<PackageLicenseFile>License.txt</PackageLicenseFile>
<Version>1.3.0</Version>
<PackageReleaseNotes>Releasese notes for HandBrake are available on GitHub.</PackageReleaseNotes>
<Description>HandBrake is a GPL-licensed, multiplatform, multithreaded video transcoder.
This package is a wrapper around hb.dll
hb.dll is not provided and must be built separately.</Description>
<Copyright>Copyright © 2003-2019 HandBrake Team</Copyright>
<PackageTags>Video Transcoder</PackageTags>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<PlatformTarget>x64</PlatformTarget>
<OutputPath>bin\Debug</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<OutputPath>bin\Release</OutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json">
<Version>12.0.2</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
<None Include="..\doc\License.txt">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>
|