From d87aa6ae29984736c97ba6e7a4373ca40c769063 Mon Sep 17 00:00:00 2001 From: peteowen1 Date: Wed, 27 Mar 2019 19:48:57 +1100 Subject: [PATCH 1/2] Fix Typo --- docs/rtvs/r-projects-in-visual-studio.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rtvs/r-projects-in-visual-studio.md b/docs/rtvs/r-projects-in-visual-studio.md index f1de935224e..21148201675 100644 --- a/docs/rtvs/r-projects-in-visual-studio.md +++ b/docs/rtvs/r-projects-in-visual-studio.md @@ -51,7 +51,7 @@ If you have an existing folder of *.R* files that you want to manage in a projec 1. Create a new project in Visual Studio as in the previous section. 1. Copy your files into the project folder. -1. In the Visual Studio Solution Explorer, right-click the project, select **Add** > **Exiting Item**, and browse to the files you want to add. Those files appear in your project tree after selecting **OK**. +1. In the Visual Studio Solution Explorer, right-click the project, select **Add** > **Existing Item**, and browse to the files you want to add. Those files appear in your project tree after selecting **OK**. 1. To organize code into subfolders, right-click the project, select **Add** > **New Folder** first, then copy your files into that folder and add those existing items in step 3. ## Project properties From 683e4b2a2106da69bba55bf9ec80ca6aee649228 Mon Sep 17 00:00:00 2001 From: Aaron Kunz Date: Wed, 27 Mar 2019 16:40:13 +0100 Subject: [PATCH 2/2] Use consistent names in registry property example --- docs/msbuild/msbuild-properties.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/msbuild/msbuild-properties.md b/docs/msbuild/msbuild-properties.md index d3698a1c596..da0083699c9 100644 --- a/docs/msbuild/msbuild-properties.md +++ b/docs/msbuild/msbuild-properties.md @@ -53,7 +53,7 @@ Properties are name-value pairs that can be used to configure builds. Properties For more information, see [How to: Use environment variables in a build](../msbuild/how-to-use-environment-variables-in-a-build.md). ## Registry properties - You can read system registry values by using the following syntax, where `Hive` is the registry hive (for example, **HKEY_LOCAL_MACHINE**), `Key` is the key name, `SubKey` is the subkey name, and `Value` is the value of the subkey. + You can read system registry values by using the following syntax, where `Hive` is the registry hive (for example, **HKEY_LOCAL_MACHINE**), `MyKey` is the key name, `MySubKey` is the subkey name, and `Value` is the value of the subkey. ```xml $(registry:Hive\MyKey\MySubKey@Value)