-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBitathon.csproj
More file actions
34 lines (29 loc) · 1.19 KB
/
Bitathon.csproj
File metadata and controls
34 lines (29 loc) · 1.19 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
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<ApplicationIcon>bit.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebView.WindowsForms" Version="6.0.400" />
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="2.2.0" />
<PackageReference Include="MudBlazor" Version="6.0.11" />
<PackageReference Include="TwitchLib.Api" Version="3.5.2" />
<PackageReference Include="TwitchLib.Client" Version="3.2.4" />
<PackageReference Include="TwitchLib.PubSub" Version="3.2.3" />
</ItemGroup>
<ItemGroup>
<Content Include="bit.ico">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Update="wwwroot\auth.html">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Folder Include="Properties" />
</ItemGroup>
</Project>