dependabot/npm_and_yarn/BuildServer/eslint-7.2.0
parent
25cfcda36b
commit
8580f996fe
@ -0,0 +1,42 @@ |
||||
"use strict"; |
||||
|
||||
var sequential = require('./sequential'); |
||||
|
||||
module.exports = function (params, processor) { |
||||
var tasks = []; |
||||
|
||||
if (!params.skipMbsCheckStyle) { |
||||
tasks.push({ |
||||
type: "dotnetcheckstyle", |
||||
params: params |
||||
}); |
||||
} |
||||
|
||||
tasks.push({ |
||||
type: "dotnetrewrite", |
||||
params: params |
||||
}); |
||||
|
||||
if (!params.skipNugetRestore) { |
||||
tasks.push({ |
||||
type: "dotnetnugetrestore", |
||||
params: params |
||||
}); |
||||
} |
||||
|
||||
tasks.push({ |
||||
type: "dotnetcompile", |
||||
params: { |
||||
solution: params.solution, |
||||
skipCodeSigning: params.skipCodeSigning, |
||||
forceCodeAnalysis: params.forceCodeAnalysis, |
||||
ignoreCodeAnalysis: params.ignoreCodeAnalysis, |
||||
configuration: params.configuration, |
||||
target: "Rebuild" |
||||
} |
||||
}); |
||||
|
||||
return sequential({ |
||||
tasks: tasks |
||||
}, processor); |
||||
}; |
Loading…
Reference in new issue