42 |
|
FileVersionInfo fvi = FileVersionInfo.GetVersionInfo(asm.Location); |
43 |
|
string version = fvi.FileVersion; |
44 |
|
#if DEBUG |
45 |
< |
version = string.Format("{0}-debug", version); |
45 |
> |
version = string.Format("{0}", version); |
46 |
> |
|
47 |
|
#endif |
48 |
|
#if RELEASE |
49 |
< |
version = string.Format("{0}-release", version); |
49 |
> |
version = version.Replace("-debug", "-release"); |
50 |
|
#endif |
51 |
|
|
52 |
< |
Console.WriteLine(string.Format(" {0} v{1}-{2}", pair.Key, version, GetAssemblyArchitecture(asm))); |
52 |
> |
Console.WriteLine(string.Format(" {0} v{1}-{2}", pair.Key, version, GetAssemblyArchitecture(asm))); |
53 |
|
sw.WriteLine(string.Format(" {0} v{1}-{2}", pair.Key, version, GetAssemblyArchitecture(asm))); |
54 |
|
} |
55 |
|
sw.Close(); |