Skip to content

Commit 0ac33a7

Browse files
committed
add Windows 8 SDK path description
1 parent 53b46ad commit 0ac33a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/msbuild/msbuild-reserved-and-well-known-properties.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ The table in this section shows the MSBuild predefined properties. The example c
9393

9494
| Property | Reserved or well-known | Description | Example |
9595
|----------------------------------|------------------------| - | - |
96-
| `FrameworkSDKRoot` | Well-known | | `C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\` |
96+
| `FrameworkSDKRoot` | Well-known | Path to the root folder for .NET Framework tools. | `C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\` |
9797
| `MSBuildAssemblyVersion` | Reserved | The version of MSBuild assemblies used to build the project. | 17.0 |
9898
| `MSBuildBinPath` | Reserved | The absolute path of the folder where the MSBuild binaries that are currently being used are located (for example, *C:\Windows\Microsoft.Net\Framework\\\<versionNumber>*). This property is useful if you have to refer to files in the MSBuild directory.<br /><br /> Do not include the final backslash on this property. | `C:\Program Files\Microsoft Visual Studio\2022\MSBuild\Current\Bin\amd64` |
9999
| `MSBuildExtensionsPath` | Well-known | Introduced in the .NET Framework 4: there is no difference between the default values of `MSBuildExtensionsPath` and `MSBuildExtensionsPath32`. You can set the environment variable `MSBUILDLEGACYEXTENSIONSPATH` to a non-null value to enable the behavior of the default value of `MSBuildExtensionsPath` in earlier versions.<br /><br /> In the .NET Framework 3.5 and earlier, the default value of `MSBuildExtensionsPath` points to the path of the MSBuild subfolder under the *\Program Files\\* or *\Program Files (x86)* folder, depending on the bitness of the current process. For example, for a 32-bit process on a 64-bit machine, this property points to the *\Program Files (x86)* folder. For a 64-bit process on a 64-bit machine, this property points to the *\Program Files* folder.<br /><br /> Do not include the final backslash on this property.<br /><br /> This location is a useful place to put custom target files. For example, your target files could be installed at *\Program Files\MSBuild\MyFiles\Northwind.targets* and then imported in project files by using this XML code:<br /><br /> `<Import Project="$(MSBuildExtensionsPath)\MyFiles\Northwind.targets"/>` | `C:\Program Files\Microsoft Visual Studio\2022\MSBuild`|
@@ -136,7 +136,7 @@ The table in this section shows the MSBuild predefined properties. The example c
136136
| `SDK35ToolsPath` | Well-known | Path to .NET Framework 3.5 tools. | |
137137
| `SDK40ToolsPath` | Well-known | Path to .NET Framework 4.0 tools. |`C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\` |
138138
| `VsInstallRoot` | Well-known | The Visual Studio installation folder. | `C:\Program Files\Microsoft Visual Studio\2022`|
139-
| `WindowsSDK80Path` | Well-known | | |
139+
| `WindowsSDK80Path` | Well-known | Path to the Windows 8 SDK. | |
140140
:::moniker-end
141141

142142
## Properties specific to C++ projects

0 commit comments

Comments
 (0)