diff --git a/sdk.slnx b/sdk.slnx index 2d1f89b3c7c4..36439162471e 100644 --- a/sdk.slnx +++ b/sdk.slnx @@ -407,7 +407,7 @@ - + diff --git a/src/Tasks/Microsoft.NET.slnf b/src/Tasks/Microsoft.NET.slnf index 3e559fbd08f6..edaddfdb6ed5 100644 --- a/src/Tasks/Microsoft.NET.slnf +++ b/src/Tasks/Microsoft.NET.slnf @@ -49,7 +49,7 @@ "test\\Microsoft.NET.Sdk.WorkloadManifestReader.Tests\\Microsoft.NET.Sdk.WorkloadManifestReader.Tests.csproj", "test\\Microsoft.NET.TestFramework\\Microsoft.NET.TestFramework.csproj", "test\\Microsoft.NET.ToolPack.Tests\\Microsoft.NET.ToolPack.Tests.csproj", - "test\\Microsoft.Win32.Msi.Manual.Tests\\Microsoft.Win32.Msi.Manual.Tests.csproj", + "test\\Microsoft.Win32.Msi.ManualTester\\Microsoft.Win32.Msi.ManualTester.csproj", "test\\Microsoft.Win32.Msi.Tests\\Microsoft.Win32.Msi.Tests.csproj", "test\\Msbuild.Tests.Utilities\\Msbuild.Tests.Utilities.csproj", "test\\TelemetryStdOutLogger\\TelemetryStdOutLogger.csproj", diff --git a/test/Microsoft.Win32.Msi.Manual.Tests/Microsoft.Win32.Msi.Manual.Tests.csproj b/test/Microsoft.Win32.Msi.ManualTester/Microsoft.Win32.Msi.ManualTester.csproj similarity index 100% rename from test/Microsoft.Win32.Msi.Manual.Tests/Microsoft.Win32.Msi.Manual.Tests.csproj rename to test/Microsoft.Win32.Msi.ManualTester/Microsoft.Win32.Msi.ManualTester.csproj diff --git a/test/Microsoft.Win32.Msi.Manual.Tests/Program.cs b/test/Microsoft.Win32.Msi.ManualTester/Program.cs similarity index 99% rename from test/Microsoft.Win32.Msi.Manual.Tests/Program.cs rename to test/Microsoft.Win32.Msi.ManualTester/Program.cs index eaf303a54ae8..1d34fec1ed25 100644 --- a/test/Microsoft.Win32.Msi.Manual.Tests/Program.cs +++ b/test/Microsoft.Win32.Msi.ManualTester/Program.cs @@ -1,7 +1,7 @@ // Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. -namespace Microsoft.Win32.Msi.Manual.Tests +namespace Microsoft.Win32.Msi.ManualTester { /// /// Simple test application to illustrate basic MSI API calls and wiring up an external UI handler to diff --git a/test/Microsoft.Win32.Msi.Manual.Tests/readme.md b/test/Microsoft.Win32.Msi.ManualTester/readme.md similarity index 89% rename from test/Microsoft.Win32.Msi.Manual.Tests/readme.md rename to test/Microsoft.Win32.Msi.ManualTester/readme.md index 4c27db500ae6..3a651fab80e8 100644 --- a/test/Microsoft.Win32.Msi.Manual.Tests/readme.md +++ b/test/Microsoft.Win32.Msi.ManualTester/readme.md @@ -2,7 +2,7 @@ This project contains a simple console application that uses the MSI APIs to install an MSI. You can run the application using the command line below -```Microsoft.Win32.Mist.ManualTest.exe install ``` +```Microsoft.Win32.Msi.ManualTester.exe install ``` If the MSI you provide installs per-machine, run the application from an elevated prompt. The test application will not handle elevation. It will report an error if you don't have sufficient privileges.