I'm trying to deploy a Blazor WASM Hosted app from our Git repo on our DevOps server using a DevOps Build pipeline and a separate release pipeline.
The project comprises of a Server project and a Client project (as per the standard structure created by the Blazor WebAssembly Hosted template in VS).
I've used the classic editor and the ASP.NET Core template and the site loads, but the console shows HTTP errors connecting to the server, which makes me think I've deployed the Client project not the Server project. I'm pretty sure that's the case because my Drop artifact contains a file called Client.zip.
How can I change this to deploy the Server app instead?
(There are a number of questions on this already, e.g. here, but none of the cover the classic editor approach)








