是否可以调整Jelastic的。NET核心应用服务器来构建和启动blazor webassembly?基本上,我需要执行类似的东西,而不是dotnet run
dotnet publish --configuration Release
dotnet run --configuration Release --project Server
对于发布,应该使用部署后挂钩
cd $WEBROOT && dotnet publish --configuration Release
对于运行,这些变量应设置为
APP_NAME=Server
RUN_OPTION= --configuration Release