From 689698d9a48d93ec32274239b6b0a77239a4a4ef Mon Sep 17 00:00:00 2001 From: Inga Lovinde <52715130+inga-lovinde@users.noreply.github.com> Date: Wed, 2 Sep 2015 17:26:12 +0300 Subject: [PATCH] AssemblyInformationalVersion improved --- BuildServer/lib/tasks/dotnetrewrite.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BuildServer/lib/tasks/dotnetrewrite.js b/BuildServer/lib/tasks/dotnetrewrite.js index 1f2709f..3617e2e 100644 --- a/BuildServer/lib/tasks/dotnetrewrite.js +++ b/BuildServer/lib/tasks/dotnetrewrite.js @@ -32,7 +32,7 @@ module.exports = function (params, processor) { "branch: " + processor.context.branch + ")", processAssemblyInfo = function (content, cb) { content += "\r\n"; - content = addAssemblyAttribute(content, "[assembly: AssemblyInformationalVersion(\"" + version + "\")]"); + content = addAssemblyAttribute(content, "[assembly: AssemblyInformationalVersion(\"v" + version + "\")]"); return cb(null, content); };