-
Notifications
You must be signed in to change notification settings - Fork 356
Support .NET 10 #2822
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
Merged
Merged
Support .NET 10 #2822
Changes from 39 commits
Commits
Show all changes
43 commits
Select commit
Hold shift + click to select a range
2b526e6
Support .NET 10
martincostello 9f9a09b
Fix test
martincostello b3440fb
Update to .NET 10 preview 5
martincostello b50870a
Update to .NET 10 preview 6
martincostello 3a2a34b
Fix NU1510 warning
martincostello 5237af0
Fix NU1510 warning
martincostello 4086449
Fix NU1510 warning
martincostello 4316245
Fix HTTP instrumentation tests for .NET 10
martincostello c5fa2db
Fix formatting
martincostello f692321
Fix Dockerfile
martincostello da95433
Update to .NET 10 preview 7
martincostello 7092580
[AspNetCore] Update Blazor test
martincostello 491559a
[Infra] Update to .NET 10 RC1
martincostello cddc78f
[Infra] Fix .NET install
martincostello 0347a41
[Infra] Fix broken test
martincostello 20cd570
[Instrumentation.Http] Skip code under .NET 10
martincostello 03f0068
Merge branch 'main' into dotnet-10
martincostello de4a89c
[Infra] Add net10.0 versions
martincostello 2fa9585
[OneCollector] Avoid System.Text.Json reference
martincostello 5298125
Merge branch 'main' into dotnet-10
martincostello b56eb86
[Infra] Fix comment
martincostello f05c0ad
Merge branch 'main' into dotnet-10
martincostello ecf47f9
[Infra] Update to .NET 10 RC2
martincostello 25c3e5b
Merge branch 'main' into dotnet-10
martincostello 862e6cf
Add workaround for RC2 issue
martincostello 4a444b8
Suppress NuGet Audit warning
martincostello d497df0
Merge branch 'main' into dotnet-10
martincostello 49dc1bb
Merge branch 'main' into dotnet-10
martincostello da90f21
[Infra] Remove redundant workaround
martincostello 589091d
[Infra] Update CHANGELOGs
martincostello f26147c
Merge branch 'main' into dotnet-10
martincostello 0bb3552
[Infra] Update CHANGELOGs
martincostello 682ec14
Merge branch 'main' into dotnet-10
martincostello 2bee7d7
[Infra] Fix-up CHANGELOG
martincostello f6338cb
Merge branch 'main' into dotnet-10
martincostello 682a536
[Infra] Fix CHANGELOGs
martincostello cd80289
Merge branch 'main' into dotnet-10
martincostello 743a289
Merge branch 'main' into dotnet-10
martincostello 4a2ab57
Merge branch 'main' into dotnet-10
martincostello d881e68
[AspNetCore] Fix routing tests for .NET 10
martincostello bb1da86
Add net10.0 to matrix
martincostello 5bee203
Merge branch 'main' into dotnet-10
martincostello 3bdb09d
[Infra] Depend on 1.14.0-rc.1
martincostello File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,4 +3,8 @@ | |
| <ArtifactsPath>$([System.IO.Path]::Combine('$(MSBuildThisFileDirectory)', 'artifacts'))</ArtifactsPath> | ||
| <UseArtifactsOutput>true</UseArtifactsOutput> | ||
| </PropertyGroup> | ||
| <!-- HACK Workaround for https://github.com/dotnet/sdk/issues/51265 --> | ||
| <PropertyGroup> | ||
| <RestoreEnablePackagePruning>false</RestoreEnablePackagePruning> | ||
| </PropertyGroup> | ||
martincostello marked this conversation as resolved.
Show resolved
Hide resolved
Comment on lines
+6
to
+9
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Opened #3340 to track removing this for GA. |
||
| </Project> | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| version: '3.7' | ||
|
|
||
| services: | ||
| tests: | ||
| build: | ||
| args: | ||
| PUBLISH_FRAMEWORK: net10.0 | ||
| TEST_SDK_VERSION: "10.0" | ||
| BUILD_SDK_VERSION: "10.0" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| { | ||
| "sdk": { | ||
| "rollForward": "latestFeature", | ||
| "rollForward": "latestMajor", | ||
| "allowPrerelease": false, | ||
martincostello marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| "version": "9.0.306" | ||
| "version": "10.0.100-rc.2.25502.107" | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.