active questions tagged build-script - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T03:47:51Zhttp://stackoverflow.com/feeds/tag/build-scripthttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1142675/why-does-processing-multiple-individual-targets-take-longer-when-nant-is-directed0Why does processing multiple individual targets take longer when Nant is directed to process them from a single target?mezoid2009-07-17T11:20:28Z2009-09-10T12:00:01Z
<p>I have a nant build script that specifies the compilation of various Visual Studio solution files.</p>
<pre><code><target name="compile.solution1" description="Compiles solution 1">
<msbuild project="${src.dir}\Solution1.sln" verbosity="${build.verbosity}">
<property name="Configuration" value="${build.config}" />
<property name="OutputPath" value="${build.fullpath}/${prefix.sol1}" />
<property name="ReferencePath" value="${assembly.dir}" />
</msbuild>
</target>
</code></pre>
<p>I have multiple solutions specified in targets compile.solution1, compile.solution2, compile.solution3...compile.solution7</p>
<p>I have another target that specifies that the whole bunch of solutions are to be compiled:</p>
<pre><code><target name="compile" depends="compile.solution1, compile.solution2,
compile.solution3, compile.solution4, compile.solution5, compile.solution6,
compile.solution7" description="Compiles all targets" />
</code></pre>
<p>When I time how long it it takes to execute the target "compile" and compare it to the sum of the time it tasks to execute each of the individual compile.solutionX targets I find that the "compile" target takes 30 seconds longer.</p>
<p>I don't understand why this is the case? In my mind the "compile" target should act as a for-loop and the difference between it and executing each one individually should be minimal.</p>
<p>Does anyone know if more goes on in the background in Nant when processing multiple solutions defined in a single target?</p>
<p>Sorry for the horrible title of the question....I just didn't know how to phrase it.</p>
http://stackoverflow.com/questions/1371565/teamcity-4-5-not-recognizing-trycatch-element-in-nant-script0TeamCity 4.5 not recognizing trycatch element in nant scriptmezoid2009-09-03T05:32:47Z2009-09-03T05:41:25Z
<p>Our team recently upgraded to TeamCity 4.5.4 but we're having trouble with TeamCity running our nant build scripts.</p>
<p>We now get an error message saying: <code>Invalid element <trycatch>. Unknown task or datatype.</code></p>
<p>We haven't changed our build script during or after the upgrade so I'm wondering what, if any, change do we need to make to get this working again.</p>
<p>The part of the script that is causing problems is as follows:</p>
<pre><code><trycatch>
<try>
<ncover>
<snip>this does ncover stuff</snip>
</ncover>
</try>
<catch property="failure">
<echo message="At least one test failed: ${failure}"/>
<property name="fail.message" value="${failure}"/>
<property name="test.failed" value="true"/>
</catch>
</trycatch>
</code></pre>
<p>Has anyone else experienced this issue?</p>
http://stackoverflow.com/questions/507064/build-failed-executing-nant0build failed executing nantChris Conway2009-02-03T13:30:54Z2009-03-16T01:36:11Z
<p>Hi all. I've got a nant build script (.86 beta) and it is telling me this:</p>
<blockquote>
<p>BUILD FAILED</p>
<p>Failed to initialize the 'Microsoft
.Net Framework 2.0' target
framework.</p>
<p>The process cannot access the file
'C:\Users\cconway\AppData\Local\Temp\tmp25E3.tmp'
because it is being used by another
process.</p>
</blockquote>
<p>This file does not even exist on my machine. Does anyone know the cause of this? Rebooting seems to allow me to run the script once successfully, but every time after that I get this message (though the name of the tmp file changes per reboot).</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/388344/how-do-i-determine-what-target-is-calling-my-current-target-in-nant1How do I determine what target is calling my current target in Nant?mezoid2008-12-23T07:11:22Z2009-01-05T00:41:35Z
<p>I'm not even sure if my question is worded right...but I'll try to explain what I'm struggling with at the moment. I'm not highly experienced with this so forgive me if my explanations aren't the best....and I'm also trying to simplify my build script for the purposes of this question so if I'm missing some detail let me know...</p>
<p>I am modifying a Nant build script to run some unit tests. I have different targets for locally run tests and tests to be run on team city.</p>
<pre><code><target name="run-unit-tests">
<property name="test.executable" value="tools\nunit\nunit-console.exe"/>
<call target="do-unit-tests"/>
</target>
<target name="run-unit-tests-teamcity">
<property name="test.executable" value="${teamcity.dotnet.nunitlauncher}"/>
<call target="do-unit-tests"/>
</target>
</code></pre>
<p>in the target <strong>do-unit-tests</strong> I set up which test assemblies are run by setting a property and calling for NCover to do a code coverage run as follows:</p>
<pre><code><target name="do-unit-test">
<property name="test.assemblies" value="MyProject.dll">
<call target="do-unit-test-coverage" />
</target>
<target name="do-unit-test-coverage">
<ncover <!--snip -->
commandLineArgs="${test.args}"
<!--snip-->
</ncover>
</target>
</code></pre>
<p>As you can see in the ncover part I need a property called <em>"test.args"</em>. This property depends on <em>"test.assemblies"</em></p>
<p>ie: <code><property name="test.args" value="${test.assemblies} <!--snip -->" /></code></p>
<p>test.args needs to be <em>set up differently between the locally run unit test and the one on team city</em>...so I'm trying to figure out how to set this up.</p>
<p>if i put the property for test.args in "do-unit-test" after the property "test.assemblies" I can't specify one test.args if do-unit-test is called by run-unit-tests and another for run-unit-tests-teamcity.</p>
<p>I've been trying to do something like the following in "do-unit-test":</p>
<pre><code><if test="${target::exists('run-unit-tests-teamcity')}">
<property name="test.args" value="..." />
</if>
</code></pre>
<p>but obviously that doesn't work because the target will always exist.</p>
<p>What I'd like then is to test if my current target <strong>do-unit-test</strong> has been called by <strong>run-unit-tests-teamcity</strong></p>
<p>Is this possible? I can't see it in the Nant documentation? Since its not there it either means that it will be a feature in the future or that I'm not understanding how things are specified in a Nant build script.</p>
<p>Any help would be appreciated on this.</p>
http://stackoverflow.com/questions/230872/visual-studio-post-build-script-error-calling-gacutil0visual studio post-build script error calling gacutil.josh2008-10-23T18:27:35Z2008-10-23T19:43:33Z
<p>I'm on vista, with VS2005 running as admin. Both vs2005 and vs2008 are installed. If I explicitly use the path to gacutil, it works, but not if I only call gacutil like this: </p>
<pre><code>if NOT $(ConfigurationName) == Release gacutil /f /i "$(TargetPath)"
</code></pre>
<p>I would just update the post-build script, but I've been asked to leave it alone. It's a project for a sister company. The path to gacutil is in Visual Studio environment variables, so it should be able to find it. (Tools -> Options -> Projects and Solutions -> VC++ Directories) </p>
<p>Is there some way to tweak visual studio or windows environment variable to get the above post-build script to work? I need to it to build, because it's a dependency of a project I need to code.</p>
<p>TIA, -j</p>