Skip to content

Repo sync for protected CLA branch #8051

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
May 21, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/ide/managing-external-tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ The following is a full list of arguments that can be used when defining an exte
|----------|--------------|-----------------|
|Item Path|$(ItemPath)|The complete file name of the current file (drive + path + file name).|
|Item Directory|$(ItemDir)|The directory of the current file (drive + path).|
|Item File Name|$(ItemFilename)|The file name of the current file (file name).|
|Item File Name|$(ItemFilename)|The file name of the current file.|
|Item Extension|$(ItemExt)|The file name extension of the current file.|
|Current Line|$(CurLine)|The current line position of the cursor in the code window.|
|Current Column|$(CurCol)|The current column position of the cursor in the code window.|
Expand All @@ -75,9 +75,9 @@ The following is a full list of arguments that can be used when defining an exte
|Target Extension|$(TargetExt)|The file name extension of the item to be built.|
|Binary Directory|$(BinDir)|The final location of the binary that is being built (defined as drive + path).|
|Project Directory|$(ProjectDir)|The directory of the current project (drive + path).|
|Project File Name|$(ProjectFileName)|The file name of the current project (drive + path + file name).|
|Project File Name|$(ProjectFileName)|The file name of the current project.|
|Solution Directory|$(SolutionDir)|The directory of the current solution (drive + path).|
|Solution File Name|$(SolutionFileName)|The file name of the current solution (drive + path + file name).|
|Solution File Name|$(SolutionFileName)|The file name of the current solution.|

> [!NOTE]
> The IDE status bar displays the **Current Line** and **Current Column** variables to indicate where the insertion point is located in the active **Code Editor**. The **Current Text** variable returns the text or code selected at that location.
Expand Down