-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
54 lines (47 loc) · 1.3 KB
/
gulpfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
var gulp = require('gulp');
var $ = require('gulp-load-plugins')();
$.runSequence = require('run-sequence');
var msbuild = require("gulp-msbuild");
var config = require("./gulp-config.js")();
var solution = "./" + config.solutionName + ".sln";
gulp.task("Build-Solution", function () {
var targets = ["Build"];
if (config.runCleanBuilds) {
targets = ["Clean", "Build"];
}
return gulp.src(solution)
.pipe($.msbuild({
targets: targets,
configuration: config.buildConfiguration,
logCommand: false,
verbosity: "minimal",
stdout: true,
errorOnFail: true,
maxcpucount: 0,
toolsVersion: 14.0
}));
});
gulp.task("Build-and-Publish-Solution", function () {
console.log("Publishing to " + config.siteRoot + " folder");
var targets = ["Build"];
return gulp.src(solution)
.pipe($.msbuild({
targets: targets,
configuration: config.buildConfiguration,
logCommand: false,
verbosity: "minimal",
stdout: true,
errorOnFail: true,
maxcpucount: 0,
toolsVersion: 14.0,
properties: {
DeployOnBuild: "true",
DeployDefaultTarget: "WebPublish",
WebPublishMethod: "FileSystem",
DeleteExistingFiles: "false",
publishUrl: config.siteRoot,
_FindDependencies: "false",
WebPublishPipelineCustomizeTargetFile: config.webPublishingProfileTargets
}
}));
});