如何使我的 Blazor WebAssembly 项目从文件夹运行(通过双击打开它)

问题描述 投票:0回答:1

我创建了一个 Blazor WebAssembly 项目,它可以从 VS 运行,但是当我将其发布到本地文件夹后,

index.html
,我可以双击运行它吗?

我必须使用网络服务器吗?

我可以将所有内容(例如 .css .js .wasm)嵌入到

.html
文件中吗?

我有这样的错误:

enter image description here

blazor blazor-webassembly .net-8.0
1个回答
0
投票

我必须使用网络服务器吗?

是的

一个例子: 安装 dotnet-serve

dotnet tool install --global dotnet-serve

启动服务器

dotnet serve -o -S

结果: enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.