无法 costura.fody 将 dll 嵌入到 exe 中

Can't get costura.fody to embed dll into exe

我尝试将 class 库的 dll 嵌入到我的 exe 中。 我使用 visual studio 2019 和 .net 5。 我在一个解决方案中创建了两个项目 一个是 class 库(dll),第二个是控制台应用程序 两者都针对 .net core 5。我选择控制台应用程序作为启动项目。 class 库仅包含 public 打印出 hello 的静态 hello 函数。 我将 class 库的项目引用到控制台应用程序中,然后在控制台应用程序中我只调用了 ClassNamespace.library.hello 函数。 当我编译它时,它工作正常。 然后我按照他们的自述文件中的描述安装了 costura.fody,我通过以下方式将其添加到控制台项目:

PM> Install-Package Fody
PM> Install-Package Costura.Fody

然后我FodyWeavers.xml进入项目文件夹

<Weavers>
  <Costura/>
</Weavers>

在那之后我重建了项目,它建立了,exe 是 运行,但是当我从输出目录中删除 .dll 时,.exe 不是 运行。

这可以在没有任何附加包的情况下完成。 从 NET 5 开始,您必须设置 两个 选项。

<PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFramework>net5.0</TargetFramework>
    <!-- To publish just a single *.exe file -->
    <PublishSingleFile>true</PublishSingleFile>
    <!-- Specify for which runtime you want to publish -->
    <RuntimeIdentifier>win10-x64</RuntimeIdentifier>
    <!-- Since NET 5 specify this if you want to also pack all external *.dll to your file -->
    <IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
    <!-- Add trimming for a smaller file size if possible--->
    <PublishTrimmed>true</PublishTrimmed>
</PropertyGroup>

IncludeNativeLibrariesForSelfExtract 设置为 false

IncludeNativeLibrariesForSelfExtract 设置为 true

Documentation for publish single file

Documentation for trimming