Skip to content

Commit 4e584cb

Browse files
TylerMSFTTylerMSFT
authored andcommitted
header block, remove mostly useless column that was rendering very poorly
1 parent 4422c1c commit 4e584cb

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

docs/linux/configure-a-linux-project.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "Configure a Linux MSBuild C++ project in Visual Studio"
3-
ms.date: "08/06/2020"
3+
ms.date: "10/1/52020"
44
description: "Configure a MSBuild-based Linux project in Visual Studio so you can build it."
55
ms.assetid: 4d7c6adf-54b9-4b23-bd23-5de0c825b768
66
---
@@ -34,7 +34,7 @@ To view configuration options, select the **Project > Properties** menu, or righ
3434

3535
By default, an executable (.out) is built. To build a static or dynamic library, or to use an existing Makefile, use the **Configuration Type** setting.
3636

37-
If you're building for Windows Subsystem for Linux (WSL), be aware that there are some differences between WSL version 1 and 2.
37+
If you're building for Windows Subsystem for Linux (WSL), be aware that there are some differences between WSL version 1 and 2:
3838
- Version 1 is limited to 64 parallel compilation processes. This is goverened by the **Max Parallel Compilation Jobs** setting in **Configuration properties > C/C++ > General**.
3939
- If you intend to use more than 64 parallel compilation processes on WSL version 2, we recommend that you build with Ninja--which generally will be faster and more reliable. To build with Ninja, use the **Enable Incremental Build** setting in **Configuration properties > General**.
4040

docs/linux/prop-pages/c-cpp-linux.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "C/C++ Properties (Linux C++)"
3-
description:"Describes the Linux compilation options on the Visual Studio C/C++ properties page"
43
ms.date: "10/14/2020"
4+
description: "Describes the Linux compilation options on the Visual Studio C/C++ properties page"
55
ms.assetid: 4bb8894b-c874-4a68-935e-b127d54e484f
66
f1_keywords: []
77
---

docs/linux/prop-pages/general-linux.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ Linux support is available in Visual Studio 2017 and later.
1414

1515
::: moniker range=">=vs-2017"
1616

17-
| Property | Description | Choices |
18-
|--|--|--|
17+
| Property | Description |
18+
|--|--|
1919
| Output Directory | Specifies a relative path to the output file directory. It can include environment variables. |
2020
| Intermediate Directory | Specifies a relative path to the intermediate file directory. It can include environment variables. |
2121
| Target Name | Specifies the file name that this project generates. |
@@ -31,7 +31,7 @@ Linux support is available in Visual Studio 2017 and later.
3131
| Remote Copy Include Directories | **Visual Studio 2019 version 16.5** A list of directories to copy recursively from the Linux target. This property affects the remote header copy for IntelliSense, but not the build. It can be used when **IntelliSense Uses Compiler Defaults** is set to false. Use **Additional Include Directories** under the C/C++ General tab to specify additional include directories to use for both IntelliSense and build. |
3232
| Remote Copy Exclude Directories | **Visual Studio 2019 version 16.5** A list of directories *not* to copy from the Linux target. Usually, this property is used to remove subdirectories of the include directories. |
3333
| IntelliSense Uses Compiler Defaults | **Visual Studio 2019 version 16.5** Whether to query the compiler referenced by this project for its default list of include locations. These locations are automatically added to the list of remote directories to copy. Only set this property to false if the compiler doesn't support gcc-like parameters. Both gcc and clang compilers support queries for the include directories (for example, `g++ -x c++ -E -v -std=c++11`). |
34-
| Configuration Type | Specifies the type of output this configuration generates. | **Dynamic Library (.so)**<br/><br/>**Static library (.a)**<br/><br/>**Application (.out)**<br/><br/>**Makefile** |
35-
| Use of STL | Specifies which C++ Standard Library to use for this configuration. | **Shared GNU Standard C++ Library**<br/><br/>**Static GNU Standard C++ Library (-static)** |
34+
| Configuration Type | Specifies the type of output this configuration generates, such as: **Dynamic Library (.so)**, **Static library (.a)**, **Application (.out)**, and **Makefile** |
35+
| Use of STL | Specifies which C++ Standard Library to use for this configuration, such as: **Shared GNU Standard C++ Library**, or **Static GNU Standard C++ Library (-static)** |
3636

3737
::: moniker-end

0 commit comments

Comments
 (0)