Aspire4Wasm 5.0.0
Aspire4Wasm has been split into multiple packages now. You need to replace Aspire4Wasm with Aspire4Wasm.AppHost. Then check the README for other packages that might be useful. Aspire4Wasm.WebAssembly provides helper methods for your Blazor WebAssembly apps. Aspire4Wasm.WebApi provides help methods for your ASP .NET Core Web APIs. More information at: https://github.com/BenjaminCharlton/Aspire4Wasm/
dotnet add package Aspire4Wasm --version 5.0.0
NuGet\Install-Package Aspire4Wasm -Version 5.0.0
<PackageReference Include="Aspire4Wasm" Version="5.0.0" />
<PackageVersion Include="Aspire4Wasm" Version="5.0.0" />
<PackageReference Include="Aspire4Wasm" />
paket add Aspire4Wasm --version 5.0.0
#r "nuget: Aspire4Wasm, 5.0.0"
#:package Aspire4Wasm@5.0.0
#addin nuget:?package=Aspire4Wasm&version=5.0.0
#tool nuget:?package=Aspire4Wasm&version=5.0.0
Aspire4Wasm
An easy way to pass service discovery information from a distributed application in Aspire down to your Blazor WebAssembly (client) applications. You can then add service discovery to the client app just like any other Aspire resource. Don't need the source code? Get the Nuget package: https://www.nuget.org/packages/Aspire4Wasm/
Problem statement
.NET Aspire doesn't currently (as of early 2025) facilitate a Blazor WebAssembly (client) app discovering Aspire resources, even if the app has been added to the distributed application, because Blazor WebAssembly apps run in the browser and are "standalone". This has been commented on here:
The expectation is that these apps will need to be aware of the web APIs they're supposed to call without relying on Aspire, and that they will store these in appsettings.json
or appsettings.{environmentName}.json
. This works fine, but if the endpoint changes, or if it differs in your development and production environments, you have to remember to manage those changes in your client app as well as your other resources. This is precisely the problem Aspire is intended to solve.
My little library Aspire4Wasm solves the problem by writing the service discovery information to the appsettings.{environmentName}.json
file of your client app for you.
Quickstart
Install Aspire4Wasm in your AppHost project via the Nuget package. No need to install it on the client project. In your AppHost project's Program.cs file:
- Add the Web Apis you want your client to be able to call.
- Add your Blazor Server app then chain a call to
AddWebAssemblyClient
to add your client app. - Chain a call to
WithReference
to point the client to each web API (you can repeat this for as many Web APIs as you need)
In your client's Program.cs
file:
- Call
AddServiceDiscovery
- Configure your
HttpClient
s either globally or one at a time. In each client'sBaseAddress
property, use the name you gave to the resource in your AppHost.
See the example below:
Example Program.cs in AppHost
var builder = DistributedApplication.CreateBuilder(args);
var inventoryApi = builder.AddProject<Projects.AspNetCoreWebApi>("inventoryapi");
var billingApi = builder.AddProject<Projects.SomeOtherWebApi>("billingapi");
builder.AddProject<Projects.Blazor>("blazorServer")
.AddWebAssemblyClient<Projects.Blazor_Client>("blazorWasmClient")
.WithReference(inventoryApi)
.WithReference(billingApi);
builder.Build().Run();
Example Program.cs in your Blazor WebAssembly Client
Install (on the WebAssembly client) the Microsoft.Extensions.ServiceDiscovery
Nuget package to get the official Aspire service discovery functionality that is going to read your resource information from your app settings.
builder.Services.AddServiceDiscovery();
builder.Services.ConfigureHttpClientDefaults(static http =>
{
http.AddServiceDiscovery();
});
builder.Services.AddHttpClient<IInventoryService, InventoryService>(
client =>
{
client.BaseAddress = new Uri("https+http://inventoryapi");
});
builder.Services.AddHttpClient<IBillingService, BillingService>(
client =>
{
client.BaseAddress = new Uri("https+http://billingapi");
});
(I recommend extracting the names of the resources (e.g. "billingapi" and "inventoryapi") into a string constant somewhere shared by the AppHost and the client, and your other referenced projects. That way, the name is consistent throughout the whole solution.) You probably do this already though!
Default behaviour
Using the default behaviour (in the example) your AppHost will write the service discovery information for all the referenced resources into the appsettings.{environmentName}.json
file of your client app for you.
It uses the following structure. The structure is important because it allows Aspire to "discover" the information on the client.
{
"Services": {
"inventoryapi": {
"https": [
"https://localhost:1234"
],
"http": [
"http://localhost:4321"
]
},
"billingapi": {
"https": [
"https://localhost:9876"
],
"http": [
"http://localhost:6789"
]
}
}
}
Custom behaviours (optional)
If you want to serialize the service discovery information some other way in your WebAssembly application (for example, in a different JSON file, or in an XML file) you can do so in the AppHost Program.cs
by creating a custom implementation of IServiceDiscoveryInfoSerializer
and passing it to the call to AddWebAssemblyClient
via the WebAssemblyProjectBuilderOptions
class, like this:
var builder = DistributedApplication.CreateBuilder(args);
var inventoryApi = builder.AddProject<Projects.AspNetCoreWebApi>("inventoryapi");
var billingApi = builder.AddProject<Projects.SomeOtherWebApi>("billingapi");
builder.AddProject<Projects.Blazor>("blazorServer")
.AddWebAssemblyClient<Projects.Blazor_Client>("blazorWasmClient" options => {
options.ServiceDiscoveryInfoSerializer = yourImplementation;
})
.WithReference(inventoryApi)
.WithReference(billingApi);
builder.Build().Run();
If you choose to make a custom implementation of IServiceDiscoveryInfoSerializer
, you only need to override one method:
public void SerializeServiceDiscoveryInfo(IResourceWithServiceDiscovery resource) { }
Note: If you choose to override the default behaviour with an output format that Aspire can't read from your WebAssembly client app, you'll also need to override the discovery behaviour on the client, which is outside the scope of what I've developed here.
Using service discovery to configure CORS in your web API (optional)
You can also reference one or more Blazor apps from a web API. One use case would be to configure Cross Origin Resource Sharing (CORS) in the web API to grant access to your clients to submit HTTP requests.
Example updated Program.cs in AppHost project
var builder = DistributedApplication.CreateBuilder(args);
var blazorServer = builder.AddProject<Projects.InMyCountry_UI_Server>("blazorServer"); // We'll call AddWebAssemblyClient a bit later this time, because we want to get this reference to the Blazor server project first.
var webApi = builder.AddProject<Projects.InMyCountry_WebApi>("inventoryApi")
.WithReference(blazorServer) // This will pass the endpoint URL of the Blazor app to the web API so that it can be added as a trusted origin in CORS.
.WaitFor(blazorServer);
blazorServer.AddWebAssemblyClient<Projects.InMyCountry_UI_Client>("blazorWasmClient") // Now we can add the Blazor WebAssembly (client) app in the Aspire4Wasm package.
.WithReference(webApi); // And pass the Blazor client a reference to the web API
builder.Build().Run();
The example above will add environment variables to the web API project, for example:
services__webclientapp__http__0 = http://localhost:56481
services__webclientapp__https__0 = http://localhost:56480
It should add as many clients as you configured in the AppHost.
Example continued in Program.cs in the web API project
Now that the web API has a reference to the Blazor app in appsettings, we can configure CORS like this:
var builder = WebApplication.CreateBuilder(args);
builder.AddServiceDefaults();
var clients = GetAllowedOrigins(builder.Configuration, "blazorWasmClient"); // Get the clients from the environment variables. The second argument needs to be the resource name you passed when calling AddWebAssemblyClient in Program.cs of the AppHost project.
builder.Services.AddCors(options =>
{
options.AddDefaultPolicy(policy =>
{
policy.WithOrigins(clients); // Add the clients as allowed origins for cross origin resource sharing.
policy.AllowAnyMethod();
policy.WithHeaders("X-Requested-With");
policy.AllowCredentials();
});
});
private static string[] GetAllowedOrigins(ConfigurationManager config, string resourceName)
{
var configSection = config.GetSection($"services:{resourceName}");
var clients = new List<string>();
foreach (var protocol in new[] { "http", "https" })
{
var subSection = configSection.GetSection(protocol);
foreach (var child in subSection.GetChildren())
{
var value = child.Get<string>();
if (!string.IsNullOrWhiteSpace(value))
{
clients.Add(value);
}
}
}
return [.. clients];
}
// Etc.
Troubleshooting
These are just a few things that I noticed helped me and I hope they help you too.
- You don't need a
launchsettings.json
in your webassembly client project. The one in your Blazor server project will do. - In the
launchsettings.json
of your blazor server project, I recommend that you setlaunchBrowser
tofalse
for all profiles. This means that when the Aspire dashboard opens up, you'll need to click the link to open up your Blazor client. This is good! If you don't do this, your Blazor client is going to launch on a random port chosen by Aspire. When launched on a random port, your web API might reject the requests of your Blazor client because it doesn't have the expected origin to comply with the API's CORS policy. I tried to stop this happening but couldn't, so this is my workaround.
Contributing
I'm a hobbyist. I know there are loads of people out there who be able to improve this in ways I can't, or see opportunities for improvement that I can't even imagine. If you want to contribute, bring it on! Send me a pull request.
Product | Versions 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. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net8.0
- Aspire.Hosting (>= 9.3.1)
- TestableIO.System.IO.Abstractions (>= 22.0.14)
- TestableIO.System.IO.Abstractions.Wrappers (>= 22.0.14)
-
net9.0
- Aspire.Hosting (>= 9.3.1)
- TestableIO.System.IO.Abstractions (>= 22.0.14)
- TestableIO.System.IO.Abstractions.Wrappers (>= 22.0.14)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last Updated |
---|