0
votes
0answers
7 views
How to echo the contents of a fileset in Nant?
Was trying to do something like this:
<copy>
<fileset id="mySet">
<include name="*.sql" />
</fileset>
</copy>
<echo message="Copied files: ${mySet} to …
0
votes
1answer
24 views
Setting write permissions on godaddy hosting.
I have godaddy asp.net hosting. Every time I upload the build, it’s a manual laborious task of setting write permissions(to folders) through the web interface.
Is this something I can automate? …
0
votes
1answer
18 views
Deploy to remote server using scp in NANT script
I am trying to copy a file to a remote server using scp task in Nant.Contrib .
I have used the following code to do that:
<target name= "QADeploy"description="gthtyb" >
<loadtasks …
0
votes
1answer
6 views
Create directory using Nant
Not sure if I'm just totally missing it but I couldn't not figure out how to create a new directory using Nant. Is there built in functionality to do this? Can I just use the command prompt? I tried …
0
votes
0answers
10 views
How to use hyphen in the Nant properties
Hi,
I would like to use "en Dash"(unicode value=8211) in one of my property in the NAnt script.
When i use that property the unicode value that is returning for the en dash character is HYPHEN( …
0
votes
2answers
67 views
MSBuild stops on the first error when called inside NAnt script ?
I'm trying to build a VS 2008 solution in NAnt, but it seems msbuild stops the build process after the first compilation errror has occured.
In MSBuild there is a "ContinueOnError=true" or …
0
votes
1answer
24 views
Gallio and MbUnit in NAnt
I am trying to use Gallio (v3.1)/MbUnit/NCover to run a unit test in my C# code, as part of the build process for my continuous integration system.
I can get Gallio.Echo.exe to execute the tests and …
0
votes
1answer
42 views
Visual studio 2008 & nant , msbuild how we use this for automate? Is nant work for vs2008?
I am working on a windows as well as web projects. We currently use Visual Studio to build our solution using visual studio 2008.
I would like to move to a more powerful build system such as Nant or …
4
votes
1answer
61 views
Is NAnt still being actively developed?
Is NAnt still being actively developed, or are there other projects that are gaining more momentum in the Automated Build space?
Edit:
Obviously MSBuild will continue to advance but given all the …
0
votes
1answer
27 views
Help in building nhibernate from source
I downloaded nant 0.86 beta which seems to be the latest release.
Now running:
nant default.build I get this error:
detected nant 0.86 beta 1, consider upgrading to a newer version when building …
2
votes
1answer
38 views
nAnt Deleting files older than 7 days old
I would like to create a target that cleans log files older than 7 days old in a specific folder. I get an error when I try to put in a "date" element inside a fileset. How can I go about this?
…
0
votes
1answer
16 views
How to compile VB 2005 code containing “default instances” using nant
I've got some VB code that's using a default instance of a Form. It compiles fine within VS but when I try compiling using the nant vbc task it throws this error,
error BC30469: Reference to a
…
0
votes
3answers
55 views
What are solid NMaven or build server for .NET alternatives?
Maven had a long history and is well supported in the Java world. NMaven has received a less successful start and has never became as popular in the C#/.NET world as its larger cousin was in the Java …
0
votes
1answer
21 views
Accessing CruiseControl.NET project name in NAnt
CCNet passes the current build label to NAnt via the NAnt property "CCNetLabel". Is there a similar property where it passes the name of the CCNet project name?
0
votes
0answers
27 views
Running NUnit Tests in parallell using NANT
Hi,
We have different categories of tests under various assemblies. What is the best possible way to run them in parallel? I am aware of a task in ant, is there any such task in NANT?
Kind regards,
…
