12 references to WithImageTag
Aspire.Hosting.Azure.Tests (3)
AzureCosmosDBExtensionsTests.cs (1)
47container.WithImageTag(imageTag);
AzureEventHubsExtensionsTests.cs (1)
200container.WithImageTag(imageTag);
AzureServiceBusExtensionsTests.cs (1)
294container.WithImageTag(imageTag);
Aspire.Hosting.Containers.Tests (1)
ContainerResourceBuilderTests.cs (1)
57var redis = builder.AddContainer("redis", "redis").WithImageTag("7.1");
Aspire.Hosting.MongoDB.Tests (1)
AddMongoDBTests.cs (1)
115c.WithImageTag("someothertag");
Aspire.Hosting.PostgreSQL.Tests (2)
AddPostgresTests.cs (2)
403c.WithImageTag("someothertag"); 431builder.AddPostgres("mypostgres").WithPgAdmin(pga => pga.WithImageTag("8.3"));
Aspire.Hosting.RabbitMQ.Tests (2)
AddRabbitMQTests.cs (2)
131rabbitmq.WithImageTag(imageTag); 159rabbitmq.WithImageTag(imageTag);
Aspire.Hosting.Redis.Tests (2)
AddRedisTests.cs (2)
150c.WithImageTag("someothertag"); 168c.WithImageTag("someothertag");
PostgresEndToEnd.AppHost (1)
Program.cs (1)
16var pg6 = builder.AddPostgres("pg6").WithPgAdmin(c => c.WithHostPort(8999).WithImageTag("8.3")).PublishAsContainer();