在 exe 文件 WPF 中嵌入 Webview2 dll

发布于 2025-01-11 00:55:58 字数 252 浏览 1 评论 0原文

我想仅在 .exe 文件中发布我的 WPF 应用程序。我有来自 WebView2 nuget 包的 3 个 dll。

Microsoft.Web.WebView2.Wpf.dll
Microsoft.Web.WebView2.Core.dll
Microsoft.Web.WebView2.WinForms.dll

如前所述,Costura.Fody 不适用于此,但我有一个本机运行时 .dll,我发现这可以帮助发布应用程序。

I want to release my WPF app just in an .exe file. I have 3 dll's from the WebView2 nuget package.

Microsoft.Web.WebView2.Wpf.dll
Microsoft.Web.WebView2.Core.dll
Microsoft.Web.WebView2.WinForms.dll

As noted, Costura.Fody doesn't work for this, but I have a native runtime .dll and I saw this can help to release the app.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

两个我 2025-01-18 00:55:58

您的目标是哪个版本的 .NET?如果您使用的是 .NET 5+(最好是 6),这将是最简单的。

本页介绍了如何发布 . NET 应用程序作为单个文件,包含用于 dotnet CLI 和 Visual Studio 的说明。我相信您需要按照“包括本机库”下的说明进行操作,并将 MSBuild 属性设置为 true,因为 WPF 和 WebView2 绑定都使用本机 DLL。

What version of .NET are you targeting? This will be easiest if you're on .NET 5+ (ideally 6).

This page documents how to publish a .NET application as a single file, with instructions for the dotnet CLI and Visual Studio. I believe you will need to follow the instructions under "Including native libraries" and set the IncludeNativeLibrariesForSelfExtract MSBuild property to true, as both WPF and the WebView2 bindings use a native DLL.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文