0
votes

When I publish my blazor client side app, it seems that server part of the app (hosted by asp.net core) is not published.

I figured out something is wrong when i could not access any of the api endpoints of the app.

What could I do to get all projects/assemblies published?

1
Can you tell us how you publish the stuff by updating your question with commands you doagua from mars

1 Answers

2
votes

Using a command line în your solution folder run dotnet publish -c Release -o {pat to your output folder}. This will build and publish all your projects under the solution folder.