在 exe 文件 WPF 中嵌入 Webview2 dll
我想仅在 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的目标是哪个版本的 .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 theIncludeNativeLibrariesForSelfExtract
MSBuild property to true, as both WPF and the WebView2 bindings use a native DLL.