Skip to content

Commit 23ad6ba

Browse files
Merge pull request #34634 from dotnet/main
Merge to Live
2 parents f8d97ac + c235b14 commit 23ad6ba

File tree

6 files changed

+34
-6
lines changed

6 files changed

+34
-6
lines changed

.github/workflows/blazor-hybrid-issue-processing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
issue_number: context.issue.number,
1818
owner: context.repo.owner,
1919
repo: context.repo.repo,
20-
body: `### 💃🕺🥳 **_Happy New Year!_** 🎈🎆🍾🥂🎉
20+
body: `### 🌱🐇 **_Spring is coming. Hang in there! I'm pull'in for ya!_** 🐣🌻
2121
2222
A green dinosaur 🦖 will be along shortly to assist. *Stand-by ........*`
2323
})

.github/workflows/blazor-issue-processing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
issue_number: context.issue.number,
2323
owner: context.repo.owner,
2424
repo: context.repo.repo,
25-
body: `### 💃🕺🥳 **_Happy New Year!_** 🎈🎆🍾🥂🎉
25+
body: `### 🌱🐇 **_Spring is coming. Hang in there! I'm pull'in for ya!_** 🐣🌻
2626
2727
*Stand-by!* ... A green dinosaur 🦖 will be along shortly to assist.`
2828
})

aspnetcore/fundamentals/servers/kestrel/endpoints.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,14 @@ description: Learn about configuring endpoints with Kestrel, the cross-platform
55
monikerRange: '>= aspnetcore-5.0'
66
ms.author: tdykstra
77
ms.custom: mvc
8-
ms.date: 06/21/2023
8+
ms.date: 2/4/2025
99
uid: fundamentals/servers/kestrel/endpoints
1010
---
1111

1212
# Configure endpoints for the ASP.NET Core Kestrel web server
1313

1414
[!INCLUDE[](~/includes/not-latest-version.md)]
1515

16-
[!INCLUDE [](~/includes/not-latest-version.md)]
17-
1816
:::moniker range=">= aspnetcore-8.0"
1917

2018
Kestrel endpoints provide the infrastructure for listening to incoming requests and routing them to the appropriate middleware. The combination of an address and a protocol defines an endpoint.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net9.0</TargetFramework>
5+
<Nullable>enable</Nullable>
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
</PropertyGroup>
8+
9+
</Project>
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
using System.IO.Pipes;
2+
3+
var builder = WebApplication.CreateBuilder();
4+
5+
builder.WebHost.ConfigureKestrel(options =>
6+
{
7+
options.ListenNamedPipe("pipe1");
8+
options.ListenNamedPipe("pipe2");
9+
});
10+
11+
builder.WebHost.UseNamedPipes(options =>
12+
{
13+
options.CreateNamedPipeServerStream = (context) =>
14+
{
15+
var pipeSecurity = CreatePipeSecurity(context.NamedPipeEndpoint.PipeName);
16+
17+
return NamedPipeServerStreamAcl.Create(context.NamedPipeEndPoint.PipeName, PipeDirection.InOut,
18+
NamedPipeServerStream.MaxAllowedServerInstances, PipeTransmissionMode.Byte,
19+
context.PipeOptions, inBufferSize: 0, outBufferSize: 0, pipeSecurity);
20+
};
21+
});

aspnetcore/tutorials/razor-pages/new-field.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ In this section [Entity Framework Core (EF Core)](/ef/core/get-started/aspnetcor
1919
* Add a new field to the model.
2020
* Migrate the new field schema change to the database.
2121

22-
The EF Core approach allows for a more agile development process. The developer works on the app's data model directly while the database schema is created and then syncronized, all without the developer having to switch contexts to and from a datbase management tool. For an overview of Entity Framework Core and its benefits, see [Entity Framework Core](/ef/core).
22+
The EF Core approach allows for a more agile development process. The developer works on the app's data model directly while the database schema is created and then syncronized, all without the developer having to switch contexts to and from a database management tool. For an overview of Entity Framework Core and its benefits, see [Entity Framework Core](/ef/core).
2323

2424
Using EF Code to automatically create and track a database:
2525

0 commit comments

Comments
 (0)