Reputation: 1564
Is it possible to do custom actions or have a custom user interface while doing ClickOnce deployment in .NET?
My situation is to accept some user credentials and store it in a text file while deploying of a Windows application.
Upvotes: 1
Views: 262
Reputation: 8079
It is not possible to implement your own logic in this state of the deployment. But you could implement your logic into the website that contains the link to your application.
Upvotes: 1