From 05b28a54fa97f8c8cfaf3b90f949927b5880cbbf Mon Sep 17 00:00:00 2001 From: David Kean Date: Wed, 13 Dec 2017 08:39:51 +1100 Subject: [PATCH] Add launch profile for native debugging --- src/ProjectSystemSetup/Properties/launchSettings.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/ProjectSystemSetup/Properties/launchSettings.json b/src/ProjectSystemSetup/Properties/launchSettings.json index a203de9d235..c2f024826a1 100644 --- a/src/ProjectSystemSetup/Properties/launchSettings.json +++ b/src/ProjectSystemSetup/Properties/launchSettings.json @@ -9,6 +9,17 @@ "FSharpDesignTimeTargetsPath": "$(VisualStudioXamlRulesDir)Microsoft.FSharp.DesignTime.targets", "CSharpDesignTimeTargetsPath": "$(VisualStudioXamlRulesDir)Microsoft.CSharp.DesignTime.targets" } + }, + "ProjectSystemSetup (with native debugging)": { + "commandName": "Executable", + "executablePath": "$(DevEnvDir)devenv.exe", + "commandLineArgs": "/rootsuffix $(VSSDKTargetPlatformRegRootSuffix) /log", + "environmentVariables": { + "VisualBasicDesignTimeTargetsPath": "$(VisualStudioXamlRulesDir)Microsoft.VisualBasic.DesignTime.targets", + "FSharpDesignTimeTargetsPath": "$(VisualStudioXamlRulesDir)Microsoft.FSharp.DesignTime.targets", + "CSharpDesignTimeTargetsPath": "$(VisualStudioXamlRulesDir)Microsoft.CSharp.DesignTime.targets" + }, + "nativeDebugging": true } } } \ No newline at end of file