0
votes
2answers
31 views
Can TeamCity’s .NET NUnitaddin process csproj files?
To cut to the chase, can the TeamCity .NET NUnitLauncher process Microsoft csproj files?
I ask this question because of the following.
I have a NANT build script. In this script …
0
votes
1answer
21 views
Tool for Merging Database Scripts
Hey all, I'm wondering if anyone has ever used a tool which will take a series of .sql scripts and a manifest file of some sort and merge them into one big .sql file according to t …
0
votes
1answer
28 views
NAnt or TFS build which is better?
There was a question about Msbuild and NAnt advantages and disadvantages. Now let's see which is better TFS Build(with msbuild) or NAnt. In my opinion NAnt because you can easily m …
1
vote
1answer
28 views
Msbuild and SLN unbindig
I want to unbind my sln file from TFS server and publish it on SVN is there any "easy" option to do this. It's easy to open sln and chose unbind option in Visual Studio, but does a …
1
vote
0answers
22 views
Structure of NAnt build scripts and solution structure on build server
We're in the process of streamlining/automating build, integration and unit testing as well as deployment.
Our software is developed in Visual Studio where we have use both C# and …
2
votes
1answer
20 views
Microsoft Ajax Minifier and NAnt
Hi folks!
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 li …
1
vote
1answer
34 views
What NAnt editors are available?
I'm doing quite a bit of NAnt script writing at the moment and would love to know how I can speed the process up?
I'm currently editing the script in Visual Studio, then going to …
0
votes
1answer
29 views
nant task to create queue with c# code
<project name="aa" default="createqueue" xmlns="http://nant.sf.net/release/0.85/nant.xsd">
<target name="createqueue">
<echo message="started" />
<script l …
0
votes
2answers
49 views
return a value from a script
I am calling a batch file inside a nant script and would like to get the value ( a string of 5 characters) return back to the nant script and continue the nant script.
Please sugge …
1
vote
1answer
33 views
How to make nant complain when a file is missing from a fileset
I have a fileset element in a build file that is defined as:
<fileset id="fileset" basedir=".">
<include name="test.txt"/>
<include name="missing.txt"/>
…
3
votes
3answers
79 views
Deploying code from Subversion Repository to web server without building
At my company, we develop our ASP.NET applications as websites and often just work off of our network drive, which points directly to the files on our development web server. Our c …
1
vote
4answers
81 views
Using the aspnet_compiler.exe to compile .Net Web Apps
I have code in the top layer of my .Net web application that I'd like to unit test, but when my build server compiles the project using the aspnet_compiler.exe, it makes a .dll fil …
0
votes
1answer
20 views
Access is denied to UNC path in nant zip task when nant task is ran by cc.net, runs ok when nant is ran manually from command line
We are running an nant task from cruisecontrol.net. The zip task fails with an error: "Access to path nnnn is denied". The path specified is a UNC path. When we run the same nant t …
0
votes
2answers
33 views
Can I target Silverlight 3.0 using NAnt?
How can I add a silverlight-3.0 target framework to NAnt? I tried modifying the nant.exe.config file, based on silverlight-2.0 profile, but that fails during compilation with CS051 …
1
vote
2answers
71 views
nAnt running .bat with folderPath as parameter
Hello all,
I am trying to setup a nAnt task to run a batch file with 4 parameters. First 2 parameters are folder path, so it required to be wrapped with double quote. Here's my bu …
