You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
402 B
12 lines
402 B
"use strict";
|
|
|
|
const path = require("path");
|
|
const dotnetbuilderwrapper = require("./dotnetbuilderwrapper");
|
|
const settings = require("../../settings");
|
|
|
|
module.exports = (params, processor) => dotnetbuilderwrapper({
|
|
"ApiKey": settings.nugetApiKey,
|
|
"NugetHost": settings.nugetHost,
|
|
"Package": path.join(processor.context.exported, params.Package),
|
|
"command": "nugetpush"
|
|
}, processor);
|
|
|