For the .NET Aspire Starter App, imagine that I extended the WeatherApiClient like this:
namespace AspireApp1.Web;public class WeatherApiClient(HttpClient httpClient){ public Uri? BaseAddress => httpClient.BaseAddress; /* Other implementation... */}And then I modified Home.razor to look like this:
@page "/"@inject WeatherApiClient MyWeatherApiClient<PageTitle>Home</PageTitle><h1>Hello, world!</h1>Welcome to your new app.<br />@MyWeatherApiClient.BaseAddressWhy doesn't @MyWeatherApiClient.BaseAddress get resolved correctly? And how can I make it resolve correctly?
