kinezu
kinezu

Reputation: 1272

C# uninstaller is deleting registry keys I created when installing

I am creating registry keys and values when I install my c# program. When I uninstall my proogram, these keys get deleted. I want them to stay there and be persistent. How can I do this. I have tried a few things including setting DeletAtUninstall to be false. Any ideas? I am using visual studio 2010.

enter image description here

Upvotes: 4

Views: 1044

Answers (1)

Tanmay Nehete
Tanmay Nehete

Reputation: 2198

try this as shown in trail image

  1. select the folder
    1. go to ins Property
      3.and set DeleteATUnInstall=false

enter image description here

Upvotes: 1

Related Questions