-
Notifications
You must be signed in to change notification settings - Fork 417
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
Support .NET 7 SDKs #2377
Support .NET 7 SDKs #2377
Conversation
6b822a3
to
7b62a5d
Compare
@@ -161,7 +161,7 @@ public async Task Returns_struct_kind(string filename) | |||
|
|||
var usages = await FindSymbolsAsync(code, filename); | |||
var symbols = usages.QuickFixes.Cast<SymbolLocation>().Select(q => q.Kind); | |||
Assert.Equal("Structure", symbols.First()); | |||
Assert.Contains(symbols.First(), new[] { "Struct", "Structure" }); |
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 the TypeKind enum both Struct
and Structure
have the same value. A runtime change must have effected the order they are returned. Either is valid since they both represent the value 10
.
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.
thanks!
Adds new SdkOptions allowing users to specify a SDK path, a SDK version, and the ability to include prerelease SDKs during MSBuild locating.
In order to discover .NET 7.0 preview SDKs our hosts need to run on .NET 7.0 runtime