active questions tagged nant - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T08:18:40Z http://stackoverflow.com/feeds/tag/nant http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1845427/visual-studio-2008-nant-msbuild-how-we-use-this-for-automate-is-nant-work-fo 0 Visual studio 2008 & nant , msbuild how we use this for automate? Is nant work for vs2008? umeshbuagde 2009-12-04T07:35:54Z 2009-12-04T07:40:17Z <p>I am working on a windows as well as web projects. We currently use Visual Studio to build our solution using visual studio 2008.</p> <p>I would like to move to a more powerful build system such as Nant or MsBuild for atomate.</p> <p>What are the ways &amp; how i do this?</p> <p>Currntly we use Visual source safe &amp; mercurial(hg) as source control How does this all integrate with Source Control?</p> <p>Help me all the ways.. Thanks!</p> http://stackoverflow.com/questions/1836869/is-nant-still-being-actively-developed 3 Is NAnt still being actively developed? Nathan Fisher 2009-12-03T00:24:14Z 2009-12-03T05:43:02Z <p>Is NAnt still being actively developed, or are there other projects that are gaining more momentum in the Automated Build space? </p> <p>Edit:<br> Obviously MSBuild will continue to advance but given all the extra tasks that can be accomplished using NAnt why has development suddenly stopped given that many open source and I assume commercial applications depend on nant.</p> http://stackoverflow.com/questions/1834548/help-in-building-nhibernate-from-source 0 Help in building nhibernate from source mrblah 2009-12-02T17:34:36Z 2009-12-02T23:27:36Z <p>I downloaded nant 0.86 beta which seems to be the latest release.</p> <p>Now running:</p> <p>nant default.build I get this error:</p> <p>detected nant 0.86 beta 1, consider upgrading to a newer version when building for .net 3.5</p> <p>default.build does not exist in this project</p> <p>What am I doing wrong here?</p> <p><b>Update</b> downloaded the nighly build, now running:</p> <p>nant default.build</p> <p>I get this error:</p> <p>[script] scanning assembly "_bzhbyr9" for extensions</p> <p>build failed</p> <p>target 'default.build' does not exist in this project</p> http://stackoverflow.com/questions/1820722/nant-deleting-files-older-than-7-days-old 2 nAnt Deleting files older than 7 days old unknown (google) 2009-11-30T16:06:26Z 2009-11-30T20:47:20Z <p>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?</p> <pre><code>&lt;delete&gt; fileset basedir="${StageIISRoot}/MySite/App_Data/ErrorLog"&gt; &lt;date datetime="${datetime::now() - timespan::from-days(7)}" when="before"/&gt; &lt;include name="*.xml" /&gt; &lt;/fileset&gt; &lt;/delete&gt; </code></pre> http://stackoverflow.com/questions/1804585/how-to-compile-vb-2005-code-containing-default-instances-using-nant 0 How to compile VB 2005 code containing "default instances" using nant Adrian 2009-11-26T16:18:35Z 2009-11-29T18:31:29Z <p>I've got some VB code that's using a <a href="http://www.panopticoncentral.net/archive/2005/01/17/7052.aspx" rel="nofollow">default instance</a> of a Form. It compiles fine within VS but when I try compiling using the nant <strong>vbc</strong> task it throws this error,</p> <blockquote> <p>error BC30469: Reference to a non-shared member requires an object reference.</p> </blockquote> <p>Here's the relevant section of my nant script,</p> <pre><code>&lt;vbc target="exe" output="${basename}.exe" rootnamespace="${basename}"&gt; &lt;imports&gt; &lt;import namespace="Microsoft.VisualBasic"/&gt; .... &lt;/imports&gt; &lt;sources&gt; &lt;include name="**/*.vb" /&gt; &lt;/sources&gt; &lt;references&gt; ..... &lt;/vbc&gt; </code></pre> <p>The VB code looks like this,</p> <pre><code>m_PlanID = MDIParent.PlanDetails.PlanID </code></pre> <p>Any idea what I'm doing wrong?</p> <p>Ideally I'd prefer not to be using default instances at all but that's a job for another day.</p> http://stackoverflow.com/questions/1804215/what-are-solid-nmaven-or-build-server-for-net-alternatives 0 What are solid NMaven or build server for .NET alternatives? Abel 2009-11-26T15:10:14Z 2009-11-26T17:22:10Z <p><a href="http://maven.apache.org/" rel="nofollow">Maven</a> had a long history and is well supported in the Java world. <a href="http://www.codeplex.com/nmaven" rel="nofollow">NMaven</a> 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 world. The project seems close to dead(ish), but maybe I'm wrong.</p> <p>Are there alternatives that, preferably using <a href="http://nant.sourceforge.net/" rel="nofollow">NAnt</a>, are commonly used in favor of NMaven and have similar properties as Maven? What I'm looking for is a good open source automatic build server for .NET, if any exists. Or should I continue using NMaven?</p> http://stackoverflow.com/questions/1800362/accessing-cruisecontrol-net-project-name-in-nant 0 Accessing CruiseControl.NET project name in NAnt Rohit Agarwal 2009-11-25T22:28:14Z 2009-11-25T22:39:16Z <p>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? </p> http://stackoverflow.com/questions/1797828/gallio-and-mbunit-in-nant 0 Gallio and MbUnit in NAnt Brett Rigby 2009-11-25T15:46:20Z 2009-11-25T16:01:25Z <p>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.</p> <p>I can get Gallio.Echo.exe to execute the tests and output an XML file (albeit it does seem to be checking all .dll files in the folder == approx. 6.5MB .xml file!!), but when I try to get NCover to link in also, it goes bang.</p> <p>THEN: I tried to use the NAnt task using instructions <a href="http://blog.andreloker.de/post/2009/03/17/Using-Gallio-with-NCover.aspx" rel="nofollow">from here</a>, such as:</p> <pre><code>&lt;gallio result-property="testrunner.exit-code" application-base-directory="bin/debug" runner-type="NCover" failonerror="false" report-name-format="gallio-MyTestProject" report-types="xml" report-directory="bin/debug"&gt; &lt;runner-property value="NCoverArguments='//q //ea CoverageExcludeAttribute //a MyTestProject.dll'" /&gt; &lt;runner-property value="NCoverCoverageFile='coverage-MyTestProject.xml'" /&gt; &lt;assemblies&gt; &lt;include name="bin/debug" /&gt; &lt;/assemblies&gt; &lt;/gallio&gt; </code></pre> <p>but I get the following error on my command-line:</p> <pre><code>Element Required! There must be a least one 'files' element for &lt;gallio ... /&gt;. </code></pre> <p>I have tried to specify the .dll file that I'd like to check, but it still comes up with this message. Any suggestions are most appreciated!</p> http://stackoverflow.com/questions/1797119/running-nunit-tests-in-parallell-using-nant 0 Running NUnit Tests in parallell using NANT SharePoint Newbie 2009-11-25T14:05:55Z 2009-11-25T14:05:55Z <p>Hi,</p> <p>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?</p> <p>Kind regards,</p> http://stackoverflow.com/questions/1743806/teamcity-nunit-test-result-visualisation 0 TeamCity NUnit test result visualisation ildev 2009-11-16T17:57:24Z 2009-11-16T18:15:57Z <p>Hi,</p> <p>Is there any way to produce visual results of NUnit tests from within TeamCity's "Tests" tab, currently my NAnt script outputs an .xml file of the results using the following task:</p> <pre><code>&lt;nunit2 haltonfailure="false" failonerror="false" verbose="true"&gt; &lt;formatter type="Xml" extension=".xml" outputdir="${tests.output.dir}" usefile="true" /&gt; &lt;test assemblyname="${assemblies.output.dir}/TestApp.Tests.dll" /&gt; &lt;/nunit2&gt; </code></pre> <p>TIA</p> http://stackoverflow.com/questions/1733890/build-process-what-to-use 7 Build Process - What to use? Avi 2009-11-14T10:19:27Z 2009-11-14T16:28:34Z <p>I'm considering writing my own delivery code using PowerShell and/or C#, maybe shelling to NAnt or MSBuild.</p> <ol> <li>Why should I <strong><em>not</em></strong> go this way? Is this such a really hard endeavor compared to using NAnt or MSBuild? </li> <li>Any good, modern book that can help?</li> <li>Any better ideas?</li> </ol> <p><hr></p> <p>Background (P.S. This is a religious issue for some. No insult intended):</p> <p>One person shop, multiple exploratory projects. As most of us - Now windows and ASP.Net. Considering mobile and cloud.</p> <p>I've started meddling with NAnt, and have tried to follow <a href="http://rads.stackoverflow.com/amzn/click/1590594851" rel="nofollow">Expert .Net Delivery Using NAnt and CruiseControl.Net</a>. The whole issue of "delivery" was put on ice and now it's time to "defrost" it. However, I'm not sure which way to go. From what I've learned:</p> <p>NAnt is showing its age. It's clumsy: it's much harder to understand and maintain than a modern, OO language such as C#. Even after I've followed the book it seems strange to work in an arcane environment where what you want executed is XML, and looping and inheritance are (as far as I remember before the "ice age") are hard to impossible.</p> <p>MSBuid is MS specific. I'm not even sure if it would support non MS environment. Team foundation server is expensive. </p> <p>Even so, they somehow both seem to provide value because on my SO search I haven't heard anybody using their own custom software. However, I don't understand why not use C# and simply call NAnt and/or MSBuild tasks as needed.</p> <p><a href="http://stackoverflow.com/questions/10634/should-i-switch-from-nant-to-msbuild">SO - NAnt Vs. MSBuild</a></p> <blockquote> <p><em>My advice is just the opposite - Avoid MSBuild like the plague. NANT is far far easier to set up your build to do automatic testing, deploy to multiple production environments, integrate with cruisecontrol for an entry environment, integrate with source control. We've gone through so much pain with TFS/MSBuild (Using TFSDeployer, custom powershell scripts, etc) to get it to do what we were able to do with NANT out of the box. Don't waste your time.</em></p> </blockquote> <p><a href="http://stackoverflow.com/questions/141435/advantages-of-using-msbuild-or-nant-versus-running-devenv-exe-from-command-line">SO - NAnt vs. scripts</a>: </p> <blockquote> <p><em>there's much more to building a product than just compiling it. Tasks such as creating installs, updating version numbers, creating escrows, distributing the final packages, etc. can be much easier because of what these tools (and their extensions) provide. While you could do all this with regular scripts, using NAnt or MSBuild give you a solid framework for doing all this</em></p> </blockquote> http://stackoverflow.com/questions/1680580/nant-build-c-project-with-linq-to-sql-classes 0 NAnt build c# project with Linq to SQL Classes Richard B 2009-11-05T13:26:53Z 2009-11-13T20:07:40Z <p>I'm in the midst, after many hours of researching how to automate the build process, writing a nAnt build script for a project that works with COM interop (not by choice... just the only way to integrate with the host package).</p> <p>I'm trying to figure out, one of my dll's happens to contain a Linq to SQL class in it, and I'd like to, if at all possible, not call MSBuild or use the Visual Studio environment to build the dll. Has anyone figured out how to correctly compile a Linq to SQL Classes type dll using NAnt and csc tasks exclusively?</p> <p>I know there was a gentleman that figured out how you do it for the Entity Data Model, and I'm hoping that someone has something similar to that for the Linq to SQL classes.</p> <p><hr></p> <pre><code> &lt;ItemGroup&gt; &lt;Compile Include="CardSettings.cs"&gt; &lt;SubType&gt;Form&lt;/SubType&gt; &lt;/Compile&gt; &lt;Compile Include="CardSettings.Designer.cs"&gt; &lt;DependentUpon&gt;CardSettings.cs&lt;/DependentUpon&gt; &lt;/Compile&gt; &lt;Compile Include="GiftCard.designer.cs"&gt; &lt;AutoGen&gt;True&lt;/AutoGen&gt; &lt;DesignTime&gt;True&lt;/DesignTime&gt; &lt;DependentUpon&gt;GiftCard.dbml&lt;/DependentUpon&gt; &lt;/Compile&gt; &lt;Compile Include="Properties\AssemblyInfo.cs" /&gt; &lt;Compile Include="Properties\Settings.Designer.cs"&gt; &lt;AutoGen&gt;True&lt;/AutoGen&gt; &lt;DesignTimeSharedInput&gt;True&lt;/DesignTimeSharedInput&gt; &lt;DependentUpon&gt;Settings.settings&lt;/DependentUpon&gt; &lt;/Compile&gt; &lt;Compile Include="Provider.cs" /&gt; &lt;/ItemGroup&gt; &lt;ItemGroup&gt; &lt;EmbeddedResource Include="CardSettings.resx"&gt; &lt;DependentUpon&gt;CardSettings.cs&lt;/DependentUpon&gt; &lt;/EmbeddedResource&gt; &lt;None Include="GiftCard.dbml.layout"&gt; &lt;DependentUpon&gt;GiftCard.dbml&lt;/DependentUpon&gt; &lt;/None&gt; &lt;/ItemGroup&gt; &lt;ItemGroup&gt; &lt;None Include="app.config" /&gt; &lt;None Include="GiftCard.dbml"&gt; &lt;Generator&gt;MSLinqToSQLGenerator&lt;/Generator&gt; &lt;LastGenOutput&gt;GiftCard.designer.cs&lt;/LastGenOutput&gt; &lt;SubType&gt;Designer&lt;/SubType&gt; &lt;/None&gt; &lt;None Include="Properties\Settings.settings"&gt; &lt;Generator&gt;SettingsSingleFileGenerator&lt;/Generator&gt; &lt;LastGenOutput&gt;Settings.Designer.cs&lt;/LastGenOutput&gt; &lt;/None&gt; &lt;/ItemGroup&gt; </code></pre> <p>Ok... so I finally opened my CSProject file and took a look at how the XML is built for the MSBuild program... I see that they are running a custom task (MSLinqToSQLGenerator) that seems to be rendering the Linq XML declarations out in a specific way.</p> <p>Has anyone been able to call the generator from nAnt, or am I stuck calling MSBuild?</p> <p>If I'm stuck calling MSBuild, I think I'm just going to convert over 100% to MSBuild going forward, and then slowly convert existing projects over... what a shame.</p> http://stackoverflow.com/questions/1730621/building-net-applications-without-visual-studio 2 building .net applications without Visual Studio Casey 2009-11-13T17:07:54Z 2009-11-13T17:37:52Z <p>I'm interested to hear about people working with building .net applications using MSBuild, NAnt or similar tools. What are you using, why are you using it instead of the VS IDE?</p> <p>I like to use different editors quite a bit and I'm thinking of changing over to using something that can keep me IDE free.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1605478/running-a-program-on-a-remote-machine-as-part-of-continuous-integration 0 Running a program on a remote machine as part of continuous integration pauloya 2009-10-22T07:02:23Z 2009-11-13T16:55:22Z <p>We use TeamCity, nant and psexec to run a command on a remote machine as part of the release packaging. Everything works fine when I run the nant from the console but when running from teamcity psexec hangs (freezes) 50% of the times.<br /> I looked through many forums and there seems to be workarounds that increase complexity of the call and involve loosing the output and the errorcode of the command.<br /> Does anyone know an easier way to run a command on a remote machine?<br /> I don't mind setting up some application on the remote machine, like a telnet server, any advices on what to do?<br /> Thanks</p> http://stackoverflow.com/questions/1670442/structure-of-nant-build-scripts-and-solution-structure-on-build-server 2 Structure of NAnt build scripts and solution structure on build server llykke 2009-11-03T22:05:25Z 2009-11-13T16:34:48Z <p>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 VB.NET in our projects. A single project can be contained within multiple solutions (i.e. Utils project is used in both ProductA and ProductB solutions)</p> <p>For historical reasons our code repository isn't as well structured as one could have hoped for. E.g. Utils project might be located under ProductA solution (because that's were it was first used) but it was later deemed useful for productB development and merely just included into the solution of productB (but still located in a subdirectory of productA).</p> <p>I would like to use continous integration testing and have setup a CC.NET build server where I intend to use NAnt for creating the actual builds.</p> <p><strong>Question 1:</strong> How should I structure my builds on the buildserver? Should I instruct CC.NET to retrieve all the projects for productB into a single library e.g. a file structure similar to </p> <pre><code>-ProductB --Utils --BetterUtils --Data </code></pre> <p>or should I opt for a filestructure similar to this</p> <pre><code>-ProductA --Utils -ProductB --BetterUtils --Data </code></pre> <p>and then just have the NAnt build scripts handle the references? Our references in VS doesn't match the actual location in the code repository so it's not possible today to just check-out productB solution and build it straight away (unfortunately). I hope this question makes sense?</p> <p><strong>Question 2:</strong> Is it better to check out all the source code located in different projects into a single file folder (whilst retaining some kind of structure) and then build every thing at once or have multiple projects in CC.NET and then let the CC.NET server handle dependencies? Example: Should I have a seperate project in CC.NET for monitoring the automated build/test of Utils project when it's never released on it's own? Or should I just build/test it whilst building it as part of ProductB?</p> <p>I hope the above makes sense and that you can provide me with some arguments for using either option. We're nowhere near an ideal source code repository structure and I would prefer if I can resolve the lack of repository structure on the build server instead of having to clean up the structure of our repository. Switching away from VSS is (unfortunately) not an option.</p> <p>Right now our build consists of either deploying via VS clickonce or pressing F5 so just getting the build automated would be a huge step up for us.</p> <p>Thanks </p> http://stackoverflow.com/questions/1112208/target-resolvereferences-is-not-found 0 Target ResolveReferences is not found Nasser 2009-07-10T22:01:32Z 2009-11-13T11:00:06Z <p>I am trying to publish an ASP.Net website through NAnt/MSBuild calls. MSBuild is called using the following arguments:</p> <pre><code>&lt;arg value="SubsManager.sln" /&gt; &lt;arg value="/t:ResolveReferences" /&gt; &lt;arg value="/t:_CopyWebApplication" /&gt; &lt;arg value="/p:Configuration=Release" /&gt; &lt;arg value="/p:OutDir=..\builda\Release\Web\bin\" /&gt; &lt;arg value="/p:WebProjectOutputDir=..\Publish\" /&gt; &lt;arg value="/logger:C:\Program Files\CruiseControl.NET\server\ThoughtWorks.CruiseControl.MsBuild.dll" /&gt; &lt;arg value="/verbosity:detailed" /&gt; </code></pre> <p>When I try the build under cruise control I get the following error: error MSB4057: The target "ResolveReferences" does not exist in the project.</p> <p>I would appreciate any help on this issue!</p> http://stackoverflow.com/questions/1538068/build-merge-module-without-devenv-from-vdproj 2 Build merge module without Devenv from .vdproj tobsen 2009-10-08T14:11:21Z 2009-11-12T23:16:24Z <p>I read quit a few Stackoverflow Questions about building mergemodules via commandline but all of them were accepted when either somebody suggested to use devenv for compilation or use Dark to create wix-files from existing msi files.</p> <p>Considering the following:</p> <ul> <li>VisualStudio isn't installed on the buildserver I have to use.</li> <li>I am using nant + msbuild to compile the solutions</li> <li>I would like to compile mergemodules from .vdroj (because Visualstudio detects dependencys automatically)</li> <li>and create a msi setup from multiple mergemodules</li> </ul> <p>... how can I build the merge modules from commandline without devenv and without loosing the comfort of automated dependencie resolving for mergemodules in visualstudio? Maybe there is a nanttask for it I haven't found?</p> http://stackoverflow.com/questions/1649869/what-nant-editors-are-available 1 What NAnt editors are available? NickGPS 2009-10-30T13:41:20Z 2009-11-12T20:19:30Z <p>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? </p> <p>I'm currently editing the script in Visual Studio, then going to the command line to test the output. I like how Visual Studio can be configured to autocomplete your NAnt commands (via xsd) but I'm still testing my scripts on the command line. </p> <p>Are there any tools that bring all of that together? I use Notepad++ quite a bit but would switch allegiance to another editor that has editing and command line functionality built in. </p> <p>I guess what I'm looking for is something like NAnt Builder (<a href="http://www.nantbuilder.com" rel="nofollow">http://www.nantbuilder.com</a>) but I don't really want to spend that sort of money when I have my free current alternative.</p> http://stackoverflow.com/questions/76870/is-there-a-way-to-dynamically-load-a-properties-file-in-nant 5 Is there a way to dynamically load a properties file in NAnt? WildJoe 2008-09-16T20:47:26Z 2009-11-11T10:20:45Z <p>I want to load a different properties file based upon one variable.</p> <p>Basically, if doing a dev build use this properties file, if doing a test build use this other properties file, and if doing a production build use yet a third properties file.</p> http://stackoverflow.com/questions/1713318/nant-reading-file-in-reverse-order 0 Nant reading file in reverse order Priya 2009-11-11T05:51:51Z 2009-11-11T05:51:51Z <p>Hi All, </p> <p>I have a text file. I need to read the content of the file from the reverse order (from EOF). Please let me know how I can achieve it using Nant script.</p> <p>Thanks, Priya.R</p> http://stackoverflow.com/questions/1701603/nant-sqlcmd-v-switch-and-spaces-in-nant-property-fails-build-with-invalid-argum 0 Nant, SqlCmd -v switch and spaces in nant property fails build with invalid argument judek.mp 2009-11-09T15:06:21Z 2009-11-09T16:18:43Z <p>I have a nant script that ... 1. takes the content of disc-file 2. assigns that content to a nant property 3. and then calls sqlcmd with a -v passing in that property containg the content of the disc file 4. inside the sql script the contents of the file should be used by a stored proc. </p> <p>The problem is that when the content of the file contains a space the nant build stops with a "Invalid argument" issue</p> <p>Anone know a way around this ?</p> <p>The top part of the nant script is ...</p> <pre><code>&lt;?xml version="1.0"?&gt; &lt;!-- the main name of this project --&gt; &lt;project name="Hops" default="all"&gt; &lt;!-- BuildHistory --&gt; &lt;property name="buildHistoryContents" value="" /&gt; &lt;xmlpeek xpath="/" file="BuildNotes.xml" property="buildHistoryContents"&gt;&lt;/xmlpeek&gt; &lt;!-- &lt;echo message="${buildHistoryContents}" /&gt; --&gt; &lt;!-- ***************** --&gt; &lt;target name="ExecSql"&gt; &lt;echo message="running sql script : ${SqlBuildScriptsDir}${sqlBuildFileName}" /&gt; &lt;exec program="${SqlCmd}" commandline="-S ${SqlServerInstanceName} -E -d HBus -i ${SqlBuildScriptsDir}${sqlBuildFileName} -v vSchemaVersion=${buildHistoryContents} " /&gt; &lt;/target&gt; </code></pre> <p>The sql script contains the line ...</p> <pre><code>exec lsp_SchemaVersionUpsert '1.4', N'$(vSchemaVersion)' </code></pre> <p>A disc file content that works is ...</p> <pre><code>&lt;BuildNotes&gt; &lt;Note&gt; &lt;buildVer&gt;HasNotSpace&lt;/buildVer&gt; &lt;/Note&gt; &lt;/BuildNotes&gt; </code></pre> <p>A disc file content that does not works is ...</p> <pre><code>&lt;BuildNotes&gt; &lt;Note&gt; &lt;buildVer&gt;Has Space&lt;/buildVer&gt; &lt;/Note&gt; &lt;/BuildNotes&gt; </code></pre> <p>The use of all this is pass xml build comments to a table logging version build history for the db schema.</p> <p>Does anyone know an alternate method or know a way through this ?</p> <p>The next part, added after Phillip Keeley correcty solved first part (the <em>SPACE Problem</em>) I simplified the original task to simplify the question.</p> <p>There is also a <em>Quoted Attribute Problem</em> ; xml quoted attributes cause the nant build to fail with "Invalid Argument".</p> <p>eg this will cause nant to choke but removing the dt attribute will enable the nant build to succeed ...</p> <pre><code>&lt;BuildNotes&gt; &lt;Note&gt; &lt;buildVer&gt;1.4&lt;/buildVer&gt; &lt;dateStarted&gt;09/24/2009 11:25:42&lt;/dateStarted&gt; &lt;Item dt="20091008" &gt;SpacesAndNoQuotedAttribute&lt;/Item&gt; &lt;/Note&gt; &lt;/BuildNotes&gt; </code></pre> <p>Any ideas ... ?</p> http://stackoverflow.com/questions/1014678/ccnet-triggers-build-but-succeds-even-i-check-in-bad-code-to-svn 0 CCNet triggers build, but succeds even i check in bad code to svn Kiran 2009-06-18T19:20:34Z 2009-11-08T06:30:56Z <p>HI, I have set up CruiseControl for .NET with SVN as my source control and using NAnt build script. When i manually build the visual studio solution i get the errors, which is correct coz i have some bad code. After i checked in the code to svn, CCNet triggered the build, but the result shows as SUCCESS. Please find the config and build files below:</p> <p><strong>NAnt build file:</strong></p> <pre><code>&lt;project name="MyServiceClient" default="build"&gt; &lt;target name="init" depends="clean" /&gt; &lt;target name="clean" /&gt; &lt;target name="checkout"/&gt; &lt;target name="compile"/&gt; &lt;!--&lt;target name="deploy"/&gt; &lt;target name="test"/&gt; &lt;target name="inspect"/&gt;--&gt; &lt;target name="build" depends="init, checkout"&gt; &lt;call target="compile" /&gt; &lt;!-- &lt;call target="inspect" /&gt; &lt;call target="test" /&gt; &lt;call target="deploy" /&gt;--&gt; &lt;/target&gt; &lt;/project&gt; </code></pre> <h2><strong>ccnet.config</strong></h2> <pre><code>&lt;cruisecontrol&gt; &lt;project name="MyServiceClient"&gt; &lt;sourcecontrol type="svn"&gt; &lt;trunkUrl&gt;https://dev-wks28.dev.va.root:8443/svn/test/trunk/MyServiceClient&lt;/trunkUrl&gt; &lt;executable&gt;C:/Program Files/VisualSVN Server/bin/svn.exe&lt;/executable&gt; &lt;workingDirectory&gt;C:\test\MyServiceClient&lt;/workingDirectory&gt; &lt;username&gt;kpedda&lt;/username&gt; &lt;password&gt;Password1&lt;/password&gt; &lt;autoGetSource&gt;true&lt;/autoGetSource&gt; &lt;/sourcecontrol&gt; &lt;workingDirectory&gt;C:\test\MyServiceClient&lt;/workingDirectory&gt; &lt;triggers&gt; &lt;intervalTrigger seconds="90" buildCondition="IfModificationExists" /&gt; &lt;scheduleTrigger time="10:00" buildCondition="ForceBuild" /&gt; &lt;/triggers&gt; &lt;tasks&gt; &lt;nant&gt; &lt;executable&gt;C:/Program Files/NAnt/bin/nant.exe&lt;/executable&gt; &lt;baseDirectory&gt;C:/Apps&lt;/baseDirectory&gt; &lt;!--&lt;workingDirectory&gt;C:/test/MyServiceClient&lt;/workingDirectory&gt;--&gt; &lt;!--&lt;projectFile&gt;MyServiceClient.sln&lt;/projectFile&gt;--&gt; &lt;buildFile&gt;default.build&lt;/buildFile&gt; &lt;targetList&gt; &lt;target&gt;build&lt;/target&gt; &lt;/targetList&gt; &lt;/nant&gt; &lt;/tasks&gt; &lt;publishers&gt; &lt;xmllogger/&gt; &lt;/publishers&gt; </code></pre> <p></p> <p>Can any please help me in this regard...</p> <p>Thanks in advance. KP</p> http://stackoverflow.com/questions/1680025/can-teamcitys-net-nunitaddin-process-csproj-files 0 Can TeamCity's .NET NUnitaddin process csproj files? Fresh 2009-11-05T11:41:33Z 2009-11-06T12:05:13Z <p>To cut to the chase, can the TeamCity .NET NUnitLauncher process Microsoft csproj files?</p> <p>I ask this question because of the following.</p> <p>I have a NANT build script. In this script I have a number of tests which use nunit-console.exe (which ships with NUnit v2.5.2).</p> <p>An example of a test in my Nant build file is:</p> <pre><code>&lt;target name="x.Commons.Tests" depends="xCore"&gt; &lt;exec program="${nunit-console.exe}" commandline="${nunit-console.args} Core\x.Commons.Tests\x.Commons.Tests.csproj" failonerror="${nunit-console.failonerror}"/&gt; &lt;/target&gt; </code></pre> <p>FailOnError is set to false, and the nunit-console.args is set to '/nologo'.</p> <p>When I run these tests on my local machine I get test output. However when I instruct TeamCity to build my NAnt build file, and instruct it to process the test targets I get no test output to TeamCity. I can see in the log that nunit-colsole.exe is producing test result output but Im not seeing this in the TeamCity dashboard.</p> <p>After reading around I found some articles indicating that extra steps are required to get this input into TeamCity. Hence I modified my test to:</p> <pre><code> &lt;target name="x.Configuration.Tests" depends="xCore"&gt; &lt;mkdir dir="C:\Tools\NUnit\bin\net-2.0\addins"/&gt; &lt;copy file="${teamcity.dotnet.nunitaddin}-2.5.0.dll" todir="C:\Tools\NUnit\bin\net-2.0\addins"/&gt; &lt;copy file="${teamcity.dotnet.nunitaddin}-2.5.0.pdb" todir="C:\Tools\NUnit\bin\net-2.0\addins"/&gt; &lt;exec program="${nunit-console.exe}" commandline="${nunit-console.args} Core\x.Configuration.Tests\x.Configuration.Tests.csproj" failonerror="${nunit-console.failonerror}"/&gt; &lt;/target&gt; </code></pre> <p>Note that I also made sure the tag contains an entry of 'addins'.</p> <p>However, as before I can see that the tests are working as the nunit-console.exe displays its results in the log, but Im getting no output to TeamCity.</p> <p>An answer to my question, or any help would be appreciated!</p> http://stackoverflow.com/questions/142225/is-there-a-dynamic-language-based-net-build-tool 5 Is there a dynamic language based .NET build tool? Alan Hensel 2008-09-26T21:54:59Z 2009-11-05T16:39:46Z <p>I might be starting a new project in .NET soon, and would prefer not to use an XML-based build tool like Nant or MSBuild. I like Rake, but I'm thinking it may be better to have something based on a .NET dynamic language (such as Boo), similar in spirit to gant or BuildR for Java. Is there such a thing for .NET? If not, what do you recommend?</p> http://stackoverflow.com/questions/1508856/can-i-target-silverlight-3-0-using-nant 1 Can I target Silverlight 3.0 using NAnt? skolima 2009-10-02T10:49:59Z 2009-11-04T19:44:37Z <p>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 <code>CS0518: Type "System.Object" not defined or imported</code> [error message translated from Polish]. Also, the silverlight-2.0 target does not seem to set "SILVERIGHT" conditional compilation define like Visual Studio does, which complicates writing multi-target libraries.</p> <p>Does anyone here build mixed target solutions (with libraries for both full .NET framework and Silverlight)?</p> http://stackoverflow.com/questions/1676016/weird-nant-behaviour 0 Weird Nant behaviour vikasde 2009-11-04T19:23:36Z 2009-11-04T19:23:36Z <p>I have the following task in my build file:</p> <pre><code>&lt;target name="cruise" depends="compile, test.project.InternalApplicationsWeb, precompileWeb, svninfo, createPackages" /&gt; </code></pre> <p>Now this simply takes my project, compiles it first with MSBuild, merges the files using aspnet_merge and places them into the webdeployment folder, gets the svn info and finally packages the files into a rar archive. </p> <p>The problem is that, when I package the files, then I do not see any of the following files being archived/added, which is fine.</p> <ul> <li>*.compiled</li> <li>*.resharper</li> <li>*.proj</li> </ul> <p>Now when it comes to extracting the files, I can now see the *.compiled, *.resharper and *.proj files. I have no idea how the archive suddenly contains them. I even verified the nant output from cruisecontrol and do not see those files being added. Is there anything that I am not seeing here? </p> http://stackoverflow.com/questions/1674722/tool-for-merging-database-scripts 0 Tool for Merging Database Scripts JoshReedSchramm 2009-11-04T15:53:50Z 2009-11-04T15:56:25Z <p>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 the order defined in the manifest? </p> <p>I'm trying to integrate database change packaging into our automated build and I could write a tool for this but I figured it might already exist. </p> <p>We use Nant and CruiseControl.NET if there are any solutions specific to that. </p> <p>Thanks. </p> http://stackoverflow.com/questions/1158901/nant-output-problem-when-viewing-via-cc-net 0 Nant output problem when viewing via cc.net Sean Chambers 2009-07-21T12:31:33Z 2009-11-04T08:00:04Z <p>When viewing nant buildresults in CC.Net the output doesn't have any line breaks and is very difficult to read. ie:</p> <pre><code>&lt;buildresults project=""&gt;&lt;message level="Info"&gt;&lt;![CDATA[Buildfile: file:///D:/Builds/MyProject/Working/Root/BuildScripts/MyProject.build]]&gt;&lt;/message&gt;&lt;message level="Info"&gt;&lt;![CDATA[Target framework: Microsoft .NET Framework 3.5]]&gt;&lt;/message&gt; </code></pre> <p>I would imagine that CRLF would be applied after each element. It makes the output difficult to read. Has anyone else come across this before?</p> http://stackoverflow.com/questions/1650560/msbuild-and-sln-unbindig 1 Msbuild and SLN unbindig Leszek Wachowicz 2009-10-30T15:37:59Z 2009-11-03T19:36:46Z <p>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 any one ever tried to automate this process? There is a solution to edit sln file using xmlpoke and deleting binding information, but is it safe?</p> http://stackoverflow.com/questions/1668115/nant-or-tfs-build-which-is-better 0 NAnt or TFS build which is better? Leszek Wachowicz 2009-11-03T15:38:58Z 2009-11-03T15:52:24Z <p>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 move the building environment in few seconds to another machine (depends on copying files), also it's easier to manage, much faster to debug and it's not integrated with Team Foundation Server, what do You think?</p>