c# - Winforms CL20R3 with CefSharp Project -
i have similar problem question c# windows appication event: clr20r3 on application start
the error this:
application: mantenedorplanesmain.exe framework version: v4.0.30319 description: process terminated due unhandled exception. exception info: system.io.filenotfoundexception battery: in cefsharp.example.cefexample.init () in cefsharp.winforms.example.program.main ()
but on machines, example, on computer can use program without problem , in computer of office too.
i tried find source of problem here in stackoverflow , realized error caused cs file not found, within project.
when go see cefsharp.winforms.example.program.cs
, comment line of cefsharp.example.cefexample.init()
throws me same error in file.
i tried everything, copylocal = true
, x86
, still not working. think there may problem system language, common factor of machines worked, spanish language system.
any ideas?
in context filenotfoundexception
means need install vc++
or compiled in debug
mode (you need build in release
mode when running on machine without vs installed)
https://github.com/cefsharp/cefsharp/blob/master/nuget/readme.txt#l18
also see note
within https://github.com/cefsharp/cefsharp/wiki/frequently-asked-questions#6-how-do-i-include-the-visual-studio-c-2012-redistributables-on-the-target-app
Comments
Post a Comment