Tagged Questions
2
votes
2answers
91 views
Implimenting single script build - non-portable dependencies
It seems that a build system best-practice is to have a single script that can build all source and package the releases. See Joel Test #2
How do you account for non-portable dependencies? For ...
2
votes
1answer
652 views
Use msbuild community tasks without installing
In our developer environment, no users have administration rights. As such, it's not possible to install MSBuild.CommunityTasks without getting admin to do so.
What I'm wondering is similar to NAnt, ...
1
vote
1answer
333 views
MSBuild Target BeforeBuild not Executing
I seem to have a situation where code that I put into the BeforeBuild target is not successfully executing.
Here is what I have:
<Target Name="BeforeBuild" >
<Message Text="Before ...
1
vote
2answers
288 views
TFS 2008 Build Script
In TFS 2008, I am trying to modify a build script (TFSBuild.proj). I get the following warning:
The element 'PropertyGroup' in namespace 'http://schemas.microsoft.com/developer/msbuild/2003' has ...
0
votes
1answer
63 views
TFS Build Script Tracing
When debugging a build script, is it possible to get TFS to use a build script that is currently checked out?
For example, I currently have a build script that I'm trying to debug, but in order to ...
0
votes
1answer
136 views
Why does processing multiple individual targets take longer when Nant is directed to process them from a single target?
I have a nant build script that specifies the compilation of various Visual Studio solution files.
<target name="compile.solution1" description="Compiles solution 1">
<msbuild ...