-
Notifications
You must be signed in to change notification settings - Fork 2
/
Sidekick.Pages.csproj
37 lines (29 loc) · 1.1 KB
/
Sidekick.Pages.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.BlazorWebAssembly">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="7.0.11" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="7.0.11" PrivateAssets="all" />
<PackageReference Include="MudBlazor" Version="6.10.0" />
<PackageReference Include="System.Net.Http.Json" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Pages\Authentication\**" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="Pages\Authentication\**" />
</ItemGroup>
<ItemGroup>
<Content Remove="Pages\Authentication\**" />
</ItemGroup>
<ItemGroup>
<None Remove="Pages\Authentication\**" />
</ItemGroup>
<ItemGroup>
<_ContentIncludedByDefault Remove="Pages\Authentication\Authenticate.razor" />
<_ContentIncludedByDefault Remove="Pages\Authentication\Poe.razor" />
</ItemGroup>
</Project>