16 lines
450 B
XML
16 lines
450 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<OutputType>Exe</OutputType>
|
||
|
<TargetFramework>net5.0</TargetFramework>
|
||
|
<RootNamespace>youtube_downloader</RootNamespace>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="CommandLineParser" Version="2.8.0" />
|
||
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
||
|
<PackageReference Include="YoutubeExplode" Version="6.0.3" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|