-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Shutdown toolset compilers #43135
Shutdown toolset compilers #43135
Conversation
AFAICT this won't help with #20183, but won't hurt either. |
private static readonly string s_toolsetPackageName = "microsoft.net.sdk.compilers.toolset"; | ||
private static readonly string s_vbcsCompilerExeFileName = "VBCSCompiler.exe"; | ||
private static readonly string s_shutdownArg = "-shutdown"; | ||
|
||
internal static readonly string VBCSCompilerPath = Path.Combine( |
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.
Can this be a private static
too? The inconsistency between the fields is itching at me.
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.
It's used in tests currently, I can add a comment.
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.
No need for comment. Was just curious.
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.
(note that this PR targets release/9.0.1xx, but I'm unsure that's correct)
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.
Where did you want to ship this? 9.0.1xx is still open for checkins unless they are breaking changes or high risk.
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.
Ideally .NET 9 so it's shipped with the other torn sdk changes, I wasn't sure it meets the bar, but it shouldn't be high risk.
@rainersigwald for a second review, thanks |
1 similar comment
@rainersigwald for a second review, thanks |
Part of dotnet/roslyn#72672.