put colon back into logger parameter

This commit is contained in:
Jon Sequeira 2017-03-16 17:05:18 -07:00
parent 4d8bab8389
commit 4d4ebf9d3a

View file

@ -19,7 +19,7 @@ namespace Microsoft.DotNet.Tools.Test.Utilities
{ {
protected const string DefaultFramework = "netcoreapp1.0"; protected const string DefaultFramework = "netcoreapp1.0";
protected const string DefaultLibraryFramework = "netstandard1.5"; protected const string DefaultLibraryFramework = "netstandard1.5";
protected const string ConsoleLoggerOutputNormal = "--logger console;verbosity=normal"; protected const string ConsoleLoggerOutputNormal = "--logger:console;verbosity=normal";
private TempRoot _temp; private TempRoot _temp;
private static TestAssets s_testAssets; private static TestAssets s_testAssets;
@ -42,7 +42,7 @@ namespace Microsoft.DotNet.Tools.Test.Utilities
s_testAssets = new TestAssets( s_testAssets = new TestAssets(
new DirectoryInfo(assetsRoot), new DirectoryInfo(assetsRoot),
new FileInfo(new EnvironmentProvider().GetCommandPath("dotnet")), new FileInfo(new Muxer().MuxerPath),
new FileInfo(new RepoDirectoriesProvider().PjDotnet)); new FileInfo(new RepoDirectoriesProvider().PjDotnet));
} }