Click here to Skip to main content
15,905,782 members
Everything / Nant

Nant

Nant

Great Reads

by Dominic Burford
Using FTP with Nant
by Dominic Burford
Adding unit testing and code coverage to your Nant scripts
by Dominic Burford
Deploying your WCF web service to IIS
by Dominic Burford
Versioning your .NET application with Nant and Subversion

Latest Articles

by Dominic Burford
Deploying your WCF web service to IIS
by Dominic Burford
Versioning your .NET application with Nant and Subversion
by Dominic Burford
Adding unit testing and code coverage to your Nant scripts
by Dominic Burford
Using FTP with Nant

All Articles

Sort by Score

Nant 

27 Feb 2014 by Richard MacCutchan
Try this:@echo offSet FOLDER=Shared_Location_pathSet DEST=%FOLDER%\folders.txt:repeatFOR /F %%i IN ('dir %FOLDER% /b /ad-h /o-d') DO ( SET LS=%%i GOTO :found)@echo No more subfolders foundgoto :finish:foundecho Most recent subfolder: %LS%SET...
22 Jul 2014 by tilakmoger
Hi Everyone,Is there any method that we can read ccnet.config file from other location than the current one "C:\Program file (x86)\CruiseControl.NET\server\ccnet.config" ?anybody please help me....Thanks in advance..Tilak
19 Sep 2014 by Dominic Burford
Using FTP with Nant
19 Sep 2014 by Dominic Burford
Adding unit testing and code coverage to your Nant scripts
23 Dec 2012 by Md. Rashim Uddin
When i tried to create a virtual directory in the remote server using Nant build script It could not create and shows the error msg below,"The webservice at 'remote_machine' does not exist or is not reachable"The OS of remote server is Windows server 2008. Here i have used nant 0.92 and...
22 Feb 2014 by tilakmoger
hi all,how are you:)i want to copy msi's from more than one shared location to my system's staging folder. i mean some msi's from one shared location and some from other shared location but all should be in staging folder created in my system. it is like daily nightly builds will run and a...
26 Feb 2014 by tilakmoger
hi all,how are you :) i have written a code like this below and saved it like .bat file:FOR /F %%i IN ('dir Shared_Location_path /b /ad-h /o-d') DO ( SET LS=%%i GOTO :found)echo No subfolder foundgoto :eof:foundecho Most recent subfolder: %LS%when i run this...
24 Mar 2014 by Keith Barrow
There are solutions to do this for you: See here[^] for a discussion on these.
23 Apr 2014 by tilakmoger
Hi Everyone,in my system i have installed the WinRAR extraction method, but i have .cab files, i need to extract the .cab files completely. i need winrar command line options to extract the .cab filessomething i have tried,
23 Apr 2014 by phil.o
- The command-line program to handle archives with WinRAR is rar.exe, not winrar.exe.You should go to a command prompt, then cd to your WinRAR directory, and type rar /? to get the full list of arguments. Then modify your xml in consequence- There is a typo in your XML: one should read...
24 Apr 2014 by tilakmoger
Hi All i want to know, how to read the targets from other buildfile? i have tried like these, but i am not getting...
25 Apr 2014 by tilakmoger
Hi everyone,I have to send the mail using nant targets, but i am getting some errors like thisError sending mail:Error enountered while sending mail message.Make sure that the following information is valid:Mailhost: smtpclient.everyone.comMailport: 80Use SSL: FalseUsing...
29 Apr 2014 by Sergey Alexandrovich Kryukov
The only valid way to change anything in a text file is be reading it at least once. Why? Because lines are defined by the positions of end-of-line characters, so the lines have different length. Before you read all lines, you don't know the position of N-the line in the file.For simple...
26 May 2014 by vishalbisa
I have a small issue in a nant build file.Brief : we have a 2 build files EX (web and DB) which are independent and called seqentially..nant -buildfile:web.buildnant - buildfile:db.buildTo save time we are building it in parallel by adding a bat file and inside bat file we call...
21 Jul 2014 by Deepu Sreedhar
Hi,I have an MSI set up for an application, which is created using NAnt.This set up creates SSIS packages on the SQL server and also creates a virtual directory on the IIS.While uninstalling the program it does not delete both of these.What can I do to delete the Virtual Directory...
21 Jul 2014 by mcdubey
please go through this one let me know if any issue http://forums.asp.net/t/1397807.aspx?Remove+VIrtual+directory+with+custom+fodlers+while+uninstalling+the+project[^]
23 Jul 2014 by Sampath Lokuge
Please read the below mentioned article.It may be helped to you. :)CruiseControl.Net Tutorial
7 Oct 2014 by Dominic Burford
Deploying your WCF web service to IIS
17 Jul 2015 by Anshoo Arora
You can also try ReportUnit, which also supports Gallio and MSTest: http://relevantcodes.com/reportunit-report-generator/This is a simple exe file that will convert your xml report into an HTML dashboards (samples): - Folder-level dashboard: ...
22 Oct 2015 by dersaartan
Hi folks,here's the setting:We're developing an extension for an ERP software and supporting different versions of it. Each supported version needs different references. Today, we have four Visual Studio solutions to support four versions of the ERP software.Is there a possibility...
22 Oct 2015 by Richard MacCutchan
Create four projects in the solution, each having the specific settings appropriate to the target assembly. Then when you start a build of the solution it will build all the projects.
10 May 2017 by Raghuveer Kasyap
Hi, Currently I am working on the build automation scripts using NAnt for building .Net based Solutions on Windows OS. Each build is taking approximately 10 - 15 sec.(For Build & Run Unit Tests) Is there a way to decrease this to an optimal time. Regards, Raghu What I have tried: Tried...
30 Sep 2014 by Dominic Burford
Versioning your .NET application with Nant and Subversion
29 Apr 2014 by tilakmoger
Hi Guys,my nant build file,
24 Mar 2014 by nixonanand
Dear Professionals, How to convert nunit xml report to html report automatically.Please give me a step by step explanation.i have been searching in lot of websites.Still i didnt get a proper procedures. Please help me am in big trouble. ...