-
Notifications
You must be signed in to change notification settings - Fork 10.5k
HTTP/3 with IIS #35934
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HTTP/3 with IIS #35934
Conversation
src/Servers/Kestrel/shared/test/TransportTestHelpers/Http3SupportedAttribute.cs
Outdated
Show resolved
Hide resolved
src/Servers/IIS/IIS/test/testassets/InProcessWebSite/Startup.cs
Outdated
Show resolved
Hide resolved
| <Project> | ||
| <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory)..\, Directory.Build.props))\Directory.Build.props" /> | ||
| <PropertyGroup> | ||
| <KestrelSharedSourceRoot>$(MSBuildThisFileDirectory)..\Kestrel\shared\</KestrelSharedSourceRoot> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we consider moving this to https://github.com/dotnet/aspnetcore/tree/main/src/Shared/Kestrel or something? Is there a reason it needs to be special?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's grown very organically, it used to only be shared within Kestrel projects, now it's shared across all the servers. It might be worth moving, but not in this PR. Will, file an issue?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| { | ||
| var address = Fixture.Client.BaseAddress.ToString() + "Http3_ResponseTrailers"; | ||
| using var client = SetUpClient(); | ||
| client.DefaultRequestVersion = HttpVersion.Version30; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: consider passing these in to SetupClient to further streamline the tests
|
/backport to release/6.0 |
|
Started backporting to release/6.0: https://github.com/dotnet/aspnetcore/actions/runs/1191827654 |
Fixes #29078
Also moved the
Http3Supportedattribute to kestrel shared test root, next toMSQuicSupportedattribute.