在 Jelastic 云中托管 blazor webassembly
Host blazor webassembly in Jelastic cloud
是否可以调整 Jelastic 的 .NET Core 应用程序服务器来构建和启动 blazor webassembly?
基本上而不是 dotnet run
我需要执行类似
dotnet publish --configuration Release
dotnet run --configuration Release --project Server
对于发布,应该使用 post-deploy 钩子
cd $WEBROOT && dotnet publish --configuration Release
对于运行,应设置这些变量
APP_NAME=Server
RUN_OPTION= --configuration Release
是否可以调整 Jelastic 的 .NET Core 应用程序服务器来构建和启动 blazor webassembly?
基本上而不是 dotnet run
我需要执行类似
dotnet publish --configuration Release
dotnet run --configuration Release --project Server
对于发布,应该使用 post-deploy 钩子
cd $WEBROOT && dotnet publish --configuration Release
对于运行,应设置这些变量
APP_NAME=Server
RUN_OPTION= --configuration Release