-
Notifications
You must be signed in to change notification settings - Fork 6k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Document BuildWithNetFrameworkHostedCompiler and friends #45620
base: main
Are you sure you want to change the base?
Conversation
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 @jjonescz
When using .NET Framework MSBuild, `BuildWithNetFrameworkHostedCompiler=true` ensures that | ||
a C#/VB compiler corresponding to the current SDK version is used | ||
instead of the default version that ships with MSBuild. | ||
This uses the .NET Framework version of the compiler unlike `RoslynUseSdkCompiler`. |
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 uses the .NET Framework version of the compiler unlike `RoslynUseSdkCompiler`. | |
When this property is set to `true`, the .NET Framework version of the compiler is used, unlike `RoslynUseSdkCompiler`. |
a C#/VB compiler corresponding to the current SDK version is used | ||
instead of the default version that ships with MSBuild. | ||
This uses the .NET Framework version of the compiler unlike `RoslynUseSdkCompiler`. | ||
In some cases, this happens automatically when it is detected that MSBuild and SDK versions are different, |
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 some cases, this happens automatically when it is detected that MSBuild and SDK versions are different, | |
In some cases, this behavior happens automatically when it is detected that MSBuild and SDK versions are different, |
instead of the default version that ships with MSBuild. | ||
This uses the .NET Framework version of the compiler unlike `RoslynUseSdkCompiler`. | ||
In some cases, this happens automatically when it is detected that MSBuild and SDK versions are different, | ||
and then `BuildWithNetFrameworkHostedCompiler=false` can be used to opt out of this behavior. |
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.
and then `BuildWithNetFrameworkHostedCompiler=false` can be used to opt out of this behavior. | |
and then you can set `BuildWithNetFrameworkHostedCompiler=false` to opt out of the behavior. |
When using .NET Framework MSBuild, `RoslynUseSdkCompiler=true` ensures that | ||
a C#/VB compiler corresponding to the current SDK version is used | ||
instead of the default version that ships with MSBuild. | ||
This uses the .NET Core version of the compiler unlike `BuildWithNetFrameworkHostedCompiler`. |
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 uses the .NET Core version of the compiler unlike `BuildWithNetFrameworkHostedCompiler`. | |
When this property is set to `true`, the .NET Core version of the compiler is used, unlike `BuildWithNetFrameworkHostedCompiler`. |
Documents the pre-existing property BuildWithNetFrameworkHostedCompiler and two related properties that are being added in dotnet/sdk#48028.
Internal previews