diff --git a/CHANGELOG.md b/CHANGELOG.md
index c01bcf5..30a0596 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -26,6 +26,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Update `SignExtension.Sign` to sign NuGet or files.
- Update `SignProject` to sign files using `Azure Key Vault` if available.
- Update `GetToolInstallationPath` to use user temp folder.
+- Update `TestRunUtil` icons to circle with color.
### Tests
- Update `NuGetExtensionTests`
- Add `AzureKeyVaultConfigTests`
diff --git a/Directory.Build.props b/Directory.Build.props
index 688ed7e..ffe9c01 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -1,5 +1,5 @@
- 1.9.0-beta
+ 1.9.0-beta.1
\ No newline at end of file
diff --git a/ricaun.Nuke/Utils/TestRunUtil.cs b/ricaun.Nuke/Utils/TestRunUtil.cs
index 365b958..515c7d2 100644
--- a/ricaun.Nuke/Utils/TestRunUtil.cs
+++ b/ricaun.Nuke/Utils/TestRunUtil.cs
@@ -253,9 +253,9 @@ public static string GetDetailsTestReport(AbsolutePath resultFile)
}
#region Utils
- const string IconFailed = ":x:";
- const string IconSkipped = ":warning:";
- const string IconPassed = ":heavy_check_mark:";
+ const string IconFailed = ":red_circle:";
+ const string IconSkipped = ":yellow_circle:";
+ const string IconPassed = ":green_circle:";
///
/// GetIcon
///