-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlazouter.Web.Client.Sample.csproj
More file actions
25 lines (20 loc) · 869 Bytes
/
Copy pathBlazouter.Web.Client.Sample.csproj
File metadata and controls
25 lines (20 loc) · 869 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.BlazorWebAssembly">
<PropertyGroup>
<Nullable>enable</Nullable>
<LangVersion>preview</LangVersion>
<AnalysisLevel>preview</AnalysisLevel>
<ImplicitUsings>enable</ImplicitUsings>
<TargetFramework>net10.0</TargetFramework>
<OverrideHtmlAssetPlaceholders>true</OverrideHtmlAssetPlaceholders>
<BlazorDisableThrowNavigationException>true</BlazorDisableThrowNavigationException>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.11" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\src\Blazouter.WebAssembly\Blazouter.WebAssembly.csproj" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="Blazouter.Web.Sample" />
</ItemGroup>
</Project>