-
Notifications
You must be signed in to change notification settings - Fork 790
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
Fix setup localization + paths #1500
Conversation
@OmarTawfik, Thanks for signing the contribution license agreement so quickly! Actual humans will now validate the agreement and then evaluate the PR. |
@@ -10,7 +10,8 @@ | |||
<Import Project="$(SetupRootFolder)\FSharp.Setup.props" /> | |||
|
|||
<PropertyGroup> | |||
<OutputName>Microsoft.FSharp.SDK</OutputName> | |||
<OutputName Condition="'$(IsLangPack)' == 'false'">Microsoft.FSharp.SDK.Core</OutputName> | |||
<OutputName Condition="'$(IsLangPack)' == 'true'">Microsoft.FSharp.SDK.Resources.$(LocaleCode)</OutputName> |
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.
Maybe do Condition="'$(IsLangPack)' == 'true'"
and Condition="'$(IsLangPack)' != 'true'"
(or is it <> true
?) to prevent the case where $(LangPack)
is set to "True
" or "False
" and neither of these conditions takes.
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.
looks good to me. |
@dotnet-bot test this please |
@Microsoft/fsharp-compiler @brettfo