Exemplo n.º 1
0
 internal static Command CreateDotNet(string commandName, IEnumerable <string> args)
 {
     return(Create(DotNetMuxer.MuxerPathOrDefault(), new[] { commandName }.Concat(args)));
 }
Exemplo n.º 2
0
 internal static Command CreateDotNet(string commandName, IEnumerable <string> args, NuGetFramework framework = null, string configuration = "Debug")
 {
     return(Create(DotNetMuxer.MuxerPathOrDefault(), new[] { commandName }.Concat(args), framework, configuration));
 }