Tagged Questions

2
votes
2answers
239 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 …
2
votes
1answer
512 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 …
0
votes
2answers
619 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, …
1
vote
1answer
414 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 …
1
vote
2answers
346 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.
0
votes
2answers
105 views

Syncing a folder against a Subversion repo

Hi, 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 …
1
vote
2answers
174 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
312 views

IIS site and nant/nantcontrib?

Hi, is it possible to manage IIS web applications with NAnt? For example stop or start it?
2
votes
3answers
510 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 …
0
votes
2answers
103 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
219 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 …
0
votes
2answers
376 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 …