Reputation: 49
I've spent so much time on the internet to find a way to deploy my WPF application on my client's computer using versioning, remote update etc.. but I wasn't able to find something clear to understand for me. This is my first app deployment. I've tried to use ClickOnce but can't find the Publish Wizard for a WPF project in VS 2019. Does anybody have a useful link, tuto or anything to understand from scratch how to do it?
Thanks!
Upvotes: 1
Views: 7858
Reputation: 22089
First, you have to have to install the Click-Once publishing tools using the Visual Studio installer. In the installer components tab search for Click Once. Then, you should be able to access the publishing option by selecting your project, right-click and choose Publish or using the Menu Build > Publish .
There are lots of in-detail explantions about Click Once by Microsoft in MSDN. You should find everything you need there, including steps to publish an application.
Upvotes: 2