diff --git a/src/AStar.Dev.Api.HealthChecks/AStar.Dev.Api.HealthChecks.csproj b/src/AStar.Dev.Api.HealthChecks/AStar.Dev.Api.HealthChecks.csproj
index 0f4ac19..8f79edc 100644
--- a/src/AStar.Dev.Api.HealthChecks/AStar.Dev.Api.HealthChecks.csproj
+++ b/src/AStar.Dev.Api.HealthChecks/AStar.Dev.Api.HealthChecks.csproj
@@ -21,7 +21,7 @@
LICENSE
https://github.com/astar-development/astar-dev-api-health-checks
Readme.md
- This version cleans up the HealthCheck code without affecting the public API.
+ Removes the defunct Health Check, leaving the 'Result' object-based version.
true
ASP.Core HealthChecks;HealthChecks
git
@@ -29,7 +29,7 @@
snupkg
net9.0
AStar API HealthChecks
- 0.4.0
+ 0.4.1
diff --git a/src/AStar.Dev.Api.HealthChecks/AStar.Dev.Api.HealthChecks.xml b/src/AStar.Dev.Api.HealthChecks/AStar.Dev.Api.HealthChecks.xml
index 795ca16..6a056ae 100644
--- a/src/AStar.Dev.Api.HealthChecks/AStar.Dev.Api.HealthChecks.xml
+++ b/src/AStar.Dev.Api.HealthChecks/AStar.Dev.Api.HealthChecks.xml
@@ -49,16 +49,6 @@
The interface.
-
-
- The GetHealthAsync method will return the basic Health Status of the API.
-
- The token to optionally use to cancel the operation
-
- An instance of the class containing the text representation of the API
- Health Status.
-
-
The GetHealthAsync method will return the basic Health Status of the API.
diff --git a/src/AStar.Dev.Api.HealthChecks/IApiClient.cs b/src/AStar.Dev.Api.HealthChecks/IApiClient.cs
index dc9a85b..345fc6c 100644
--- a/src/AStar.Dev.Api.HealthChecks/IApiClient.cs
+++ b/src/AStar.Dev.Api.HealthChecks/IApiClient.cs
@@ -7,16 +7,6 @@ namespace AStar.Dev.Api.HealthChecks;
///
public interface IApiClient
{
- ///
- /// The GetHealthAsync method will return the basic Health Status of the API.
- ///
- /// The token to optionally use to cancel the operation
- ///
- /// An instance of the class containing the text representation of the API
- /// Health Status.
- ///
- public Task GetHealthAsync(CancellationToken cancellationToken = default);
-
///
/// The GetHealthAsync method will return the basic Health Status of the API.
///