This commit is contained in:
Timothy Mothra Lee 2020-03-27 16:19:40 -07:00
Родитель 432d0ffb60
Коммит b60b577e5b
2 изменённых файлов: 5 добавлений и 2 удалений

Просмотреть файл

@ -12,5 +12,8 @@ write-output $out
Write-Host "`nDocker:";
Docker --version
Write-Host "`nDotNet List SDKs:";
Write-Host "DotNet Framework:"
Get-ItemProperty "HKLM:SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full"
Write-Host "`nDotNet Core List SDKs:";
dotnet --list-sdks

Просмотреть файл

@ -531,7 +531,7 @@
// adding logging to confirm what executable is being tested.
var test = AppDomain.CurrentDomain.GetAssemblies().Single(x => x.GetName().Name == "Microsoft.ApplicationInsights").GetName().Version.ToString();
Console.WriteLine($"SDK Version: {test}");
Assert.AreEqual(ServiceProfilerNameContracts[item.GetType()], actualEvent.EventName, $"ItemType {item.GetType()} ServiceProfilerName {ServiceProfilerNameContracts[item.GetType()]} does not match EventName {actualEvent.EventName}");
Assert.AreEqual(ServiceProfilerNameContracts[item.GetType()], actualEvent.EventName, $"ItemType: '{item.GetType().Name}' ServiceProfilerName: '{ServiceProfilerNameContracts[item.GetType()]}' does not match EventName: '{actualEvent.EventName}'");
#endif
int keysFound = 0;