You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
and I wonder how to modify "executablePath": "$(MyEnvVariableBin)/Project.exe" so that .exe is only on Windows platform and not when I run it on Linux/macOS. Is that even possible?
I'm not sure if launchSettings.json supports something like msbuild does:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi, I have this
launchSettings.json
and I wonder how to modify
"executablePath": "$(MyEnvVariableBin)/Project.exe"
so that.exe
is only on Windows platform and not when I run it on Linux/macOS. Is that even possible?I'm not sure if
launchSettings.json
supports something like msbuild does:<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net6.0-windows10.0.19041</TargetFrameworks>
Beta Was this translation helpful? Give feedback.
All reactions