skip to Main Content

how to Skip Api Version Check for Azure blob storage in .NET Aspire

I'm running Azure blob storage by Aspire var builder = DistributedApplication.CreateBuilder(args); var blobs = builder.AddAzureStorage("storage") .RunAsEmulator() .AddBlobs("blobs"); builder. Build().Run(); var objectStorageApi = builder.AddProject<Projects.ObjectStorage_Api>("ObjectStorageApi") .WithReference(blobs); the problem is when my client creates a blob container or something to the blob it…

VIEW QUESTION

Redis – .net 8 aspire database issue

I experimenting with.net 8 aspire currently. I am following Microsoft documentation. I did a simple project with Backend api, frontend, and Redis cache. var builder = DistributedApplication.CreateBuilder(args); var cache = builder.AddRedisContainer("crediscache"); var weatherapi = builder.AddProject<Projects.WeatherApp_Api>("weatherapi"); builder.AddProject<Projects.WeatherApp_Web>("frontend") .WithReference(weatherapi) .WithReference(cache); All works…

VIEW QUESTION
Back To Top
Search