10 references to WithPgWeb
Aspire.Hosting.PostgreSQL.Tests (9)
AddPostgresTests.cs (6)
394
builder.AddPostgres("mypostgres1").
WithPgWeb
();
395
builder.AddPostgres("mypostgres2").
WithPgWeb
();
404
builder.AddPostgres("mypostgres").
WithPgWeb
(c =>
422
builder.AddPostgres("mypostgres").
WithPgWeb
(c =>
520
var pg1 = builder.AddPostgres("mypostgres1").
WithPgWeb
(pga => pga.WithHostPort(8081));
521
var pg2 = builder.AddPostgres("mypostgres2").
WithPgWeb
(pga => pga.WithHostPort(8081));
PostgrePublicApiTests.cs (1)
140
var action = () => builder.
WithPgWeb
();
PostgresFunctionalTests.cs (2)
153
pg.
WithPgWeb
(c =>
473
.
WithPgWeb
(c => c.WithLifetime(ContainerLifetime.Persistent))
PostgresEndToEnd.AppHost (1)
Program.cs (1)
24
var db11 = builder.AddPostgres("pg11").
WithPgWeb
().AddDatabase("postgres");