skip to Main Content

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