.net core application报错The required library hostfxr.dll could not be found.
仅提供中文版本
.Net Core和Framework生成的程序,.Net Core需要再运行环境中应用,直接扔给其他人会报错
1 | :\Program Files (x86)\***>.\copyfiles.exe |
参照连接
- 运行 build
dotnet build - 创建基于x64系统的包
dotnet publish -r win-x64 -c Release /p:PublishSingleFile=true /p:PublishTrimmed=true
这个时候会生成win-x64文件,里面有一个publish文件夹,里面的文件就可以自带运行状态给他人使用了


All articles on this blog are licensed under CC BY-NC-SA 4.0 unless otherwise stated.

