Do server side assemblies get downloaded in .Net8 Blazor Web App with interactivity type auto

Michael Wells 20 Reputation points
2023-11-03T21:36:15.0733333+00:00

If I create a new .Net 8 Blazor Web App with Interactivity type "Auto" and Interactivity location "Per page/component", do the server-side assemblies ever get downloaded to the client or only the client-side assemblies?

.NET
.NET
Microsoft Technologies based on the .NET software framework.
2,295 questions
Blazor
Blazor
A free and open-source web framework that enables developers to create web apps using C# and HTML being developed by Microsoft.
1,197 questions
{count} votes

1 additional answer

Sort by: Most helpful
  1. Bruce (SqlWork.com) 48,481 Reputation points
    2023-11-06T17:39:52.9766667+00:00

    what do you mean by server code assemblies? The asp.net core code that hosts the server rendering and static file support are not downloaded.

    any dll referenced by the Blazor WASM must be downloaded.

    1 person found this answer helpful.
    0 comments No comments