Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.0"/>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.0" PrivateAssets="all"/>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.10"/>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="10.0.10" PrivateAssets="all"/>
</ItemGroup>

</Project>
9 changes: 9 additions & 0 deletions blazor-features/BlazorSections/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Blazor Sections

Sample project for the "Blazor Sections: SectionOutlet and SectionContent" article.

Standard Blazor WebAssembly Standalone App template (`net10.0`). The app has no server-rendering
component, so it runs entirely in the browser under `InteractiveWebAssembly`-equivalent
client-side rendering — there is only one render mode in play, which is why `SectionOutlet` and
`SectionContent` resolve without the layout/page render-mode mismatch the article's "Interactive
Render Modes" section describes for Blazor Web Apps.
Loading