We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3435cc8 commit bb6ab17Copy full SHA for bb6ab17
2 files changed
PocketDDD.AppHost/AppHost.cs
@@ -1,6 +1,7 @@
1
var builder = DistributedApplication.CreateBuilder(args);
2
3
var db = builder.AddSqlServer("sql")
4
+ .WithDbGate(r => r.WithExplicitStart())
5
.WithLifetime(ContainerLifetime.Persistent)
6
.AddDatabase("PocketDDDContext");
7
PocketDDD.AppHost/PocketDDD.AppHost.csproj
@@ -12,6 +12,7 @@
12
<ItemGroup>
13
<PackageReference Include="Aspire.Hosting.AppHost" Version="13.2.4" />
14
<PackageReference Include="Aspire.Hosting.SqlServer" Version="13.2.4" />
15
+ <PackageReference Include="CommunityToolkit.Aspire.Hosting.SqlServer.Extensions" Version="13.2.1-beta.532" />
16
<PackageReference Include="WireMock.Net.Aspire" Version="2.4.0" />
17
</ItemGroup>
18
0 commit comments