I\'m trying to run my sample CefSharp WinForms project as a clickonceinstall application.
Everything is ok in the process of the creation, but when I try to install t
I downloaded CefSharp and used the default WinForms example.
I had issues building in x64 so I skipped that and used x86.
This had a problem with the oneclick launcher. The logfile said it was crashing due to a manifest issue.
I found this which suggests a change to the settings .
"In project properties -> Application tab -> Resources -> checkbox Icon and manifest, the setting "Embed manifest with default settings" caused the problem. Setting it to "Create application without a manifest" fixes the problem."
I then deleted the manifest file under the WinForms.example tree. Performed a clean build and published!
Now I have a working oneclick.
Hopefully the manifest issue is the same as the one you are having.