-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimpleVideoDownloader.csproj
More file actions
54 lines (46 loc) · 1.65 KB
/
SimpleVideoDownloader.csproj
File metadata and controls
54 lines (46 loc) · 1.65 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<ApplicationIcon>bin\Debug\net8.0-windows\Icons\UNO.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Compile Remove="bin\**" />
<EmbeddedResource Remove="bin\**" />
<None Remove="bin\**" />
</ItemGroup>
<ItemGroup>
<None Remove="ffmpeg.exe" />
<None Remove="ffplay.exe" />
<None Remove="ffprobe.exe" />
<None Remove="youtube_cookies.json" />
<None Remove="yt-dlp.exe" />
</ItemGroup>
<ItemGroup>
<Content Include="bin\Debug\net8.0-windows\Icons\UNO.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Selenium.WebDriver" Version="4.26.1" />
<PackageReference Include="Selenium.WebDriver.ChromeDriver" Version="130.0.6723.9100" />
<PackageReference Include="VideoLibrary" Version="3.2.6" />
<PackageReference Include="WindowsAPICodePack" Version="8.0.6" />
<PackageReference Include="YoutubeExplode" Version="6.3.13" />
</ItemGroup>
<ItemGroup>
<Compile Update="Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>