-
Notifications
You must be signed in to change notification settings - Fork 4k
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
Upgrade BCL assembly to 8.0.0 #71444
Merged
Cosifne
merged 17 commits into
dotnet:release/dev17.9
from
Cosifne:dev/shech/updateTo8.0.0
Jan 4, 2024
Merged
Changes from 16 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
848076b
Upgrade SystemCollectionImmutable, SystemRelectionMetadata and Micros…
Cosifne fb5a1a7
Upgrade other packages
Cosifne 20ce649
Add reference to Bcl.AsyncInterfaces
Cosifne 24b2014
Copy System.Numerics.Vectors in test, because of the update of refect…
Cosifne 3df1aa6
Try fix the compiler test
Cosifne b18ab1b
Add the missing source build version in Version.Details.xml
Cosifne c555956
Fix the analyzer issue
Cosifne 038ab52
Revert "Add the missing source build version in Version.Details.xml"
Cosifne 257fb25
Use darc to update the dependency
Cosifne 0be6aa1
Add versions by darc
Cosifne 6ddff8a
Revert "Add versions by darc"
Cosifne f4cd26e
Revert the bcl changes
Cosifne 5159608
Revert more
Cosifne 2f402a7
More revert
Cosifne 4ce2da8
Add S.R.M and S.C.I to details.xml
Cosifne b3b449a
Update source-build-reference-packages version
Cosifne c024453
Only run two tests in English env
Cosifne 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 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 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 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 |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
using Roslyn.Test.Utilities.Desktop; | ||
using Xunit; | ||
using Basic.Reference.Assemblies; | ||
using System.Numerics; | ||
|
||
namespace Microsoft.CodeAnalysis.UnitTests | ||
{ | ||
|
@@ -43,6 +44,7 @@ public void TestAnalyzerLoading_AppDomain() | |
var dir = Temp.CreateDirectory(); | ||
dir.CopyFile(typeof(AppDomainUtils).Assembly.Location); | ||
dir.CopyFile(typeof(RemoteAnalyzerFileReferenceTest).Assembly.Location); | ||
dir.CopyFile(typeof(Vector).Assembly.Location); | ||
var analyzerFile = DesktopTestHelpers.CreateCSharpAnalyzerAssemblyWithTestAnalyzer(dir, "MyAnalyzer"); | ||
var loadDomain = AppDomainUtils.Create("AnalyzerTestDomain", basePath: dir.Path); | ||
try | ||
|
@@ -85,6 +87,7 @@ public class TestAnalyzer : DiagnosticAnalyzer | |
var immutable = dir.CopyFile(typeof(ImmutableArray).Assembly.Location); | ||
var analyzer = dir.CopyFile(typeof(DiagnosticAnalyzer).Assembly.Location); | ||
dir.CopyFile(typeof(RemoteAnalyzerFileReferenceTest).Assembly.Location); | ||
dir.CopyFile(typeof(Vector).Assembly.Location); | ||
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. Same as above comment |
||
|
||
var analyzerCompilation = CSharp.CSharpCompilation.Create( | ||
"MyAnalyzer", | ||
|
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.
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.
This test would fail on line 54. Exception shows it can't find System.Numerics assembly.