Home > Software engineering >  Purpose of Microsoft.AspNetCore.Components.WebAssembly.Server package
Purpose of Microsoft.AspNetCore.Components.WebAssembly.Server package

Time:04-25

I'm using ASP.NET Core 6. I'm trying to add a blazor project to an existing monorepo that includes a web API server project. I ran dotnet new blazorwasm --hosted, and the generated server project includes this enter image description here

They contains the middleware that maps the correct project files and infrastructure in the hosted server project. An example is mapping the client project wwwroot directory.

  • Related