用 .NET 5.0 编写的控制台应用程序无法在同事的计算机上运行

时间:2021-05-06 13:06:39

标签: .net-core windows-10 console-application .net-5

我在 .NET 5.0 中编写了一个工具,我现在必须将其提供给非开发人员使用。不幸的是,无论我如何发布它,我都无法让它在她的计算机上运行。目前我已将其设置为:

配置: 发布 |任何 CPU
目标框架: net5.0
部署模式:独立
目标运行时: win-x64(检查过,她肯定有 Windows 10 64 位)

但是当她在她的 PC 上运行它时,她得到:

Failed to load the dll from [C:\Users\username\Desktop\Release Builder\hostfxr.dll], HRESULT: 0x800700C1
The library hostfxr.dll was found, but loading it from C:\Users\username\Desktop\Release Builder\hostfxr.dll failed
  - Installing .NET prerequisites might help resolve this problem.
     https://go.microsoft.com/fwlink/?linkid=798306

当然,我检查了链接,她的 Windows 10 版本高于最低版本。什么原因?我习惯于构建 Web 应用程序或只是为自己构建控制台工具。我认为独立意味着只需移交发布文件夹的内容。

我应该指出,发布文件夹似乎是正确的...里面有 230 多个文件。

1 个答案:

答案 0 :(得分:2)

您可以尝试使用这些设置进行发布吗?

第 1 步:

publish settings

第 2 步:打开您的 .csproj 并添加这些,或与您的交换。

  <PropertyGroup>
    <OutputType>WinExe</OutputType>
    <TargetFramework>net5.0-windows</TargetFramework>
    <PublishReadyToRun>true</PublishReadyToRun>
    <PublishSingleFile>true</PublishSingleFile>
    <IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
    <RuntimeIdentifier>win-x64</RuntimeIdentifier>
    <UseWPF>true</UseWPF>
    // keep other info
  </PropertyGroup>