-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYouTube Video Uploader.csproj
37 lines (31 loc) · 1.15 KB
/
YouTube Video Uploader.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<RootNamespace>YouTube_Video_Uploader</RootNamespace>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
</PropertyGroup>
<ItemGroup>
<None Remove="Fonts\youtube-sans-medium.ttf" />
<None Remove="YouTubeAPI\secret.json" />
</ItemGroup>
<ItemGroup>
<Content Include="YouTubeAPI\secret.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Google.Apis" Version="1.56.0" />
<PackageReference Include="Google.Apis.Auth" Version="1.56.0" />
<PackageReference Include="Google.Apis.YouTube.v3" Version="1.56.0.2617" />
<PackageReference Include="MaterialDesignColors" Version="2.0.5-ci94" />
<PackageReference Include="MaterialDesignThemes" Version="4.4.0-ci94" />
</ItemGroup>
<ItemGroup>
<Resource Include="Fonts\youtube-sans-medium.ttf">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
</Project>