ClickOnceInstall CefSharp Winforms Problems

后端 未结 4 1557
孤独总比滥情好
孤独总比滥情好 2020-11-30 13:07

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

4条回答
  •  粉色の甜心
    2020-11-30 13:47

    I have practically the same answer as @Ocean Airdrop's, but also with the following additional things:

    1. Mind the CEF version. I have 69.0.0
    2. Mind the cef.redist version. It should be the same as the one you have on your project. Mine was 3.3497.1841;
    3. Include x64 as well, if you're having x64. Thus the more complete code snippet would be as follows:
    
        
          %(RecursiveDir)%(Filename)%(Extension)
          false
        
      
      
        
          %(RecursiveDir)%(Filename)%(Extension)
          false
        
      
      
        
          %(RecursiveDir)%(Filename)%(Extension)
          false
        
      
      
        
          %(RecursiveDir)%(Filename)%(Extension)
          false
        
      
      
        
          %(RecursiveDir)%(Filename)%(Extension)
          false
        
      
      
        
          %(RecursiveDir)%(Filename)%(Extension)
          false
        
      
      
        
          %(RecursiveDir)%(Filename)%(Extension)
          false
        
      
      
        
          %(RecursiveDir)%(Filename)%(Extension)
          false
        
      
    

    Also, you need to still pay attention to the fact that you need to have Visual Studio C++ Redist on the target computer. Otherwise it's still not gonna work.

提交回复
热议问题