Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageProjectUrl>https://github.com/astar-development/astar-dev-api-health-checks</PackageProjectUrl>
<PackageReadmeFile>Readme.md</PackageReadmeFile>
<PackageReleaseNotes>This version cleans up the HealthCheck code without affecting the public API.</PackageReleaseNotes>
<PackageReleaseNotes>Removes the defunct Health Check, leaving the 'Result' object-based version.</PackageReleaseNotes>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageTags>ASP.Core HealthChecks;HealthChecks</PackageTags>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/astar-development/astar-dev-api-health-checks.git</RepositoryUrl>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<TargetFramework>net9.0</TargetFramework>
<Title>AStar API HealthChecks</Title>
<Version>0.4.0</Version>
<Version>0.4.1</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down
10 changes: 0 additions & 10 deletions src/AStar.Dev.Api.HealthChecks/AStar.Dev.Api.HealthChecks.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 0 additions & 10 deletions src/AStar.Dev.Api.HealthChecks/IApiClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,6 @@ namespace AStar.Dev.Api.HealthChecks;
/// </summary>
public interface IApiClient
{
/// <summary>
/// The GetHealthAsync method will return the basic Health Status of the API.
/// </summary>
/// <param name="cancellationToken">The token to optionally use to cancel the operation</param>
/// <returns>
/// An instance of the <see href="HealthStatusResponse"></see> class containing the text representation of the API
/// Health Status.
/// </returns>
public Task<HealthStatusResponse> GetHealthAsync(CancellationToken cancellationToken = default);

/// <summary>
/// The GetHealthAsync method will return the basic Health Status of the API.
/// </summary>
Expand Down