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
feat(sdk): auto-generate launchSettings.json for F5 debugging
When building inside Visual Studio for the first time, the SDK now
generates Properties/launchSettings.json with a profile that launches
devenv.exe with /rootSuffix Exp. This enables F5 debugging out of the
box without any manual configuration.
Only runs when building inside Visual Studio and the file doesn't exist
211
+
This configures VS to launch devenv.exe with the experimental instance
212
+
-->
213
+
<TargetName="GenerateLaunchSettings"
214
+
BeforeTargets="BeforeBuild"
215
+
Condition="'$(BuildingInsideVisualStudio)' == 'true' and '$(DevEnvDir)' != '' and !Exists('$(MSBuildProjectDirectory)\Properties\launchSettings.json')">
0 commit comments