Skip to content

Commit 81515c5

Browse files
committed
Update readme
1 parent 9a34bcf commit 81515c5

File tree

7 files changed

+9
-3
lines changed

7 files changed

+9
-3
lines changed

projects/mvc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,4 +93,4 @@
9393

9494
Use `Microsoft.AspNetCore.Mvc.NewtonsoftJson` to have MVC use `Newtonsoft.Json` instead of `System.Text.Json`.
9595

96-
dotnet6
96+
dotnet8

projects/output-cache-middleware/readme.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,5 @@
2626

2727
* [Output Cache - 8](output-cache-8)
2828
This sample demonstrates on how to setup a cache policy that set an expiration time of 10 minutes.
29+
30+
dotnet8

projects/path-string/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
This shows different results that `HttpContext.Request.Path` returns when handling different url requests.
66

7-
dotnet6
7+
dotnet8

projects/path-string/build.bat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dotnet build path-string-1

projects/problem-details-middleware/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@
1212

1313
This example shows how customize [Problem Details](https://www.rfc-editor.org/rfc/rfc7807) by manipulating `IProblemDetailsService`.
1414

15+
dotnet8

projects/problem-details-middleware/problem-details-2/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
</html>
2222
""", "text/html"));
2323

24-
app.MapGet("/problems", async (HttpContext context) =>
24+
app.MapGet("/problems", (HttpContext context) =>
2525
{
2626
throw new ApplicationException("We got problems");
2727
});

projects/request-timeouts-middleware/readme.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,5 @@
2323
* [Request Timeout](request-timeout-6)
2424

2525
Use default timeout policy in an MVC controller.
26+
27+
dotnet8

0 commit comments

Comments
 (0)