Reputation: 11
How to make an installer for windows .net?
Upvotes: 0
Views: 179
Reputation: 2683
I would use this http://nsis.sourceforge.net/Main_Page to create the installer. (though there may be more suitable options for a .NET app)
The trial capability requirement should be coded into your app with your own logic, otherwise it can probably be broken by a simple system-restore operation.
Upvotes: 0
Reputation: 40759
Visual Studio can generate rudimentary installers. New Project ==> Other Project Types ==> Setup and Deployment
Deploying Applications on MSDN
Upvotes: 3