-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update project dependencies and add launch config
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.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
] | ||
} | ||
] |