Exemplo n.º 1
0
 public BuildHandler(BuildCommandBuilder commandBuilder)
 {
     _commandBuilder = commandBuilder;
     _response = new BuildResponse();
     _quickFixes = new List<QuickFix>();
     _logParser = new BuildLogParser();
 }
Exemplo n.º 2
0
 public BuildHandler(BuildCommandBuilder commandBuilder)
 {
     _commandBuilder = commandBuilder;
     _response       = new BuildResponse();
     _quickFixes     = new List <QuickFix>();
     _logParser      = new BuildLogParser();
 }
Exemplo n.º 3
0
        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));
            };
        }
Exemplo n.º 4
0
        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)));
            };
        }
Exemplo n.º 5
0
 public BuildCommandModule(BuildCommandBuilder commandBuilder)
 {
     Post["/buildcommand"] = x =>
         Response.AsText(commandBuilder.Executable + " " + commandBuilder.Arguments);
 }
Exemplo n.º 6
0
 public BuildCommandModule(BuildCommandBuilder commandBuilder)
 {
     Post["/buildcommand"] = x =>
                             Response.AsText(commandBuilder.Executable + " " + commandBuilder.Arguments);
 }
Exemplo n.º 7
0
 public BuildCommandModule(BuildCommandBuilder commandBuilder)
 {
     Post["/buildcommand"] = x =>
                             Response.AsText(commandBuilder.Executable.ApplyPathReplacementsForClient() + " " + commandBuilder.Arguments);
 }
Exemplo n.º 8
0
 public BuildCommandModule(BuildCommandBuilder commandBuilder)
 {
     Post["/buildcommand"] = x =>
         Response.AsText(commandBuilder.Executable.ApplyPathReplacementsForClient() + " " + commandBuilder.Arguments);
 }