-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Use --nodeReuse:false
#2814
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
Use --nodeReuse:false
#2814
Conversation
{ | ||
// we use these settings to make sure that MSBuild does the job and simply quits without spawning any long living processes | ||
// we want to avoid "file in use" and "zombie processes" issues | ||
const string NoMsBuildZombieProcesses = "/p:UseSharedCompilation=false /p:BuildInParallel=false /m:1 /p:Deterministic=true"; |
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.
Is this flag supported by older MSBuild versions?
I just wonder what is going to happen for users who are still using .NET 6 SDK etc.
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.
I'm not sure which version added it, but it's definitely supported by sdk 8, and your comment in that issue said not to worry about older unsupported sdks.
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.
According to Google it was added in .Net 5.
Fixes #2693.