We are currently using Psake for build automation and Pstrami for deployment. Both are Powershell libraries. Other tools we use are 7zip to zip/unzip packages and Tarantino for database change management. We mostly use this to build and deploy MVC .NET applications for windows.
Build process is pretty simple:
- Compile and Build the solution using MsBuild
- Run NUnit tests
- Package into zip
Deployment script is pretty simple as well:
- Create few folders
- Add new IIS Application
- Create DB
- etc.
It is all working very well. The only issue I have is Powershell; I really dislike this language. It is very painful for me to work with.
I'm reading about Python and it seems very interesting.
My questions are:
- Can Python compete with Powershel?
- What are the Pros and Cons of Python and Powershell and who wins?
- I'm also curious if anyone is using Python to build and deploy .NET applications and if you ran into any issues and thought of using anything else because of that.
Note: I have seen few similar question on SO, but could not find anything closely related to CI and Build automation.
