From 45a2097a708126c72b52afd767f88836df47cdf1 Mon Sep 17 00:00:00 2001 From: mkincaid Date: Mon, 15 Jun 2020 17:55:44 -0400 Subject: [PATCH] Minor updates to dev instructions for accuracy Update to reflect new Cli-Manager name; address possibility that a different Startup Project may be set in sln --- Docs/Development.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Docs/Development.md b/Docs/Development.md index 03cf50cfa..31bfe24a6 100644 --- a/Docs/Development.md +++ b/Docs/Development.md @@ -11,11 +11,13 @@ The easiest way to get started is to: 3. Open the solution file (GitCredentialManager.sln) using Visual Studio. 4. Right-click the solution node in Solution Explorer and choose 'Restore NuGet Packages'. This will download and setup all of the dependencies. -5. Right-click the 'Cli-CredentialHelper' project in Solution Explorer and select 'Properties'. -6. In the 'Properties' window, select the 'Debug' tab from the left side. -7. In the 'Properties: Debug' window, add the word "get" to the 'Command line arguments:' text box. -8. Close the "Properties" window. -9. Hit \, or 'Debug' \>\> 'Start Debugging' from the top menu of Visual Studio. +5. Right-click the solution node in Solution Explorer and choose 'Properties'. +6. Select the 'Startup Project' tab from the left. Ensure the 'Single startup project' radio button is active, and switch the dropdown to 'Cli-Manager' if something else is selected. Hit OK. +7. Right-click the 'Cli-Manager' project in Solution Explorer and select 'Properties'. +8. In the 'Properties' window, select the 'Debug' tab from the left side. +9. In the 'Properties: Debug' window, add the word "get" to the 'Command line arguments:' text box if not already present. +10. Close the "Properties" window. +11. Hit \, or 'Debug' \>\> 'Start Debugging' from the top menu of Visual Studio. ### Debugging Code