Making ClickOnce Updates Mandatory?

前端 未结 4 895
孤城傲影
孤城傲影 2021-02-04 09:07

Currently in an application I\'m building I have it check for updates, and it gives the user the option to install or not to install the updates. I want it to just automaticall

4条回答
  •  北海茫月
    2021-02-04 09:47

    Simply you can achieve by adding below tag in your project's .csproj file.

    
    
        // Other Tags ...
    
        
            
                
            
            
                
            
        
    
        // Other Tags ...
    
    
    

    It will automatically make your each publish/update mandatory without doing any extra stuff.

提交回复
热议问题