You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a project composed of three csproj projects in a single .sln file
The layout is:
Components -- sdk is "Microsoft.NET.Sdk.Razor"; contains a number of Blazor components
Website -- sdk is "Microsoft.NET.Sdk.Razor"; contains a number of pages each with components from Components and app.razor
Server -- sdk is "Microsoft.NET.Sdk.Web"; contains a very straight forward Web server that hosts the Blazor app with server rendering.
Components is .Net 8, Website & Server are .Net 9 based and everything works.
I attempted to move to .Net 10-P1 by changing the target framework and updating the nuget references in Website & Website.Server
Everything builds but when the website spins up (using F5 in Visual Studio) the load of '<script src="_framework/blazor.server.js"></script>' fails with a 404 error.
Steps to Reproduce
See supplied minimal repo project referenced in the succeeding comment
Expected Behavior
Able to upgrade form .Net 9 to .Net 10 P1
Actual Behavior
Non runnable website after the upgrade
Ask us questions
2025-03-05: Removed request for guidance now that a minimal reproduction project is available.
The text was updated successfully, but these errors were encountered:
Issue Description
I have a project composed of three csproj projects in a single .sln file
The layout is:
Components -- sdk is "Microsoft.NET.Sdk.Razor"; contains a number of Blazor components
Website -- sdk is "Microsoft.NET.Sdk.Razor"; contains a number of pages each with components from Components and app.razor
Server -- sdk is "Microsoft.NET.Sdk.Web"; contains a very straight forward Web server that hosts the Blazor app with server rendering.
Components is .Net 8, Website & Server are .Net 9 based and everything works.
I attempted to move to .Net 10-P1 by changing the target framework and updating the nuget references in Website & Website.Server
Everything builds but when the website spins up (using F5 in Visual Studio) the load of '<script src="_framework/blazor.server.js"></script>' fails with a 404 error.
Steps to Reproduce
See supplied minimal repo project referenced in the succeeding comment
Expected Behavior
Able to upgrade form .Net 9 to .Net 10 P1
Actual Behavior
Non runnable website after the upgrade
Ask us questions
2025-03-05: Removed request for guidance now that a minimal reproduction project is available.
The text was updated successfully, but these errors were encountered: