I'm trying to publish an ASP.NET hosted Blazor wasm app, but I'm having some issues with the publishing. I'd like to publish a x64 self-contained app and I'm using the following command from within the server project:
dotnet publish .\Wasm.Server.csproj -c Release --self-contained -r win10-x64
A couple of extra notes:
- I'm under the impression that since I've created the wasm project as hosted, then I should get everything I need just by publishing the server project (ie, publishing the server project will build the wasm project and copy the required files into the wwwroot of the server project and copy everything to the output folder)
- I want the server side (API) to be self contained
- I'm using the win10-x64 because the web app will be published on a windows serve box
Unfortunately, this generates the following error:
C:\Program Files\dotnet\sdk\6.0.203\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.RuntimeIdentifierInference.targets(196,5): error NETSDK1032: The RuntimeIdentifier platform 'browser-wasm' and the PlatformTarget 'x64' must be compatible.
Any clues on how to solve this? I've tested it in another box and it seems to work without any issues.