-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathYoutubeAccountAPI.csproj
More file actions
25 lines (22 loc) · 1000 Bytes
/
YoutubeAccountAPI.csproj
File metadata and controls
25 lines (22 loc) · 1000 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net9.0-windows'">
<DefineConstants>WINDOWS</DefineConstants>
<UseWindowsForms>true</UseWindowsForms>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0-windows'">
<PackageReference Include="Microsoft.Windows.Compatibility" Version="9.0.2" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Bogus" Version="35.6.2" />
<PackageReference Include="DotNetXtensions.Cryptography" Version="3.4.0" />
<PackageReference Include="Google.Apis.YouTube.v3" Version="1.69.0.3707" />
<PackageReference Include="Google.Cloud.Kms.Inventory.V1" Version="1.4.0" />
<PackageReference Include="Lorem.Universal.Net" Version="4.0.80" />
</ItemGroup>
</Project>