public BuildHandler(BuildCommandBuilder commandBuilder) { _commandBuilder = commandBuilder; _response = new BuildResponse(); _quickFixes = new List<QuickFix>(); _logParser = new BuildLogParser(); }
public BuildHandler(BuildCommandBuilder commandBuilder) { _commandBuilder = commandBuilder; _response = new BuildResponse(); _quickFixes = new List <QuickFix>(); _logParser = new BuildLogParser(); }
public BuildCommandModule(BuildCommandBuilder commandBuilder) { Post["BuildCommand", "/buildcommand"] = x => Response.AsText(commandBuilder.Executable.ApplyPathReplacementsForClient() + " " + commandBuilder.BuildArguments(true)); Post["BuildTarget", "/buildtarget"] = x => { var req = this.Bind<BuildTargetRequest>(); return Response.AsJson(commandBuilder.BuildCommand(req)); }; }
public BuildCommandModule(BuildCommandBuilder commandBuilder) { Post["BuildCommand", "/buildcommand"] = x => Response.AsText(commandBuilder.Executable.ApplyPathReplacementsForClient() + " " + commandBuilder.BuildArguments(true)); Post["BuildTarget", "/buildtarget"] = x => { var req = this.Bind <BuildTargetRequest>(); return(Response.AsJson(commandBuilder.BuildCommand(req))); }; }
public BuildCommandModule(BuildCommandBuilder commandBuilder) { Post["/buildcommand"] = x => Response.AsText(commandBuilder.Executable + " " + commandBuilder.Arguments); }
public BuildCommandModule(BuildCommandBuilder commandBuilder) { Post["/buildcommand"] = x => Response.AsText(commandBuilder.Executable.ApplyPathReplacementsForClient() + " " + commandBuilder.Arguments); }