-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Update to net7.0 #7790
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
Update to net7.0 #7790
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
6a81401
Change 6's to 7's, then see what happens
benvillalobos 40b07d3
Add nowarn for SYSLIB warnings
lbussell ea0b750
Resolve CS8981: lowercase preserved types
benvillalobos 21ab8aa
Net7.0 not net67.0
benvillalobos 5dad33d
Remove shipped api's causing errors, place them in unshipped apis
benvillalobos a8ed36c
Merge branch 'main' into net7.0-here-we-go
benvillalobos 0da734e
Do public interfaces need their functions marked as public???
benvillalobos 65a9d3f
Merge branch 'net7.0-here-we-go' of https://github.com/benvillalobos/…
benvillalobos c026de8
Ignore analyzer warnings, for now
benvillalobos e25c755
Revert "Remove shipped api's causing errors, place them in unshipped …
benvillalobos 56f78e9
Workaround CS8347 & update to C# 11
benvillalobos f52d41a
Update net compilers toolset & use langversion 11.0
benvillalobos e90588c
Merge branch 'main' into net7.0-here-we-go
benvillalobos 85ab299
Compiler toolset does not have net7.0
benvillalobos 8ca87bb
Revert "Do public interfaces need their functions marked as public???"
benvillalobos 2151902
Revert "Add nowarn for SYSLIB warnings"
benvillalobos e878f08
Revert "Revert "Add nowarn for SYSLIB warnings""
benvillalobos 36cb62c
One property to rule them all
benvillalobos 261cf97
Document new NoWarns
benvillalobos f11ee62
Add API's that were removed
benvillalobos 6db9faf
Keep stringtools on latest
benvillalobos 1f066ca
Leave context comment for scoped refs
benvillalobos 4aca04f
Merge remote-tracking branch 'upstream/main' into net7.0-here-we-go
rainersigwald 5227adc
Avoid SYSLIB0045 errors on core
rainersigwald 88bacdb
Update to .NET 7.0.100-rc.1
rainersigwald 7754733
Revert "Leave context comment for scoped refs"
rainersigwald 1426184
Revert "Keep stringtools on latest"
rainersigwald d56006d
Revert "Update net compilers toolset & use langversion 11.0"
rainersigwald 2954cb0
Revert "Workaround CS8347 & update to C# 11"
rainersigwald 7db54b9
Style: Use TKey/TValue in CollectionsHelpers
rainersigwald 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,6 +14,18 @@ | |
|
|
||
| <PropertyGroup> | ||
| <FullFrameworkTFM>net472</FullFrameworkTFM> | ||
|
|
||
| <!-- | ||
| When updating the version of .NET Core for MSBuild, this property is the 'source of truth'. | ||
| Other locations to update the version number: | ||
| global.json | ||
| eng/cibuild_bootstrapped_msbuild.ps1 | ||
| eng/cibuild_bootstrapped_msbuild.sh | ||
| scripts/Deploy-MSBuild.ps1 | ||
| src/Framework/README.md | ||
| src/Utilities/README.md | ||
| --> | ||
| <LatestDotNetCoreForMSBuild>net7.0</LatestDotNetCoreForMSBuild> | ||
| </PropertyGroup> | ||
|
|
||
| <PropertyGroup> | ||
|
|
@@ -36,9 +48,11 @@ | |
| CS1701 and CS1702 are by default ignored by Microsoft.NET.Sdk, but if you define the NoWarn property in Directory.Build.props, | ||
| you don't get those defaults. | ||
| SYSLIB0011: Removing binary formatter will happen as part of a larger .NET-wide effort. | ||
| SYSLIB0037 & SYSLIB0044: The deprecated AssemblyName members could require a bigger refactor for us: https://github.com/dotnet/msbuild/issues/7902 | ||
| RS0016 & RS0017: Roslyn analyzers seem to be bugged, claiming that API's that exist don't and vise-versa: https://github.com/dotnet/msbuild/issues/7903 | ||
| --> | ||
|
|
||
| <NoWarn>$(NoWarn);NU1603;NU5105;1701;1702;SYSLIB0011</NoWarn> | ||
| <NoWarn>$(NoWarn);NU1603;NU5105;1701;1702;SYSLIB0011;SYSLIB0037;SYSLIB0044;RS0016;RS0017;</NoWarn> | ||
|
Member
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. Putting |
||
| </PropertyGroup> | ||
|
|
||
| <PropertyGroup Condition="'$(Configuration)' == 'Debug-MONO'"> | ||
|
|
||
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
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.