mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
06a519eefe
Former-commit-id: 0c9c526e2a
38 lines
1.6 KiB
XML
38 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<NeutralLanguage>en</NeutralLanguage>
|
|
<RepositoryUrl>https://github.com/rosenbjerg/FFMpegCore</RepositoryUrl>
|
|
<PackageProjectUrl>https://github.com/rosenbjerg/FFMpegCore</PackageProjectUrl>
|
|
<Copyright></Copyright>
|
|
<Description>A .NET Standard FFMpeg/FFProbe wrapper for easily integrating media analysis and conversion into your .NET applications</Description>
|
|
<Version>3.0.0.0</Version>
|
|
<AssemblyVersion>3.0.0.0</AssemblyVersion>
|
|
<FileVersion>3.0.0.0</FileVersion>
|
|
<PackageReleaseNotes>- Cancellation token support (thanks patagonaa)
|
|
- Support for setting stdout and stderr encoding for ffprobe (thanks CepheiSigma)
|
|
- Improved ffprobe exceptions</PackageReleaseNotes>
|
|
<LangVersion>8</LangVersion>
|
|
<PackageVersion>4.4.0</PackageVersion>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<Authors>Malte Rosenbjerg, Vlad Jerca, Max Bagryantsev</Authors>
|
|
<PackageTags>ffmpeg ffprobe convert video audio mediafile resize analyze muxing</PackageTags>
|
|
<RepositoryType>GitHub</RepositoryType>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<Nullable>enable</Nullable>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="FFMPEG\bin\**\*">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Instances" Version="1.6.0" />
|
|
<PackageReference Include="System.Drawing.Common" Version="5.0.2" />
|
|
<PackageReference Include="System.Text.Json" Version="5.0.1" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|