From 74a437134d51202e6fd1380b3071336e7cbf9881 Mon Sep 17 00:00:00 2001 From: Forgind Date: Thu, 10 Nov 2022 14:11:54 -0800 Subject: [PATCH 1/3] Update xml doc comments --- src/MSBuildLocator/MSBuildLocator.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/MSBuildLocator/MSBuildLocator.cs b/src/MSBuildLocator/MSBuildLocator.cs index 16e1d459..7a386030 100644 --- a/src/MSBuildLocator/MSBuildLocator.cs +++ b/src/MSBuildLocator/MSBuildLocator.cs @@ -15,6 +15,9 @@ namespace Microsoft.Build.Locator { + /// + /// MSBuildLocator allows the use of publicly visible MSBuild APIs in custom applications. See our documentation at aka.ms/msbuild/locator. + /// public static class MSBuildLocator { private const string MSBuildPublicKeyToken = "b03f5f7f11d50a3a"; @@ -305,7 +308,7 @@ public static void Unregister() /// /// Ensures the proper MSBuild environment variables are populated for DotNet SDK. /// - /// + /// /// Path to the directory containing the DotNet SDK. /// private static void ApplyDotNetSdkEnvironmentVariables(string dotNetSdkPath) From 6d062b927286299c9446a55cf94a7781e76e914d Mon Sep 17 00:00:00 2001 From: Forgind <12969783+Forgind@users.noreply.github.com> Date: Thu, 10 Nov 2022 15:37:01 -0800 Subject: [PATCH 2/3] Update src/MSBuildLocator/MSBuildLocator.cs Co-authored-by: Rainer Sigwald --- src/MSBuildLocator/MSBuildLocator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MSBuildLocator/MSBuildLocator.cs b/src/MSBuildLocator/MSBuildLocator.cs index 7a386030..ed53b8bc 100644 --- a/src/MSBuildLocator/MSBuildLocator.cs +++ b/src/MSBuildLocator/MSBuildLocator.cs @@ -309,7 +309,7 @@ public static void Unregister() /// Ensures the proper MSBuild environment variables are populated for DotNet SDK. /// /// - /// Path to the directory containing the DotNet SDK. + /// Path to the directory containing the .NET SDK. /// private static void ApplyDotNetSdkEnvironmentVariables(string dotNetSdkPath) { From f0f5ebad2449a182228fd2dfff0cf8e7638c0ec8 Mon Sep 17 00:00:00 2001 From: Forgind <12969783+Forgind@users.noreply.github.com> Date: Thu, 10 Nov 2022 16:23:42 -0800 Subject: [PATCH 3/3] Update src/MSBuildLocator/MSBuildLocator.cs Co-authored-by: Gordon Hogenson --- src/MSBuildLocator/MSBuildLocator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MSBuildLocator/MSBuildLocator.cs b/src/MSBuildLocator/MSBuildLocator.cs index ed53b8bc..40b27e81 100644 --- a/src/MSBuildLocator/MSBuildLocator.cs +++ b/src/MSBuildLocator/MSBuildLocator.cs @@ -16,7 +16,7 @@ namespace Microsoft.Build.Locator { /// - /// MSBuildLocator allows the use of publicly visible MSBuild APIs in custom applications. See our documentation at aka.ms/msbuild/locator. + /// Allows enumerating installed MSBuild instances and preparing MSBuild APIs for use. See Find and use a version of MSBuild. /// public static class MSBuildLocator {