I have a VB.NET project (WinForms) which uses the CefSharp libraries and I want to apply the AnyCPU support using the option 4 based on the guide mentioned here.
Based on the requirements,
- I'm not including the "CefSharpAnyCpuSupport" in the project file.
- My application has an "app.config"
- My copy of Visual Studio (2013) has the "Web Developer Tools" installed.
- My CefSharp version is greater than the needed v87.1.132
It is written that based on the above, the generated "app.config" on the "bin" folder will include the below section but in my case I'm not getting anything.
<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>
Does anyone has tried to implement this specific option? I'm missing something? In order to trigger the generation process, I added the following line into the project file but without any positive result.
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v12.0\Web\Microsoft.Web.Publishing.targets" />
Any suggestions are welcome. Thanks!