diff --git a/common/Perf/Azure.Test.Perf/PerfProgram.cs b/common/Perf/Azure.Test.Perf/PerfProgram.cs index bdc90d5755a3e..902de3a3b69d5 100644 --- a/common/Perf/Azure.Test.Perf/PerfProgram.cs +++ b/common/Perf/Azure.Test.Perf/PerfProgram.cs @@ -74,7 +74,8 @@ private static async Task Run(Type testType, PerfOptions options) .OrderBy(a => a.Name); foreach (var a in azureAssemblies) { - Console.WriteLine($"{a.Name}: {a.Version}"); + var informationalVersion = FileVersionInfo.GetVersionInfo(Assembly.Load(a).Location).ProductVersion; + Console.WriteLine($"{a.Name}: {a.Version} ({informationalVersion})"); } Console.WriteLine();