public static DotNetExecutionCommand ConvertCommand(DnxProjectExecutionCommand dnxCommand)
 {
     return new DotNetExecutionCommand (
         dnxCommand.GetCommand (),
         dnxCommand.GetArguments (),
         dnxCommand.WorkingDirectory,
         new Dictionary<string, string> {
             { "DNX_BUILD_PORTABLE_PDB", GetDnxBuildPortablePDBValue () }
         }
     ) {
         UserAssemblyPaths = new List<string> ()
     };
 }
 public static DotNetExecutionCommand ConvertCommand(DnxProjectExecutionCommand dnxCommand)
 {
     return(new DotNetExecutionCommand(
                dnxCommand.GetCommand(),
                dnxCommand.GetArguments(),
                dnxCommand.WorkingDirectory,
                new Dictionary <string, string> {
         { "DNX_BUILD_PORTABLE_PDB", GetDnxBuildPortablePDBValue() }
     }
                )
     {
         UserAssemblyPaths = new List <string> ()
     });
 }