From ce72c2fc7edba98caaa0e1f1c4a1a8d74bb8d03b Mon Sep 17 00:00:00 2001 From: Praburaj Date: Tue, 20 Jan 2015 06:57:29 -0800 Subject: [PATCH] Renaming klr.exe => dotnet.exe --- test/E2ETests/Common/DeploymentUtility.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/E2ETests/Common/DeploymentUtility.cs b/test/E2ETests/Common/DeploymentUtility.cs index fdedc98f4e..2748caff3c 100644 --- a/test/E2ETests/Common/DeploymentUtility.cs +++ b/test/E2ETests/Common/DeploymentUtility.cs @@ -185,16 +185,16 @@ namespace E2ETests logger.WriteInformation("Setting the DOTNET_APPBASE to {0}", startParameters.ApplicationPath); var monoPath = "mono"; - var klrMonoManaged = Path.Combine(dotnetBin, "klr.mono.managed.dll"); + var dotnetMonoManaged = Path.Combine(dotnetBin, "dotnet.mono.managed.dll"); var applicationHost = Path.Combine(dotnetBin, "Microsoft.Framework.ApplicationHost"); var commandName = startParameters.ServerType == ServerType.Kestrel ? "kestrel" : string.Empty; - logger.WriteInformation(string.Format("Executing command: {0} {1} {2} {3}", monoPath, klrMonoManaged, applicationHost, commandName)); + logger.WriteInformation(string.Format("Executing command: {0} {1} {2} {3}", monoPath, dotnetMonoManaged, applicationHost, commandName)); var startInfo = new ProcessStartInfo { FileName = monoPath, - Arguments = string.Format("{0} {1} {2}", klrMonoManaged, applicationHost, commandName), + Arguments = string.Format("{0} {1} {2}", dotnetMonoManaged, applicationHost, commandName), UseShellExecute = false, CreateNoWindow = true, RedirectStandardInput = true @@ -254,11 +254,11 @@ namespace E2ETests private static Process StartSelfHost(StartParameters startParameters, string identityDbName, ILogger logger) { var commandName = startParameters.ServerType == ServerType.WebListener ? "web" : "kestrel"; - logger.WriteInformation("Executing klr.exe --appbase {0} \"Microsoft.Framework.ApplicationHost\" {1}", startParameters.ApplicationPath, commandName); + logger.WriteInformation("Executing dotnet.exe --appbase {0} \"Microsoft.Framework.ApplicationHost\" {1}", startParameters.ApplicationPath, commandName); var startInfo = new ProcessStartInfo { - FileName = "klr.exe", + FileName = "dotnet.exe", Arguments = string.Format("--appbase {0} \"Microsoft.Framework.ApplicationHost\" {1}", startParameters.ApplicationPath, commandName), UseShellExecute = true, CreateNoWindow = true