A free and open-source web framework that enables developers to create web apps using C# and HTML, developed by Microsoft.
Hi @Rish ,
An asp.net core hosted Blazor Webassembly application (for example named MultipleBlazorApps) contain the following projects:
MultipleBlazorApps.Client is a Blazor WebAssembly client app in the Client folder.
MultipleBlazorApps.Server is an ASP.NET Core server app that serves Blazor WebAssembly apps) in the Server folder. Optionally, the server app can also serve pages or views, as a traditional Razor Pages or MVC app.
MultipleBlazorApps.Shared is a shared resources project for the client and server projects in the Shared folder.
If you check the project reference, you can see that the Client and Server project will add the Shared project reference. And the Server project also depends on the Client and Shared project. So, when publish the application, you should publish the Server project.
More detail infromation, see Hosted deployment with multiple Blazor WebAssembly apps.
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
Best regards,
Dillion