zarro 1.136.5 → 1.136.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/gulp-tasks/build.js
CHANGED
|
@@ -88,7 +88,7 @@ function buildForNetCore(solutions) {
|
|
|
88
88
|
const options = {
|
|
89
89
|
target: "[not set]",
|
|
90
90
|
verbosity: env.resolve("BUILD_VERBOSITY"),
|
|
91
|
-
|
|
91
|
+
configuration: configuration,
|
|
92
92
|
additionalArguments: msbuildArgs
|
|
93
93
|
};
|
|
94
94
|
return promisifyStream(
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
return result;
|
|
47
47
|
}
|
|
48
48
|
const sha = currentShortSHA();
|
|
49
|
-
return `${result}-${timestamp()}
|
|
49
|
+
return `${result}-${timestamp()}+${sha}`;
|
|
50
50
|
};
|
|
51
51
|
function timestamp() {
|
|
52
52
|
const now = new Date(Date.now()), year = `${now.getFullYear()}`.substring(2), month = zeroPad(now.getMonth() + 1), day = zeroPad(now.getDate()), hour = zeroPad(now.getHours()), minute = zeroPad(now.getMinutes());
|