File tree Expand file tree Collapse file tree 6 files changed +6
-8
lines changed
Expand file tree Collapse file tree 6 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 101101
102102 <ItemGroup Label =" .NET 9 Overrides" Condition =" '$(TargetFramework)' == 'net9.0'" >
103103 <PackageVersion Update =" Microsoft.Extensions.Logging.Abstractions" Version =" 9.0.3" />
104+ <PackageVersion Include =" Microsoft.Extensions.Options" Version =" 9.0.0" />
104105 </ItemGroup >
105106</Project >
Original file line number Diff line number Diff line change @@ -42,8 +42,7 @@ public static IResourceBuilder<MongoDBServerResource> WithDbGate(this IResourceB
4242 var dbGateBuilder = DbGateBuilderExtensions . AddDbGate ( builder . ApplicationBuilder , containerName ) ;
4343
4444 dbGateBuilder
45- . WithEnvironment ( context => ConfigureDbGateContainer ( context , builder . ApplicationBuilder ) )
46- . WaitFor ( builder ) ;
45+ . WithEnvironment ( context => ConfigureDbGateContainer ( context , builder . ApplicationBuilder ) ) ;
4746
4847 configureContainer ? . Invoke ( dbGateBuilder ) ;
4948
Original file line number Diff line number Diff line change @@ -44,8 +44,7 @@ public static IResourceBuilder<PostgresServerResource> WithDbGate(this IResource
4444 var dbGateBuilder = DbGateBuilderExtensions . AddDbGate ( builder . ApplicationBuilder , containerName ) ;
4545
4646 dbGateBuilder
47- . WithEnvironment ( context => ConfigureDbGateContainer ( context , builder . ApplicationBuilder ) )
48- . WaitFor ( builder ) ;
47+ . WithEnvironment ( context => ConfigureDbGateContainer ( context , builder . ApplicationBuilder ) ) ;
4948
5049 configureContainer ? . Invoke ( dbGateBuilder ) ;
5150
Original file line number Diff line number Diff line change @@ -41,8 +41,7 @@ public static IResourceBuilder<RedisResource> WithDbGate(this IResourceBuilder<R
4141 var dbGateBuilder = DbGateBuilderExtensions . AddDbGate ( builder . ApplicationBuilder , containerName ) ;
4242
4343 dbGateBuilder
44- . WithEnvironment ( context => ConfigureDbGateContainer ( context , builder . ApplicationBuilder ) )
45- . WaitFor ( builder ) ;
44+ . WithEnvironment ( context => ConfigureDbGateContainer ( context , builder . ApplicationBuilder ) ) ;
4645
4746 configureContainer ? . Invoke ( dbGateBuilder ) ;
4847
Original file line number Diff line number Diff line change 1717 <!-- Workaround for https://github.com/dotnet/aspire/issues/7779 -->
1818 <ItemGroup Condition =" '$(TargetFramework)' == 'net9.0'" >
1919 <PackageReference Include =" Microsoft.Extensions.Logging.Abstractions" />
20+ <PackageReference Include =" Microsoft.Extensions.Options" />
2021 </ItemGroup >
2122
2223</Project >
Original file line number Diff line number Diff line change @@ -42,8 +42,7 @@ public static IResourceBuilder<SqlServerServerResource> WithDbGate(this IResourc
4242 var dbGateBuilder = DbGateBuilderExtensions . AddDbGate ( builder . ApplicationBuilder , containerName ) ;
4343
4444 dbGateBuilder
45- . WithEnvironment ( context => ConfigureDbGateContainer ( context , builder . ApplicationBuilder ) )
46- . WaitFor ( builder ) ;
45+ . WithEnvironment ( context => ConfigureDbGateContainer ( context , builder . ApplicationBuilder ) ) ;
4746
4847 configureContainer ? . Invoke ( dbGateBuilder ) ;
4948
You can’t perform that action at this time.
0 commit comments