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
@@ -15,7 +15,7 @@ ConnectionManager.exe is available in Visual Studio 2019 version 16.5 and later.
15
15
16
16
::: moniker range="vs-2019"
17
17
18
-
ConnectionManager.exe is a command-line utility to manage remote development connections outside of Visual Studio. It's useful for tasks such as provisioning a new development machine. Or, use it to set up Visual Studio for continuous integration. You can use it in a Developer Command Prompt window. For more information about the Developer Command Prompt, see [Use the Microsoft C++ toolset from the command line](../build/building-on-the-command-line.md).
18
+
ConnectionManager.exe is a command-line utility to manage remote development connections outside of Visual Studio. It's useful for tasks such as provisioning a new development machine. Or, use it to setup Visual Studio for continuous integration. You can use it in a Developer Command Prompt window. For more information about the Developer Command Prompt, see [Use the Microsoft C++ toolset from the command line](../build/building-on-the-command-line.md).
19
19
20
20
ConnectionManager.exe is available in Visual Studio 2019 version 16.5 and later. It's part of the **Linux development with C++** workload in the Visual Studio Installer. It's also installed automatically when you choose the **Connection Manager** component in the installer. It's installed in *%VCIDEInstallDir%\\Linux\\bin\\ConnectionManagerExe\\ConnectionManager.exe*.
21
21
@@ -27,73 +27,71 @@ The functionality of ConnectionManager.exe is also available in Visual Studio. T
Authenticates and adds a new connection. By default, it uses port 22 and password authentication. (You'll be prompted to enter a password.) Use both **--password** and **--privatekey** to specify a password for a private key.
32
+
Authenticates and adds a new connection. By default, it uses port 22 and password authentication. (You'll be prompted to enter a password.) Use both **-`-password`** and **`--privatekey`** to specify a password for a private key.
Defines or modifies a property on a connection. If *value* is empty then the property *key* is deleted. If authentication fails then no changes will be made.
40
+
Defines or modifies a property on a connection. If *value* is empty, then the property *key* is deleted. If authentication fails, no changes will be made.
41
41
42
-
-**remove-all**
42
+
-**`remove-all`**
43
43
44
44
Removes all stored connections.
45
45
46
-
-**clean**
46
+
-**`clean`**
47
47
48
48
Deletes header cache for connections that no longer exist.
49
49
50
-
-**list**\[--properties]
50
+
-**`list`**\[--properties]
51
51
52
52
Displays information, IDs and properties of all stored connections.
53
53
54
-
-**help**
54
+
-**`help`**
55
55
56
56
Displays a help screen.
57
57
58
-
-**version**
58
+
-**`version`**
59
59
60
60
Displays version information.
61
61
62
-
63
-
64
62
### Options
65
63
66
-
-**-q**, **--quiet**
64
+
-**`-q`**, **`--quiet`**
67
65
68
66
Prevents output to `stdout` or `stderr`.
69
67
70
-
-**--no-prompt**
68
+
-**`--no-prompt`**
71
69
72
70
Fail instead of prompt, when appropriate.
73
71
74
-
-**--no-verify**
72
+
-**`--no-verify`**
75
73
76
74
Add or modify a connection without authentication.
77
75
78
-
-**--file***filename*
76
+
-**`--file`***filename*
79
77
80
78
Read connection information from the provided *filename*.
81
79
82
-
-**--no-telemetry**
80
+
-**`--no-telemetry`**
83
81
84
82
Disable sending usage data back to Microsoft. Usage data is collected and sent back to Microsoft unless the **--no-telemetry** flag is passed.
85
83
86
-
-**-n**, **--dry-run**
84
+
-**`-n`**, **`--dry-run`**
87
85
88
86
Does a dry run of the command.
89
87
90
-
-**--p**
88
+
-**`--p`**
91
89
92
90
Same as **--password**.
93
91
94
-
-**-i**
92
+
-**`-i`**
95
93
96
-
Same as **--privatekey**.
94
+
Same as **`--privatekey`**.
97
95
98
96
## Examples
99
97
@@ -109,7 +107,7 @@ This command removes the connection that has ID 1975957870 from the list of conn
109
107
ConnectionManager.exe remove 1975957870
110
108
```
111
109
112
-
This command overrides the choice of shell for the connection with connection ID 21212121. Supported shells are **sh, csh, bash, tcsh, ksh, zsh, and dash**. If the shell found on the Linux system is not supported, then we fall back to explicitly use “sh” for all commands.
110
+
This command overrides the choice of shell for the connection with connection ID 21212121. Supported shells are **sh, csh, bash, tcsh, ksh, zsh, and dash**. If the shell found on the Linux system isn't supported, then we fall back to explicitly use “sh” for all commands.
Copy file name to clipboardExpand all lines: docs/linux/linux-asan-configuration.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: "Configure Linux projects to use Address Sanitizer"
3
3
description: "Describes how to configure C++ Linux projects in Visual Studio to use Address Sanitizer."
4
-
ms.date: "09/25/2020"
4
+
ms.date: "10/7/2020"
5
5
---
6
6
# Configure Linux projects to use Address Sanitizer
7
7
@@ -33,7 +33,7 @@ To enable ASan for MSBuild-based Linux projects, right-click on the project in *
33
33
34
34

35
35
36
-
You can pass optional ASan runtime flags by navigating to **Configuration Properties** > **Debugging** > **AddressSanitizer Runtime Flags**. Click the downarrow to add or remove flags.
36
+
You can pass optional ASan runtime flags by navigating to **Configuration Properties** > **Debugging** > **AddressSanitizer Runtime Flags**. Click the down-arrow to add or remove flags.
37
37
38
38

0 commit comments