Implemented build-and-test task

dependabot/npm_and_yarn/BuildServer/eslint-7.2.0
Inga 🏳‍🌈 11 years ago
parent 4c612c98f1
commit 12a761d2d6
  1. 22
      BuildServer/lib/tasks/dotnetbuildandtest.js

@ -0,0 +1,22 @@
"use strict";
var sequential = require("./sequential");
var settings = require("../../settings");
module.exports = function (params, processor) {
return sequential({
tasks: [
{
type: "dotnetbuild",
name: "build",
params: {
solution: params.solution
}
},
{
type: "dotnetnunitall",
name: "test"
}
]
}, processor);
};
Loading…
Cancel
Save