Tagged Questions
The nant-task tag has no wiki summary.
10
votes
3answers
3k views
MSBuild 2010 - how to publish web app to a specific location (nant)?
I'm trying to get MSBuild 2010 to publish a web app to a specific location.
I can get it to publish the deployment package to a particular path, but the deployment package then adds its own path that ...
8
votes
2answers
2k views
is it possible to make nant run a publish on web application project
is it possible to make nant run a publish on mvc project or a good old web application project
and after the publish make nant FTP the files to the web server
UPDATE: found the solution to the ftp ...
3
votes
1answer
263 views
FailOnError does not work in custom NAnt task
I have custom NAnt task for test purposes and I would like to cancel NAnt build process if the task is failed.
I have created custom ErrorTask:
[NAnt.Core.Attributes.TaskName("errorTask")]
public ...
3
votes
4answers
358 views
Microsoft Ajax Minifier and NAnt
Could someone explain to me how to use the Microsoft Ajax Minifier from a nant-script as a nant-task. I've seen examples of how to use it in Visual Studio but I would like the minification to be done ...
2
votes
2answers
320 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
2answers
275 views
When running NUnit and specifying a category, can all uncategorized tests be included too?
We have several hundred test classes, with a few dozen of them marked with the following attributes:
[TestFixture]
[Explicit]
[Category("IntegrationTests")]
so they will only be run in our ...
2
votes
1answer
99 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
2answers
1k views
How to make NAnt send an email using a real account
First of all, I have already seen this post: nant mail issues but the only answer is not satisfactory (i.e.: doesn't work for me).
I am using NAnt to get latest version of source, upgrade version ...
1
vote
2answers
185 views
MSBuild's XmlMassUpdate task in NAnt?
I have created an MSBuild tasks for building my projects, but for various reasons I wan't to switch to NAnt.
Is there some task that would be equivalent to MSBuild's XmlMassUpdate in NAnt? If ...
0
votes
1answer
130 views
How do I unzip a .zip file in a remote directory using NAnt ftp task?
I have a zip file in my ftp server. Is there any way to unzip it using NAnt?
Here is a sample code of what I would like to do:
<ftp connection="liveAuditToolConnection" remotedir="/remotedir">
...
0
votes
1answer
147 views
How to execute nant build file from another buil file?
I have a big project here where I created some build files which I use in different scenarios including ccnet. So, I have BF1.build and BF2.build
I just want somewhere in BF1 to call/execute the ...
0
votes
2answers
357 views
SVN revert from within a NAnt script?
I thought this would be a simple task, but I'm currently unable to get it to work. There are built in functions such as <svn-update> etc. But not for revert it seems?
I have tried using the ...
0
votes
1answer
399 views
How to update assmebly version info with new build and revision during build?
I have to update the build number in assembly version of assemblyinfo.cs file.
I have written a custom tasks which updates all the assmeblyinfo.cs under a solution before starting build. But when i ...