From eea34ff7bbbb228d9e4392f523a231983a7d152e Mon Sep 17 00:00:00 2001 From: Inga Lovinde <52715130+inga-lovinde@users.noreply.github.com> Date: Fri, 23 Oct 2015 16:30:26 +0300 Subject: [PATCH] Improved compatibility --- 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 6f20395..bc94ef8 100644 --- a/BuildServer/lib/tasks/dotnetrewrite.js +++ b/BuildServer/lib/tasks/dotnetrewrite.js @@ -35,7 +35,7 @@ module.exports = function (params, processor) { } ); } - content = addAssemblyAttribute(content, "[assembly: AssemblyInformationalVersion(\"" + version + "\")]"); + content = addAssemblyAttribute(content, "[assembly: System.Reflection.AssemblyInformationalVersion(\"" + version + "\")]"); return cb(null, content); };