Nall.Aspire.Hosting.DependsOn.Uris 1.0.1

dotnet add package Nall.Aspire.Hosting.DependsOn.Uris --version 1.0.1
NuGet\Install-Package Nall.Aspire.Hosting.DependsOn.Uris -Version 1.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Nall.Aspire.Hosting.DependsOn.Uris" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Nall.Aspire.Hosting.DependsOn.Uris --version 1.0.1
#r "nuget: Nall.Aspire.Hosting.DependsOn.Uris, 1.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Nall.Aspire.Hosting.DependsOn.Uris as a Cake Addin
#addin nuget:?package=Nall.Aspire.Hosting.DependsOn.Uris&version=1.0.1

// Install Nall.Aspire.Hosting.DependsOn.Uris as a Cake Tool
#tool nuget:?package=Nall.Aspire.Hosting.DependsOn.Uris&version=1.0.1

Nall.Aspire.Hosting.DependsOn

Build NuGet contributionswelcome Conventional Commits License

DependsOn functionality for .NET Aspire. Control startup dependencies between components.

Install

dotnet add package Nall.Aspire.Hosting.DependsOn.All
Package Version Description
Nall.Aspire.Hosting.DependsOn Nuget Dependencies Core
Nall.Aspire.Hosting.DependsOn.All Nuget Meta Package containing common dependencies for popular components
Nall.Aspire.Hosting.DependsOn.Uris Nuget HttpEndpoints health check
Nall.Aspire.Hosting.DependsOn.PostgreSQL Nuget PostgreSQL health check
Nall.Aspire.Hosting.DependsOn.SqlServer Nuget SqlServer health check
Nall.Aspire.Hosting.DependsOn.RabbitMQ Nuget RabbitMQ health check

Examples

// AppHost/Program.cs
var builder = DistributedApplication.CreateBuilder(args);

var admin = builder.AddParameter("postgres-admin", secret: true);
var password = builder.AddParameter("postgres-password", secret: true);

builder.Services.Configure<DependsOnOptions>(builder.Configuration.GetSection("DependsOnOptions"));

var dbServer = builder.AddPostgres("db-server", admin, password, 5432).WithHealthCheck();

dbServer.WithPgAdmin(c => c.WithHostPort(5050).WaitFor(dbServer));

var db = dbServer.AddDatabase("db");

var migrator = builder
    .AddProject<Projects.MigrationService>("migrator")
    .WithReference(db)
    .WaitFor(db);

var api = builder
    .AddProject<Projects.Api>("api")
    .WithReference(db)
    .WaitForCompletion(migrator);

builder.Build().Run();

alt

Build and Development

dotnet cake --target build

dotnet cake --target test

dotnet cake --target pack

References

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Nall.Aspire.Hosting.DependsOn.Uris:

Package Downloads
Nall.Aspire.Hosting.DependsOn.All

Aspire Healthchecks for various components

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.1 39 6/25/2024
1.0.0 31 6/25/2024
0.1.0 70 6/24/2024