Build server prototype (integration with GitHub / NuGet / etc)
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.
 
 
 
 
micro-build-server/BuildServer/lib/tasks/dotnetrewrite.js

79 lines
2.5 KiB

"use strict";
var fs = require('fs');
var async = require('async');
var glob = require('glob');
var settings = require('../../settings');
var addAssemblyAttribute = function (content, attribute) {
var regex = /\[\s*assembly/;
if (regex.test(content)) {
return content.replace(regex, attribute + "\r\n[assembly");
}
return content + attribute + "\r\n";
}
module.exports = function (params, processor) {
return {
process: function () {
if (processor.context.dotnetrewriterDone) {
return processor.done();
}
processor.context.dotnetrewriterDone = true;
var date = new Date(),
version = date.getFullYear() + "." +
(date.getMonth() + 1) + "." +
date.getDate() + "." +
((date.getHours() * 100 + date.getMinutes()) * 100 + date.getSeconds()) + " (" +
"built from " + processor.context.rev + "; " +
"repository: " + processor.context.owner + "/" + processor.context.reponame + "; " +
"branch: " + processor.context.branch + ")";
glob("**/AssemblyInfo.cs", {cwd: processor.context.exported}, function (err, files) {
if (err) {
processor.onError(err);
return processor.done();
}
processor.onInfo("Found " + files.length + " AssemblyInfo.cs files");
if (!files || !files.length) {
processor.onWarn("No AssemblyInfo.cs found");
return processor.done();
}
return async.parallel(files.map(function (file) {
return function (callback) {
return async.waterfall([
fs.readFile.bind(null, processor.context.exported + "/" + file),
function (content, cb) {
content += "\r\n";
if (!params.skipCodeSigning && !settings.skipCodeSigning) {
content = content.replace(
/InternalsVisibleTo\s*\(\s*\"([\w.]+)\"\s*\)/g,
function (match, p1) {
return "InternalsVisibleTo(\"" + p1 + ",PublicKey=" + settings.codeSigningPublicKey + "\")";
}
);
content = addAssemblyAttribute(content, "[assembly: AssemblyKeyFileAttribute(\"" + settings.codeSigningKeyFile + "\")]\r\n");
}
content = addAssemblyAttribute(content, "[assembly: AssemblyInformationalVersion(\"" + version + "\")]");
return cb(null, content);
},
fs.writeFile.bind(null, processor.context.exported + "/" + file)
], function (err) {
if (err) {
processor.onError("Unable to rewrite file " + file + ": " + err);
} else {
processor.onInfo("Rewritten file " + file);
}
callback(err);
});
}
}), processor.done.bind(processor));
})
}
};
};