-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAzPC.Blazor.Client.csproj
More file actions
30 lines (25 loc) · 1.18 KB
/
AzPC.Blazor.Client.csproj
File metadata and controls
30 lines (25 loc) · 1.18 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
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<NullabilityInfoContextSupport>true</NullabilityInfoContextSupport>
<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile>
<StaticWebAssetProjectMode>Default</StaticWebAssetProjectMode>
</PropertyGroup>
<ItemGroup>
<SupportedPlatform Include="browser" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Blazored.LocalStorage" Version="4.5.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.Authorization" Version="8.0.25" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.24" />
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.13" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.ILLink.Tasks" Version="8.0.24" />
<ProjectReference Include="..\..\AzPC.Shared\AzPC.Shared.csproj" />
<ProjectReference Include="..\AzPC.Blazor.App\AzPC.Blazor.App.csproj" />
<ProjectReference Include="..\..\AzPC.Libs\AzPC.Libs.csproj" />
</ItemGroup>
</Project>