Tagged Questions

NAntContrib is an open source project that extends the NAnt build system by providing custom tasks.

learn more… | top users | synonyms

8
votes
1answer
5k views

<msbuild> task or msbuild.exe with NAnt?

It looks like there are (at least) two options for getting nant to use csproj files: using the task of NAntContrib or using msbuild.exe directly (e.g., codecampserver). Am I reading this right, and ...
4
votes
2answers
5k views

The 'SQLNCLI' provider is not registered on the local machine

I have a NAnt-based script which that I run on my local PC that connects to SQL Server 2008 Express also running on my local PC to drop and recreate databases using .sql files - this works fine, no ...
3
votes
2answers
78 views

How to check in NAnt script whether property is set or not?

Hi I am create a release script using NAnt. How can I check a variable value is getting or not. Now I call my script like this nant -buildfile:CreateNew.build -D:name="Test.V.1.0" -D:bIDs="2" ...
3
votes
3answers
113 views

is there a deploy tool (or set of tools) that supports rollback of a deployment?

I'm learning FluentMigrator. The thing that I like about FM is that it supports the idea of Forward and Back for migrations (aka Up/Down). I'm finding that it's not ideal about this; there are some ...
3
votes
3answers
1k views

IIS site and nant/nantcontrib?

is it possible to manage IIS web applications with NAnt? For example stop or start it?
3
votes
3answers
1k views

In NAnt, can I create a fileset of the files listed in a VS project?

I'm rewriting our NAnt build scripts to make them cleaner and simpler, as well as more general purpose. One of the steps in our build process is to package certain files into a zip file. Before we ...
2
votes
1answer
85 views

How to get the size of a file in NAnt

Does NAnt or NAntContrib have a way to get the size of a file? I have searched the docs for both, but don't see one. Or is the best way to either shell out to a command line or write an inline C# ...
2
votes
2answers
319 views

Nant Script using .Net 2? Why?

I have a very simple setup, a whole solution that builds using .NET 3.5. Runs fine on my machine, and the build server. I have since added a script to my build file, which will create an XML file, ...
2
votes
1answer
125 views

Check files out of PVCS with nant & nantconrib

I'm taking my first steps with nant and nantcontrib so please bear with me! The steps I would like to perform with nant are the following: Get the latest files from PVCS Check-out (i.e. for ...
2
votes
1answer
98 views

Security issue using Nant

I need to store authentication information and I rather not have the password in plain text: <property name="user" value="theUser"/> <property name="password" value="secret"/> ...
2
votes
4answers
2k views

Sample Request: <msi> task of nant-contrib

Can anyone please provide me a sample build file demostrating the use of the task of nant-contrib for creating an installer of a web application project.
2
votes
1answer
1k views

NAnt/NAntContrib 'VB6' failed to start on remote build

Background I'm putting together a Continuous Integration system at work on two VMs running on my local desktop. VM #1 (Toolbox) is running CruiseControl.Net, Subversion, BugTracker.Net and SQL Server ...
1
vote
1answer
32 views

How to detect whether fileset is defined?

My custom NAnt task relies on a certain fileset. It is considered to be defined by the time the task executes. I'd like to make sure fileset was defined before using it. I'm thinking of something ...
1
vote
1answer
73 views

What are prerequisites to automate building of C# and Powershell API based project developed using Visual studio

I am writing an SCVMM like VMM management agent to install it as a service on Windows server 2008 R2 only. The agent is already been developed on Windows server 2008 R2 platform using .Net 4.0 ...
1
vote
2answers
74 views

xml nant and ó character

I trying to use nant to build a solution via msbuild. The problem is the solution´s directory is: C:\Repositorio\Proyectos Casino\SPPM\Codificación\PokerManager as yo can see it got an specia ...
1
vote
2answers
278 views

msi creation using nant msi task

I am trying to create an msi for my application. I pass the client and version parameter using the command: C:\my client\nant -D:client=abc -D:version=1.0 I get the following error message: ** ...
1
vote
1answer
56 views

How do i get the list of replaced files using nantcontrib vssget task in cruise control . net

iam using nantcontrib vssget task to retrieve the latestcode from source safe in a build process. I would like to know what files have been updated /replaced, basically any changes that have occured, ...
1
vote
1answer
61 views

Replace default Nant task by different one

I want to redefine copy task from Nant without changing my .build configuration files. Is it possible in nant? Msbuild has: <UsingTask TaskName="SGen" AssemblyFile="Tools\Extensions.dll"/> ...
1
vote
1answer
578 views

Cruise Control .Net not showing Nant build errors

We are running Cruise Control 1.5.7256.1 and using it to do builds using Nant and Nantcontrib. The builds are failing and succeeding correctly, but when they fail the related error messages are being ...
1
vote
2answers
175 views

Syncing a folder against a Subversion repo

Is there a quick way, command line tool or whatever, that will look at a folder and work out the SVN operations required to add new files, delete old ones, update existing and then commit everything? ...
1
vote
2answers
322 views

Hidden Features of Nant

Continuing the Hidden Features series for Nant. One of the things I learned recently was <xmlpoke> Allows you to replace text in an xml file. e.g. ...
1
vote
2answers
802 views

How to get a recursive svn blame report in a single xml file for all non-binary files in a branch?

How can I get a fully recursive svn blame report for all non-binary files in a branch, where the output is in a single file in xml format and includes revision, date, author, filename & path, and ...
0
votes
0answers
20 views

Why can't i change IIS Directories with NAnt, when running on TeamCity?

I've got a problem with changing the physical path of virtual directories on an IIS, while running on a TeamCity-Agent. I'm changing the Path by using the <mkiisdir /> NAntContrib task. On the ...
0
votes
0answers
34 views

How to get the size of a directory in NAnt

Does NAnt or NAntContrib have a way to get the size of a directory? I have searched the docs for both, but don't see one. Or is the best way to either shell out to a command line or write an inline ...
0
votes
1answer
106 views

NAnt: task that returns/set a collection of objects?

I'd like to augment NAntContrib's set of Perforce tasks by adding the p4 labels task. The p4labels task would have to return a collection of labels, or even ideally, a collection of label info: ...
0
votes
1answer
164 views

How do I use internal commands (Command.com) from NAnt? (“type” etc)

On windows systems, certain dos commands don't have executables that can be explicitly called via NAnt's exec task. (I'm talking specifically about commands that are part of Command.com) A complete ...
0
votes
2answers
361 views

How to create a Visual Source Safe branch using NAnt

Summary I currently have a NAnt build script that performs a vssget on either the latest source code, or a specific branch (using a ${branch} parameter). Whenever we do a production build/deployment ...
0
votes
1answer
174 views

Unexpected attribute “BuildInParallel” on element <msbuild>

I am trying to use the BuildInParallel option on MsBuild. I have an NAnt & NAntContrib script e.g. <project xmlns="http://nant.sf.net/release/0.90/nant.xsd" name="Css Manager Solution Build" ...
0
votes
2answers
2k views

Running builds using .net 3.5 MSBuild and NantContrib

I noticed that projects that were originally created in VS 2008 do not compile using the nantcontrib msbuild task. There is a solution that I've seen here but it seems like a bit of a hack, ...
0
votes
2answers
227 views

Cruisecontrol.net nant results different from non-cc.net

I've a nant script that builds a VS2008 solution. When I run it myself by typing 'nant' in the command line all the correct DLLs are copied to the respective bin directories. But when Cruisecontrol ...
0
votes
2answers
450 views

Successful Implementations of NAnt bcp (SQL Server) Task?

I am looking for either a NAnt Task for SQL Server bcp, or the file format for bcp native output. I supposed I could build a NAntContrib Task for bcp but I don't have time at the moment (Do we ...