Exemple #1
0
 internal static Command CreateDotNet(string commandName, IEnumerable <string> args)
 {
     return(Create(DotNetMuxer.MuxerPathOrDefault(), new[] { commandName }.Concat(args)));
 }
Exemple #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));
 }