NAntContrib is an open source project that extends the NAnt build system by providing custom tasks.
0
votes
0answers
6 views
How to ignore a project when using Nantcontribu msbuild task?
This is the nantcontrib msbuild task:
<target name="compile.OracleDataExchangeService" depends="init, assemblyinfo">
<msbuild project="CPODS.OracleDataExchangeService.sln" ...
0
votes
2answers
45 views
Nantcontrib <record> task
I am trying to attach a log file to email.
My code is:
**<loadtasks assembly=".../tasks.dll" />
<record name="c:foo\log.txt" action="Start" />
<target name="email">
<mail
...
0
votes
1answer
31 views
Logging Nant Output
I am currently using a tag to log Nant output to a log file OUTPUT.log. I want to save the Nant output to a different file, depending on part of the target. I currently am using:
<record ...
0
votes
1answer
34 views
Include AWSSDK refrence to the nant build file
I'm making a build file to build a website written in C#.net using NANT,
but i'm Unable to include the AWSSDK assembly to the file. it give me error
error CS0234: The type or namespace name 'S3' ...
0
votes
2answers
56 views
How do I specify where MSBUILD publishes a web service too?
I've seen lots of info on the web about this, but nothing clear & specific which seems to address the problem of simply publishing a web service or web site to a specific folder that I specify at ...
0
votes
0answers
44 views
Nant script issue with PsExec program
I have one nant build script which will uninstall the packages. when i try to uninstall the kits with "deployment.build script" from Build server(assume 'x' server) to application server(assume 'y' ...
0
votes
0answers
81 views
Why is NAnt ignoring my SpecFlow Scenario Outlines when I use Examples?
I have written some SpecFlow tests using the Scenario Outline and Examples, so I don't have to write the same test repeatedly when the only thing that is changing is the data.
Scenario Outline: When ...
0
votes
1answer
12 views
iisdirinfo failing on iis7?
When running iisdirinfo on iis7 I'm seeing an error
.dll,1,GET,HEAD,POST,DEBUG
BUILD FAILED
C:\iisinfo.build(9,2):
Error retrieving info for virtual directory 'WebServices' on ...
0
votes
1answer
84 views
IIS virtual directory creation fails on IIS 7.0 / windows server 2008
When I tried to create a virtual directory in the remote server using NAnt build script It could not create and shows the error message below:
The webservice at 'remote_machine' does not exist or is ...
1
vote
0answers
40 views
Promoting and labeling files with pvcs and nantcontrib
We are facing a problem with nant 0.92 and pvcs 8.4.
Our daily build process include
1. gather files from a promotion group "X"
2.do a build with the files gathered.
3.Promote the files in the ...
2
votes
1answer
659 views
Does NAnt have an if/then/else task?
Other build systems, e.g. Ant, have an if/then/else construct that allows for simplifying the script logic in many cases. The CIFactory NAnt variant has this as well (<ifthenelse/>), but is ...
2
votes
1answer
173 views
Can the msbuild nantcontrib task be used with mono's xbuild?
I'm curious if it's possible to use the nantcontrib task in combination with Mono's xbuild.exe instead of it's intended msbuild.exe.
My initial experiments aren't looking too promising; the task ...
1
vote
0answers
179 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 ...
1
vote
1answer
146 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 ...
2
votes
1answer
207 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# ...
1
vote
1answer
191 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 ...
4
votes
2answers
480 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" ...
1
vote
2answers
306 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 ...
4
votes
3answers
230 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 ...
1
vote
3answers
677 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
237 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: ...
3
votes
2answers
533 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, ...
1
vote
1answer
88 views
How do i get the list of replaced files using nantcontrib vssget task in cruise control . net
I am using NantContrib vssget task to retrieve the latest code from Source Safe in a build process. I would like to know what files have been updated /replaced, basically any changes that have ...
1
vote
1answer
79 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"/>
...
0
votes
1answer
393 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 ...
2
votes
1answer
1k 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 ...
0
votes
2answers
543 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 ...
2
votes
1answer
206 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 ...
0
votes
1answer
317 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" ...
2
votes
1answer
148 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"/>
...
9
votes
2answers
11k 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 ...
10
votes
2answers
8k 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 ...
2
votes
2answers
221 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?
...
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, ...
3
votes
3answers
2k 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
2k 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
270 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
502 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 ...
2
votes
3answers
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.
1
vote
2answers
1k 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 ...
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 ...
