-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
[browser] Turn webcil off for .NET < 8.0 #86505
Conversation
Tagging subscribers to 'arch-wasm': @lewing Issue Detailsnull
|
@@ -170,7 +172,9 @@ Copyright (c) .NET Foundation. All rights reserved. | |||
<_WasmCopyOutputSymbolsToOutputDirectory Condition="'$(_WasmCopyOutputSymbolsToOutputDirectory)'==''">true</_WasmCopyOutputSymbolsToOutputDirectory> | |||
<_WasmEnableThreads>$(WasmEnableThreads)</_WasmEnableThreads> | |||
<_WasmEnableThreads Condition="'$(_WasmEnableThreads)' == ''">false</_WasmEnableThreads> | |||
|
|||
<_WasmEnableWebcil>$(WasmEnableWebcil)</_WasmEnableWebcil> |
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.
Do we want to explicitly log error when user sets the property and targets unsupported version?
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 think so
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.
We'll discuss this further, because there isn't any such condition although there are features are supported only in some versions
Failures are unrelated |
Webcil is supported only on .NET >= 8.0, but the SDK bits are shared also with .NET 6 and 7.