Skip to content

Commit 67553f8

Browse files
committed
fix warning
1 parent cb64a9b commit 67553f8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.openpublishing.redirection.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20684,7 +20684,7 @@
2068420684
},
2068520685
{
2068620686
"source_path": "docs/debugger/specify-command-line-arguments.md",
20687-
"redirect_url": "../../visualstudio/debugger/project-settings-for-a-cpp-debug-configuration",
20687+
"redirect_url": "/visualstudio/debugger/project-settings-for-a-cpp-debug-configuration",
2068820688
"redirect_document_id": false
2068920689
}
2069020690
]

docs/debugger/project-settings-for-a-cpp-debug-configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ You can change the project settings for a C or C++ debug configuration in the **
128128
| **Debugger to launch** | Specifies the debugger to run, with the following choices:<br /><br /> - **Local Windows Debugger**<br />- **Remote Windows Debugger**<br />- **Web Browser Debugger**<br />- **Web Service Debugger** |
129129
| **Command** (Local Windows Debugger) | Specifies the command for starting the program that you're debugging on the local computer. |
130130
| **Remote Command** (Remote Windows Debugger) | The path for the .exe on the remote computer. Enter the path just as you would enter it on the remote machine. |
131-
| **Command Arguments** (Local Windows Debugger)<br /><br /> **Remote Command Arguments** (Remote Windows Debugger) | - Specifies arguments for the program you're debugging. For more information about ways to set command line args, see [Send command-line arguments to a debugee (C++)](../../visualstudio/debugger/project-settings-for-a-cpp-debug-configuration).<br /><br /> You can use the following redirection operators in this box:<br /><br /> < `file`<br /> Reads stdin from file.<br /><br /> > `file`<br /> Writes stdout to file.<br /><br /> >> `file`<br /> Appends stdout to file.<br /><br /> 2> `file`<br /> Writes stderr to file.<br /><br /> 2>> `file`<br /> Appends stderr to file.<br /><br /> 2> &1<br /> Sends stderr (2) output to same location as stdout (1).<br /><br /> 1> &2<br /> Sends stdout (1) output to same location as stderr (2).<br /><br /> In most cases, these operators are applicable only to console applications. <br /><br />If you need to escape characters in the command, you can use ASCII values, such as %25 to replace %. If you use the **Start Debugging** command, double quotes escape the preceding commands, such as "<" to replace <.|
131+
| **Command Arguments** (Local Windows Debugger)<br /><br /> **Remote Command Arguments** (Remote Windows Debugger) | - Specifies arguments for the program you're debugging. For more information about ways to set command line args, see [Send command-line arguments to a debugee (C++)](/visualstudio/debugger/project-settings-for-a-cpp-debug-configuration).<br /><br /> You can use the following redirection operators in this box:<br /><br /> < `file`<br /> Reads stdin from file.<br /><br /> > `file`<br /> Writes stdout to file.<br /><br /> >> `file`<br /> Appends stdout to file.<br /><br /> 2> `file`<br /> Writes stderr to file.<br /><br /> 2>> `file`<br /> Appends stderr to file.<br /><br /> 2> &1<br /> Sends stderr (2) output to same location as stdout (1).<br /><br /> 1> &2<br /> Sends stdout (1) output to same location as stderr (2).<br /><br /> In most cases, these operators are applicable only to console applications. <br /><br />If you need to escape characters in the command, you can use ASCII values, such as %25 to replace %. If you use the **Start Debugging** command, double quotes escape the preceding commands, such as "<" to replace <.|
132132
| **Working Directory** | Specifies the working directory of the program being debugged, relative to the project directory where your EXE is located. If you leave this blank, the working directory is the project directory. For remote debugging, the project directory is on the remote server. |
133133
| **Attach** (Local Windows Debugger and Remote Windows Debugger) | Specifies whether to start or attach to the application. Default setting is No. |
134134
| **Remote Server Name** (Remote Windows Debugger) | Specifies the name of a computer (other than yours) on which you want to debug an application.<br /><br /> The RemoteMachine Build macro is set to the value of this property; for more information, see [Macros for build commands and properties](/cpp/build/reference/common-macros-for-build-commands-and-properties). |

0 commit comments

Comments
 (0)