Reputation: 2570
Many people use Nant or Powershell for deployment of their apps to different servers/environments.
These are based on scripting while some solutions allow deployment to be embedded in code like Migrator.Net and other Ruby inspired Db deployment/migration frameworks in .NET.
I was wondering if there are any frameworks for .NET for application deployment that would allow developers to embed full deployment inside code. Things like copying files, creating web apps in IIS, stopping and starting services and so on.
Upvotes: 0
Views: 572
Reputation: 498904
There are several solutions out there, starting with setup and deployment projects which come with visual studio.
There are other solutions for creating installers, most known are NSIS installer and WiX.
Upvotes: 1