我有一个使用 CefSharp 库的 VB.NET 项目 (WinForms),我想根据此处提到的指南使用选项 4 应用 AnyCPU 支持。
根据要求,
- 我没有在项目文件中包含“CefSharpAnyCpuSupport”。
- 我的应用程序有一个“app.config”
- 我的 Visual Studio (2013) 副本安装了“Web 开发人员工具”。
- 我的 CefSharp 版本大于所需的 v87.1.132
据记载,基于上述内容,“bin”文件夹中生成的“app.config”将包括以下部分,但在我的情况下,我什么也没得到。
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="CefSharp.Core.Runtime" processorArchitecture="x86" publicKeyToken="40c4b6fc221f4138" culture="neutral"/>
<codeBase version="89.0.170.0" href="x86/CefSharp.Core.Runtime.dll"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="CefSharp.Core.Runtime" processorArchitecture="amd64" publicKeyToken="40c4b6fc221f4138" culture="neutral"/>
<codeBase version="89.0.170.0" href="x64/CefSharp.Core.Runtime.dll"/>
</dependentAssembly>
</assemblyBinding>
有没有人尝试过实施这个特定的选项?我错过了什么?为了触发生成过程,我在项目文件中添加了以下行,但没有任何积极的结果。
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v12.0\Web\Microsoft.Web.Publishing.targets" />
欢迎任何建议。谢谢!