Every-time I check in, I want to trigger Nant build script to run some开发者_开发技巧 tasks for the database in the project in Dev/Uat/Live server to clean db, reload contents of db etc.
I am using NAnt to run some scrips for a deployment. It has simplified the process a lot. The issue now is that when there is an error I want the N开发者_JS百科Ant task to run my roll back scripts. Ho
For better or worse, I\'ve built my own msbuild task.I\'ve given it the name \'ms开发者_JS百科build\' and it\'s colliding with one from NAntContrib.
I need to execute 7zip commands from nant script. How can I do that? I have tried it like this, but it is开发者_开发知识库 not working
I am refactoring my existing NAnt build scripts to be able to use them on just about any project and have the proper values sent over from CruiseControl .NET. I\'ve come across an issue, though, where
I am writing an SCVMM like VMM management agent to install it as a service on Windows server 2008 R2 only.
I\'m currently automating my project builds with Hudson + TFS + Nant and is all working great!. I have a build.properties.xml flag that is inside the workspace and it allows me to set the last build n
I\'m trying to setup CruiseControl.NET for CI. I am having trouble finding references and examples for setting up just a file system watcher to kick off a build of a solution file. An issue I\'m havin
i was using this nant task for my nunit tests. <nunit2 failonerror=\"false\"> <formatter usefile=\"true\"
According开发者_运维知识库 to the Nant documentation, you can check if a target exists using the target::exists function.