From 507ab50a530dce27a3c433b02e7f892fa8b2ec4b Mon Sep 17 00:00:00 2001 From: Inga Lovinde <52715130+inga-lovinde@users.noreply.github.com> Date: Wed, 2 Sep 2015 17:42:13 +0300 Subject: [PATCH] Fixed AssemblyInfo.cs rewriting --- BuildServer/lib/tasks/dotnetrewrite.js | 1 - 1 file changed, 1 deletion(-) diff --git a/BuildServer/lib/tasks/dotnetrewrite.js b/BuildServer/lib/tasks/dotnetrewrite.js index 3617e2e..c32ff75 100644 --- a/BuildServer/lib/tasks/dotnetrewrite.js +++ b/BuildServer/lib/tasks/dotnetrewrite.js @@ -31,7 +31,6 @@ module.exports = function (params, processor) { "repository: " + processor.context.owner + "/" + processor.context.reponame + "; " + "branch: " + processor.context.branch + ")", processAssemblyInfo = function (content, cb) { - content += "\r\n"; content = addAssemblyAttribute(content, "[assembly: AssemblyInformationalVersion(\"v" + version + "\")]"); return cb(null, content); };