-
Notifications
You must be signed in to change notification settings - Fork 426
Update Roslyn to 4.14.0-3.25168.13 #2664
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
Conversation
@@ -549,7 +549,7 @@ public class Foo | |||
Assert.Null(exception); | |||
} | |||
|
|||
[Fact] | |||
[Fact(Skip = "Need Roslyn EA for the TestGeneratorReference")] |
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.
The change to include checksum in the caching (dotnet/roslyn#77141) causes the test to throw due to our TestGeneratorReference class. An interface was added for testing purposes and we can use that once Roslyn exposes it to us through our ExternalAccess library.
} | ||
} | ||
"; | ||
string input = $$""" |
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.
Reformatted this so that my formatter won't remove this necessary whitespace.
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<GenerateAssemblyInfo>true</GenerateAssemblyInfo> | ||
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage> | ||
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings> |
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.
Added to suppress warnings due to building against net6.0 with net9.0 libraries.
("Generate type 'Console' -> Generate nested class 'Console'", CodeActionKind.QuickFix), | ||
("Extract local function", CodeActionKind.RefactorExtract), | ||
("Extract method", CodeActionKind.RefactorExtract), | ||
("Use expression body for method", CodeActionKind.Refactor), |
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.
Expression body refactoring are now being offered for non-empty selections dotnet/roslyn#76969
No description provided.