NetAspire, Projects, Capilot, NamedPipes
Start. does not work, to be continue
F:\Projects\VS\26\AspQuotesService\AspQuotesService.slnx
Does not work with NamedPipes
----------------------------------------
Capilot
This is the Previouse Projects but with the Aspire support
Projects in Program.cs support
NamedPipes does not work
Aspire Work Well
F:\Projects\VS\26\Aspire\AspireNamedPipesQuotesService01\AspireNamedPipesQuotesService01.slnx
------------------------------------------
TimCorey Project
F:\Projects\VS\TimCorey01\AspireDemoApp.sln
Check rabbit + redis to INTEGRATE to Docker Desktop
rabbit + redis Auto work with Docker Desktop
var builder = DistributedApplication.CreateBuilder(args);
var cache = builder.AddRedis("cache");
// RabbitMQ в контейнере (по умолчанию Aspire использует образ и поднимает через Docker)
var rabbit = builder.AddRabbitMQ("rabbit")
.WithManagementPlugin(); // чтобы была web-админка (15672)
// ваш API
var apiService = builder.AddProject<Projects.AspireDemoApp_ApiService>("apiservice")
.WithReference(cache)
.WithReference(rabbit)
.WaitFor(cache)
.WaitFor(rabbit)
.WithHttpHealthCheck("/health");
builder.AddProject<Projects.AspireDemoApp_Web>("webfrontend")
.WithExternalHttpEndpoints()
.WithHttpHealthCheck("/health")
.WithReference(cache)
.WaitFor(cache)
.WithReference(apiService)
.WaitFor(apiService);
builder.Build().Run();
--------------------------------------
Попытка сделать Chad Types
F:\Projects\VS\GS.Aspire\AspireTypes01\AspireTypes01.slnx
Комментариев нет:
Отправить комментарий