Reputation: 20926
In a lot of forums i read:
If you right click on your install project, View -> Registry, you can add a registry key to the list. The key has properties (right click -> Properties) AlwaysCreate, and DeleteAtUninstall, which should perform what you need, based on the stuff in the other post about the Registry table. Don't add a value to the key, set AlwaysCreate to false, and DeleteAtUninstall to true
where in visual studio 2008 i can found view->registry. I right click on my windows application but there is no view option...
Thx
Upvotes: 0
Views: 691
Reputation: 73303
You need to add a deployment (install) project to your solution. Then you can access the Registry Key and other deployment options by right-clicking on the setup project.
Upvotes: 1