File tree 4 files changed +16
-7
lines changed
4 files changed +16
-7
lines changed Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
- <Sdk Name =" Aspire.AppHost.Sdk" Version =" 9.1 .0" />
3
+ <Sdk Name =" Aspire.AppHost.Sdk" Version =" 9.2 .0" />
4
4
5
5
<PropertyGroup >
6
6
<OutputType >Exe</OutputType >
7
7
<TargetFramework >net9.0</TargetFramework >
8
8
<ImplicitUsings >enable</ImplicitUsings >
9
9
<Nullable >enable</Nullable >
10
- <IsAspireHost >true</IsAspireHost >
11
10
<UserSecretsId >33685a5e-74bb-4f05-9881-601cf33cad11</UserSecretsId >
12
11
</PropertyGroup >
13
12
14
13
<ItemGroup >
15
- <PackageReference Include =" Aspire.Hosting.AppHost" Version =" 9.1 .0" />
16
- <PackageReference Include =" Aspire.Hosting.Azure.Sql" Version =" 9.1 .0" />
17
- <PackageReference Include =" Aspire.Hosting.SqlServer" Version =" 9.1 .0" />
14
+ <PackageReference Include =" Aspire.Hosting.AppHost" Version =" 9.2 .0" />
15
+ <PackageReference Include =" Aspire.Hosting.Azure.Sql" Version =" 9.2 .0" />
16
+ <PackageReference Include =" Aspire.Hosting.SqlServer" Version =" 9.2 .0" />
18
17
</ItemGroup >
19
18
20
19
<ItemGroup >
Original file line number Diff line number Diff line change 14
14
. WaitFor ( db ) ;
15
15
16
16
builder . AddProject < Projects . WebApplication1 > ( "webapi" )
17
+ . WithUrlForEndpoint ( "http" , url =>
18
+ {
19
+ url . DisplayText = "Forecast API (HTTP)" ;
20
+ url . Url += "/weatherforecast" ;
21
+ } )
22
+ . WithUrlForEndpoint ( "https" , url =>
23
+ {
24
+ url . DisplayText = "Forecast API (HTTPS)" ;
25
+ url . Url += "/weatherforecast" ;
26
+ } )
17
27
. WithReference ( db )
18
28
. WaitFor ( db )
19
29
. WaitForCompletion ( dbDeploy ) ;
Original file line number Diff line number Diff line change 8
8
</PropertyGroup >
9
9
10
10
<ItemGroup >
11
- <PackageReference Include =" Aspire.Microsoft.Data.SqlClient" Version =" 9.1 .0" />
11
+ <PackageReference Include =" Aspire.Microsoft.Data.SqlClient" Version =" 9.2 .0" />
12
12
<PackageReference Include =" dbup-sqlserver" Version =" 6.0.0" />
13
13
<PackageReference Include =" Microsoft.Data.SqlClient" Version =" 6.0.1" />
14
14
</ItemGroup >
Original file line number Diff line number Diff line change 7
7
</PropertyGroup >
8
8
9
9
<ItemGroup >
10
- <PackageReference Include =" Aspire.Microsoft.Data.SqlClient" Version =" 9.1 .0" />
10
+ <PackageReference Include =" Aspire.Microsoft.Data.SqlClient" Version =" 9.2 .0" />
11
11
<PackageReference Include =" Microsoft.Data.SqlClient" Version =" 6.0.1" />
12
12
</ItemGroup >
13
13
You can’t perform that action at this time.
0 commit comments