What's new in ASP.NET Core 6.0 /3#23640
Conversation
| --> | ||
|
|
||
| ### Single-page app (SPA) support | ||
| <!-- TODO @LadyNaggaga to provide this section--> |
There was a problem hiding this comment.
@LadyNaggaga please provide this section.
There was a problem hiding this comment.
@Rick-Anderson what's the expectation here? just code snippets examples of the changes? @captainsafia is this something that you can help with?
There was a problem hiding this comment.
I currently have
Is that enough? I deleted ### Single-page app (SPA) support and comments following.
Co-authored-by: Luke Latham <1622880+guardrex@users.noreply.github.com>
|
|
||
| #endregion | ||
| #elif DCRT | ||
| #region snippert_dcrt |
There was a problem hiding this comment.
@Tratcher can fix this sample? I copied it from https://devblogs.microsoft.com/dotnet/asp-net-core-updates-in-net-6-preview-6/#delayed-client-certificate-negotiation
cc @serpent5
There was a problem hiding this comment.
Is something wrong with it? It seems ok.
| var builder = WebApplication.CreateBuilder(args); | ||
| builder.WebHost.ConfigureKestrel(serverOptions => | ||
| { | ||
| serverOptions.ConfigureEndpointDefaults(listenOptions => listenOptions.Use((connection, next) => | ||
| { | ||
| var socketFeature = connection.Features.Get<IConnectionSocketFeature>(); | ||
| socketFeature.Socket.LingerState = new LingerOption(true, seconds: 10); | ||
| return next(); | ||
| })); | ||
| }); | ||
| var app = builder.Build(); | ||
| app.MapGet("/", (Func<string>)(() => "Hello world")); | ||
| await app.RunAsync(); |
There was a problem hiding this comment.
@pranavkm this has multiple problems. Can you give me the correct code? Code comes from this blog entry
Pilchie
left a comment
There was a problem hiding this comment.
This is amazing. Really great to see everything all in one place!
Thanks @Rick-Anderson
|
|
||
| For more information, see [StackExchange.Redis Profiling](https://stackexchange.github.io/StackExchange.Redis/Profiling_v2.html). | ||
|
|
||
| ### Shadow copying in IIS |
There was a problem hiding this comment.
@shirhatti @jkotalik please review Shadow copy section.
Please leave feedback on IIS Shadow copying in this GitHub issue.
Can you provide a GitHub issue for feedback? The doc's repo is probably the wrong place.
guardrex
left a comment
There was a problem hiding this comment.
Approved with some nit updates. I'll return to fill in the "HOLD" (commented out) sections on a later PR.
Co-authored-by: Luke Latham <1622880+guardrex@users.noreply.github.com>
mkArtakMSFT
left a comment
There was a problem hiding this comment.
Thanks @Rick-Anderson
Co-authored-by: Artak <34246760+mkArtakMSFT@users.noreply.github.com> Co-authored-by: Pranav K <prkrishn@hotmail.com>
Fixes #22852
Internal review URL