dotnetbuild command implemented

dependabot/npm_and_yarn/BuildServer/eslint-7.2.0
Inga 🏳‍🌈 9 years ago
parent 6224e1f545
commit 5b078c6ea1
  1. 7
      BuildServer/lib/tasks/dotnetbuild.js
  2. 13
      BuildServer/lib/tasks/dotnetcompile.js
  3. 9
      BuildServer/lib/tasks/dotnetpackwebapp.js

@ -18,11 +18,10 @@ module.exports = function (params, processor) {
params: params
},
{
type: "dotnetbuilderwrapper",
type: "dotnetcompile",
params: {
command: "compile",
SolutionPath: processor.context.exported + "/" + params.solution,
Target: "Build"
solution: params.solution,
target: "Build"
}
}
]

@ -0,0 +1,13 @@
"use strict";
var dotnetbuilderwrapper = require('./dotnetbuilderwrapper');
module.exports = function (params, processor) {
var compileParams = {
command: "compile",
SolutionPath: processor.context.exported + "/" + params.solution,
Target: params.target,
OutputDirectory: params.overrideOutputDirectory
};
return dotnetbuilderwrapper(compileParams, processor);
}

@ -35,12 +35,11 @@ module.exports = function (params, processor) {
}
},
{
type: "dotnetbuilderwrapper",
type: "dotnetcompile",
params: {
command: "compile",
SolutionPath: processor.context.exported + "/" + "MakePackage.msbuild",
Target: "Package",
OutputDirectory: processor.context.release
solution: "MakePackage.msbuild",
target: "Package",
overrideOutputDirectory: processor.context.release
}
}
]

Loading…
Cancel
Save