Skip to content

Commit 1fb6afd

Browse files
TylerMSFTTylerMSFT
authored andcommitted
property name change
1 parent 3936410 commit 1fb6afd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/build/cmake-remote-debugging.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ For example, on the remote machine, from the Visual Studio Remote Debugger menu
111111

112112
![Remote debugger authentication options](media/remote-debugger-options.png)
113113

114-
Then, in Visual Studio on the host machine, update the `launch.vs.json` file to match. For example, if you choose **No Authentication** on the remote debugger, update the `launch.vs.json` file in your project by adding **"windowsAuthenticationType": "Remote Windows with No authentication"** to the `configurations` section `launch.vs.json`. Otherwise, `"windowsAuthenticationType"` defaults to `"Remote Windows authentication"` and doesn't need to be explicitly stated. This example shows a `launch.vs.json` file configured for no authentication:
114+
Then, in Visual Studio on the host machine, update the `launch.vs.json` file to match. For example, if you choose **No Authentication** on the remote debugger, update the `launch.vs.json` file in your project by adding **"authenticationType": "none"** to the `configurations` section `launch.vs.json`. Otherwise, `"authenticationType"` defaults to `"windows"` and doesn't need to be explicitly stated. This example shows a `launch.vs.json` file configured for no authentication:
115115

116116
``` XAML
117117
{
@@ -120,7 +120,7 @@ Then, in Visual Studio on the host machine, update the `launch.vs.json` file to
120120
"configurations": [
121121
{
122122
"type": "remoteWindows",
123-
"windowsAuthenticationType": "Remote Windows with No authentication"
123+
"authenticationType": "none"
124124
"name": "CMakeLists.txt",
125125
"project": "CMakeLists.txt",
126126
"projectTarget": "CMakeProject3.exe",
@@ -158,7 +158,7 @@ If it doesn't start, ensure that the following are set correctly in the `launch.
158158
- `"name"` should match the selection in the Visual Studio startup item dropdown.
159159
- `"projectTarget"` should match the name of the CMake target you want to debug.
160160
- `"type"` should be `"remoteWindows"`
161-
- If the authentication type on the remote debugger is set to **No Authentication**, you should have `"windowsAuthenticationType": "Remote Windows with No authentication"` set in the `launch.vs.json` file.
161+
- If the authentication type on the remote debugger is set to **No Authentication**, you should have `"authenticationType": "none"` set in the `launch.vs.json` file.
162162
- If you are using Windows authentication, sign in when prompted using an account recognized by the remote machine.
163163

164164
After the project builds, the app should appear on the remote ARM64 Windows machine:

0 commit comments

Comments
 (0)