make migration backup folder a sibling of the project root

This commit is contained in:
jonsequitur 2016-12-20 14:19:37 -08:00
parent 7a2c6ad086
commit 620e573f95
8 changed files with 276 additions and 81 deletions

View file

@ -48,7 +48,7 @@ namespace Microsoft.DotNet.Tools.Test.Utilities
return subject;
}
public static TCommand WithForwardingToConsole<TCommand>(this TCommand subject, Action<string> writeLine) where TCommand : TestCommand
public static TCommand WithForwardingToConsole<TCommand>(this TCommand subject) where TCommand : TestCommand
{
subject.WithOutputDataReceivedHandler(s => Console.Out.WriteLine(s));