NAnt is a build tool for .Net, aiming to support all the various versions of the .Net framework, including all versions of Microsoft .NET, Compact Framework and Silverlight, Mono and Moonlight. Additionally, there is a contribution project called NAntContrib, adding support for additional .Net ...
1
vote
1answer
24 views
SVN revision message in CruiseControl.Net
Using CruiseControl.Net build server. I have a cc.net project that uses a SVN trigger. During the build I would like to have the svn revision message for the changes that triggered the build.
Is it ...
0
votes
0answers
18 views
Failed to start task from NAnt build with TeamCity
I'm trying to move my build server to new server.
Old: Windows Server 2003 SP2, TeamCity 7.0.1, WiX 3.5, NAnt 0.91
New: Windows Server 2003 SP2, TeamCity 7.1.5, WiX 3.5, NAnt 0.91
TeamCity has the ...
0
votes
1answer
27 views
insert unit tests results from xml file to sonar database
I have project that is being built using NAnt. Several projects are writeten in delphi, several - C++, others - C#. They have unit tests. NAnt is smart enough to execute these unit tests. As a result ...
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
0answers
16 views
Nant html report generated is wrong?
How can below html report be explained? I am using Nant.
Code is given below,
[TestFixture]
public class SimpleCSharpTest
{
protected int fValue1;
protected int fValue2;
...
0
votes
1answer
18 views
error while building project using Nant
I have file
pro.build
code is shown below.
<?xml version="1.0" ?>
<project name="NAnt.NUnit2ReportTasks" default="build" basedir=".">
<sysinfo />
<target ...
1
vote
1answer
24 views
ScriptSharp compilation with NAnt script
We've recently added the excellent script# to our project. Currently we have it so that our VS build simply copies the compiled .js file from the output directory to the scripts directory of our web ...
-1
votes
0answers
16 views
How to copy published website from one server to other using nant? [closed]
I can make a zip archive with sources but then after copy I need to extract files on remote machine, I don`t know how.
How I can to connect to remote machine? Also I need to stop IIS on remote machine ...
0
votes
0answers
27 views
How do suppress warning at global level in Nant build
We have a option to suppress unwanted level of warinings in Nant. It has been given inside of tag. We have around 500 csc tags in this build.
<csc target="library" ...
0
votes
2answers
33 views
NAnt Property to lowercase
I want to protect against incorrect case being placed within a parameter in a nant script.
I want to take the value of x and convert it to lower case, I tried using
string::to-lower()
but that ...
0
votes
1answer
18 views
Nant wont recognize namespace.Properties
I'm trying to use nant to build a solution for a c# project however I am having an issue specifying resources in my build file. I get the error code:
CS0234: The type or namespace name 'Properties' ...
1
vote
1answer
70 views
Nant for .NET 4.5
We use Nant to automate our builds. We are upgrading out projects to .NET 4.5. It looks like Nant 0.92 which is the latest build only supports .NET 4.0. Is there anyway to get Nant to work with ...
0
votes
0answers
29 views
Any new build framework to consider? [closed]
Looking for a solution to manage .net builds as well as php via script.
psake - windows only
rake and albacore - cross platform. Liking this the most right now
ant/nant - XML yuck
msbuild - XML yuck
...
0
votes
1answer
73 views
VS2010 devenv command from CC/NAnt fails
We automate builds with CruiseControl / NAnt and it has always worked with VS2005.
We recently upgraded to VS2010 and are now seeing several projects give a "Rebuild All" message, but nothing else:
...
0
votes
1answer
22 views
How to get error message in nant.onfailure
I'm trying to get the build's failed message in nant.onfailure. I Know that I can use try/ catch but I'd like to avoid this route. Is it possible get the failed message without try/catch?
0
votes
2answers
44 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
123 views
Set MSBuild Web Publish Property “ExcludeGeneratedDebugSymbol” from Command Line
I'm using NAnt to build my project and publish web site project(s). I'd like to include the PDBs in the resulting package. How can I set the ExcludeGeneratedDebugSymbol property from the command line ...
0
votes
0answers
54 views
How to change version numbers in web.config using Nant
I've upgraded existing asp.net 2.0 website to use enterprise library 5.0. I am trying to build Nant script to deploy the application. Can anyone suggest how to change version numbers from 4.0 to 5.0 ...
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
0answers
79 views
Should I use Ant or NAnt to compile Visual Studio projects if I'm already using Ant on non-Visual Studio projects? [closed]
I'm in the process of trying to use Ant to automate the builds of my Android and iOS apps. Now I'm moving on to the WP7 port of our app.
Since I'm already using Ant to do two of the three phone ...
0
votes
1answer
51 views
Hudson is not getting latest code from repository
I am using Hudson for my my .NET project build with nAnt. I configure simply NAnt executable path and SVN repository path but when I try to Build through Hudson it always says successfully build!!
...
1
vote
1answer
66 views
NAnt property::exists() with newly defined property?
In NAnt 0.92, I define a property and immediately after checks it's existence. It doesn't exists... but it exists in a called target. Is this a bug or a feature?!? I search in the documentation but ...
1
vote
2answers
79 views
In NAnt <exec>, how to have a conditional <arg> based on property value?
I've got an NAnt <exec> task. I want one argument presence to be conditional to some property being true.
For example, I want the -c command line argument of psExec to be conditional. It should ...
-2
votes
1answer
56 views
using SVN Command line in an NANT script [closed]
Can someone please post an example of how to call svn mkdir in an NANt script?
0
votes
0answers
30 views
Creating a site in IIS6 with Nant
I am trying to deploy a site in a server with IIS 6 using Nant. The site gets created, but
I'd like the site to allow anonymous access and have windows authentication. But I can't accomplish that ...
2
votes
4answers
141 views
How to specify MSBuild version in nant script?
I have a nant script that in one of its targets uses the msbuild tags to build a Visual Studio 2010 solution.
The problem is it fails when it hits this point, the error is:
Solution file error ...
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
2answers
199 views
Deploy Artifact From Jenkins to Archiva with NAnt
I'm admittedly new to the whole continuous integration idea. As such, I've been scouring the web to find a way to take my ASP.NET project, feed it through Jenkins for auto-build using NAnt and mono on ...
0
votes
2answers
264 views
How to get tfs build associated changeset and workitem?
I want the value of tfs build associated changeset and work item for two reason -
1) Report/email confirmation through my custom proj file
2) Check out files which are related to changeset and work ...
0
votes
0answers
92 views
How to change the IIS 7 application pool on a remote server?
I am looking to create new virtual directories on a remote server and set the app pool to a configuration other than the default. I am using NAnt but open to any other commands that can accompolish ...
0
votes
1answer
36 views
Automated Web Reference Switching in C# project with NAnt
Problem: I have a C# 4.0 project with web references in Visual Studio 2010. I have two sets of web references, but I do not want to use them simultaneously. I want to be able to automatically remove ...
0
votes
1answer
75 views
MsBuild: Do not compile referenced project
I have the following project structure:
SLN
libA
libB (references libA)
exeWPF (references libA and libB)
I use NAnt to compile libA and libB, with csc, but I cannot use csc with the ...
1
vote
0answers
90 views
NANT modify assembly version for C++ project
Below is a snippet of my NANT scripts that read the Assemblyversion from one of my C# project and increase it automatically.
<target name="CheckAssembly">
<echo message="Check Assembly ...
1
vote
2answers
69 views
Output file sizes different between NAnt and VS/MSBuild
I am using NAnt for my build process, outputting a DLL.
Everything compiles fine. But when I compare the output from NAnt vs VS/MSBuild, I get a size difference of 2MB between the files.
I have ...
-1
votes
1answer
39 views
.net Framework up-gradation & entlib, Windsor castle, nant, nhibernate [closed]
I am currently using 3.5 framework with VS 2008, that will be upgraded to 4.0. but there are other third-party libraries being used.
Enterprise Lib : Version 4.1.0
Windsor Castle : 2.1
Nant : ...
0
votes
0answers
21 views
How a slave could use a nant script located at slave
So far ive got a master-slave relationship established and created a first job which is labeled to be executed only from slave. But how to setup a build step in a way a slave should use a nant script ...
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
61 views
Gallio NAnt Task error: ITestProjectManager service could not be resolved
I have the following NAnt targets, inside a larger build file:
<target name="load-gallio">
<loadtasks assembly="lib/Gallio.NAntTasks.dll" />
</target>
<target name="test" ...
1
vote
1answer
178 views
How can I let CruiseControl.NET/nant run all Unittest projects postfixed with .Test?
In our continuous integration setup, I would like to set up CruisControl.NET to automatically run all our unittests. However, I don't want to have to specify every unittest dll seperately in the ...
0
votes
0answers
33 views
Multiple outputfiles with NAnt
I want to have a NAnt buildfile, which generates foreach sourcefile one output file.Therefore I have up to now these script :
<project name="NAntTest" default="build">
<property ...
0
votes
1answer
187 views
How to assign exec's output to a property in NAnt
My aim is to fill property with output of command "git describe".
I have a property:
<property name="build.version" value = ""/>
And I want to fill it with output of the following command: ...
0
votes
1answer
255 views
CruiseControl and NANT build
I'm testing a very simple script to try and run my ant build file from CruiseControl.NET. I followed the steps I found on the net of how to do this but i keep getting nAnt task failed in ...
0
votes
1answer
41 views
Run a Nant script in fire and forget fashion from CruiseControl.net
How can I write a Nant or Exec task (which calls the nant.exe) in a fire and forget manner - in Cruise Control .NET. I do not want CruiseControl to wait for the Nant script to complete.
0
votes
1answer
316 views
msbuild and multiple web projects in a solution
We're in the process of upgrading to vs2k12 and .net 4.5, so I'm going through our build process and getting everything working again on our CI server, but I'm having some difficulty.
Here's how ...
0
votes
0answers
15 views
How to specify ant classpath in Eclipse headless mode [duplicate]
Possible Duplicate:
How do I set the Eclipse build path and class path from an Ant build file?
I am working in Eclipse.
I have a plugin with a simple class MyRosaClass with just a main ...
0
votes
1answer
69 views
Nant errors displayed in summary of job in Jenkins
I used CCNet before for my builds and there was a clever plugin to parse errors from NAnt and display it in summary of the build. Now i try to move to Jenkins and have problem with that. I want to ...
0
votes
0answers
194 views
MSDeploy - Can not deploy using the batch file generated by msbuild
With visual studio 2012 set up projects has been discontinued. I was finding a way to automatically do a web deploy using team city and I stumbled across this fantastic article
...
0
votes
0answers
46 views
Wix, Nant and CI - Web Site deployment [closed]
With visual studio 2012, vdproj file was discontinued, we have to use some other tools which could be integrated with Nant to build the MSI.
I am newbie in both Nant and Wix. Need some working ...
