Implemented msbuild packaging scripts support

dependabot/npm_and_yarn/BuildServer/eslint-7.2.0
Inga 🏳‍🌈 10 years ago
parent 5b7470e3dd
commit 425511e4f1
  1. 22
      BuildServer/lib/tasks/dotnetpack.js

@ -0,0 +1,22 @@
"use strict";
var sequential = require('./sequential');
module.exports = function (params, processor) {
return sequential({
tasks: [
{
type: "dotnetrewrite",
},
{
type: "dotnetbuilderwrapper",
params: {
command: "compile",
SolutionPath: processor.context.exported + "/" + (params.script || "MakePackage.msbuild"),
Target: "Package",
OutputDirectory: processor.context.release
}
}
]
}, processor);
};
Loading…
Cancel
Save