-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Update projects to .NET 9 #13023
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
Update projects to .NET 9 #13023
Conversation
@@ -1,15 +1,15 @@ | |||
{ | |||
"name": "Development Jellyfin Server - FFmpeg", | |||
"image":"mcr.microsoft.com/devcontainers/dotnet:8.0-jammy", | |||
"image":"mcr.microsoft.com/devcontainers/dotnet:9.0-jammy", |
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.
Maybe should now switch to noble ?
@@ -1,15 +1,15 @@ | |||
{ | |||
"name": "Development Jellyfin Server", | |||
"image":"mcr.microsoft.com/devcontainers/dotnet:8.0-jammy", | |||
"image":"mcr.microsoft.com/devcontainers/dotnet:9.0-jammy", |
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.
Same as above
|
||
// Increase the max http request limit | ||
// The default connection limit is 10 for ASP.NET hosted applications and 2 for all others. | ||
ServicePointManager.DefaultConnectionLimit = Math.Max(96, ServicePointManager.DefaultConnectionLimit); | ||
|
||
// Disable the "Expect: 100-Continue" header by default | ||
// http://stackoverflow.com/questions/566437/http-post-returns-the-error-417-expectation-failed-c | ||
ServicePointManager.Expect100Continue = false; |
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.
Are these just no longer needed?
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.
In modern .NET, HttpClient does not take into account any configurations set on ServicePointManager.
Not sure how long this has been the case
This pull request has merge conflicts. Please resolve the conflicts so the PR can be successfully reviewed and merged. |
Latest build still uses dotnet 8.0. Is this by design or just an accident that the commit is not merged into release? |
10.10.x is net8.0, 10.11.x will be net9.0. |
No description provided.