Version 6.3.0.2026:
I encountered an AssemblyInfo set like this:
[Assembly: AssemblyVersion(@“1.2.3.4”)]
I use AssemblyInfo Updater to change the version to 4.3.2.1 and it writes it out like this:
[Assembly: AssemblyVersion(1.2.3.4)]
However, AssemblyInfo updater can correctly update this:
[assembly: AssemblyDescription("OtherProduct v4.3.2.1 " + @“J:\Different\Path\Ex01”)]
-Nelson
Hi Nelson,
Here is a new test build of FinalBuilder that should fix the Assembly Info Updater not working correctly when using a verbatim string literal in C#. You can download the build from:
URL: https://www.finalbuilder.com/downloads/finalbuilder/630/FB630_2140.exe
Regards,
Paul.
Thanks Paul, that fixed it for me.
-Nelson