--- trunk/MSBuild_CurrentVersion/Program.cs 2012/05/28 10:14:03 183 +++ trunk/MSBuild_CurrentVersion/Program.cs 2012/05/28 10:26:01 186 @@ -42,13 +42,14 @@ FileVersionInfo fvi = FileVersionInfo.GetVersionInfo(asm.Location); string version = fvi.FileVersion; #if DEBUG - version = string.Format("{0}-debug", version); + version = string.Format("{0}", version); + #endif #if RELEASE - version = string.Format("{0}-release", version); + version = version.Replace("-debug", "-release"); #endif - Console.WriteLine(string.Format(" {0} v{1}-{2}", pair.Key, version, GetAssemblyArchitecture(asm))); + Console.WriteLine(string.Format(" {0} v{1}-{2}", pair.Key, version, GetAssemblyArchitecture(asm))); sw.WriteLine(string.Format(" {0} v{1}-{2}", pair.Key, version, GetAssemblyArchitecture(asm))); } sw.Close();