-
-
Notifications
You must be signed in to change notification settings - Fork 570
Expand file tree
/
Copy pathYoutubeExplode.Converter.csproj
More file actions
35 lines (31 loc) · 1.27 KB
/
YoutubeExplode.Converter.csproj
File metadata and controls
35 lines (31 loc) · 1.27 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net6.0;net7.0;net10.0</TargetFrameworks>
<IsPackable>true</IsPackable>
<IsTrimmable
Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net6.0'))"
>true</IsTrimmable
>
<IsAotCompatible
Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net7.0'))"
>true</IsAotCompatible
>
</PropertyGroup>
<PropertyGroup>
<Description>Extension for YoutubeExplode that provides an interface to download and convert videos using FFmpeg</Description>
<PackageProjectUrl>https://github.com/Tyrrrz/YoutubeExplode/tree/prime/YoutubeExplode.Converter</PackageProjectUrl>
<PackageIcon>favicon.png</PackageIcon>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Include="../favicon.png" Pack="true" PackagePath="" Visible="false" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CliWrap" />
<PackageReference Include="CSharpier.MsBuild" PrivateAssets="all" />
<PackageReference Include="PolyShim" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\YoutubeExplode\YoutubeExplode.csproj" />
</ItemGroup>
</Project>