Skip to content

Commit

Permalink
Update project dependencies and add launch config
Browse files Browse the repository at this point in the history
Updated Azure.Functions.csproj to reference newer versions of Azure.Identity (1.13.1 to 1.13.2) and Microsoft.Extensions.Configuration.UserSecrets (9.0.0 to 9.0.1).

Updated Blazor.WebAssembly.csproj to reference newer versions of Microsoft.AspNetCore.Components.WebAssembly, Microsoft.AspNetCore.Components.WebAssembly.DevServer, and Microsoft.AspNetCore.SignalR.Client (9.0.0 to 9.0.1), as well as Microsoft.FluentUI.AspNetCore.Components and Microsoft.FluentUI.AspNetCore.Components.Icons (4.11.0 to 4.11.3).

Added Web.slnLaunch file with launch configurations for the Web solution, specifying debug targets for Blazor.WebAssembly and Azure.Functions projects.
Raj committed Jan 19, 2025
1 parent 60daae5 commit 9c8db4c
Showing 3 changed files with 24 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/Azure.Functions/Azure.Functions.csproj
Original file line number Diff line number Diff line change
@@ -5,10 +5,10 @@
<UserSecretsId>59e0abf2-8412-44a6-a3fa-7e8b0469db2d</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.13.1" />
<PackageReference Include="Azure.Identity" Version="1.13.2" />
<PackageReference Include="MessagePack" Version="3.1.1" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.SignalRService" Version="1.15.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="9.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="9.0.1" />
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="4.6.0" />
</ItemGroup>
<ItemGroup>
10 changes: 5 additions & 5 deletions src/Blazor.WebAssembly/Blazor.WebAssembly.csproj
Original file line number Diff line number Diff line change
@@ -21,11 +21,11 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="9.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="9.0.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="9.0.0" />
<PackageReference Include="Microsoft.FluentUI.AspNetCore.Components" Version="4.11.0" />
<PackageReference Include="Microsoft.FluentUI.AspNetCore.Components.Icons" Version="4.11.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="9.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="9.0.1" PrivateAssets="all" />
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="9.0.1" />
<PackageReference Include="Microsoft.FluentUI.AspNetCore.Components" Version="4.11.3" />
<PackageReference Include="Microsoft.FluentUI.AspNetCore.Components.Icons" Version="4.11.3" />
</ItemGroup>

<ItemGroup>
17 changes: 17 additions & 0 deletions src/Web.slnLaunch
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[
{
"Name": "Web",
"Projects": [
{
"Path": "Blazor.WebAssembly\\Blazor.WebAssembly.csproj",
"Action": "Start",
"DebugTarget": "https"
},
{
"Path": "Azure.Functions\\Azure.Functions.csproj",
"Action": "Start",
"DebugTarget": "Azure.Functions"
}
]
}
]

0 comments on commit 9c8db4c

Please sign in to comment.