Skip to content

Commit ec40d3b

Browse files
committedMar 4, 2024
Mark as upgraded to .NET 8
1 parent 041adbb commit ec40d3b

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed
 

‎projects/blazor-ssr/readme.md

+2
Original file line numberDiff line numberDiff line change
@@ -93,3 +93,5 @@
9393
* [RazorMixMatchFour](RazorMixMatchFour)
9494

9595
This example shows how to use Blazor SSR with MVC, Razor Pages and Minimal API in the same system.
96+
97+
dotnet8

‎projects/blazor-wasm/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -139,3 +139,5 @@ You will find samples for Blazor, a .NET application framework for Web Assembly
139139
* [QuickGrid One](QuickGridOne)
140140

141141
This sample demonstrates a simple usage of QuickGrid component displaying int, string, date, and boolean data types.
142+
143+
dotnet8

‎projects/caching/caching-3/Program.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
greeting = message;
3838
}
3939

40-
context.Response.Headers.Add("Content-Type", "text/html");
40+
context.Response.Headers.Append("Content-Type", "text/html");
4141
await context.Response.WriteAsync(@"
4242
<html>
4343
<body>

0 commit comments

Comments
 (0)
Please sign in to comment.