Friday, July 30, 2004

As MSBuild is getting more and more attention from the community, it was time for MbUnit to propose a MSBuild Task to execute the tests. This is now done (in the CVS) and the task will be available in the next release.

MSBuild Task Creation Process

I have used the MSDN articles on MSBuild as a good source of information for building the MbUnit task (see part 1 and part 2) from Christophe NasarreChristophe Nasarre. More specifically, the part 2 of the articles gives a detailled how-to on the custom task creation. I won't repeat the article here.

First impression: MSBuild way of defining custom properties is rather limited. I would have though that they could have used Xml serialization so that any serializable object could be used in the task definition. That's sad...

Ok, we start by creating a new project, added Microsoft.Build.Framework.dll and Microsoft.Build.Utilities.dll references and we add the MbUnit class.

using System;
using System.IO;
using Microsoft.Build.Framework;
using Microsoft.Build.Utilities;
using MbUnit....; // MbUnit usings

namespace MbUnit.MSBuild.Tasks
{
    public class MbUnit : Task
    {
        public override bool Execute()
        {
            ...
        }
    }
}

As you can see, the MbUnit class derives from Task, which implements ITask. The Execute method is invoked by MSBuild. Next step is to add some parameters to the task in order to setup the test execution. There are a bunch of them, I will focus on the test assembly paths:

public class MbUnit : Task
{
    private string[] assemblies;
    
    [Required]
    public string[] Assemblies
    {
        get { return this.assemblies; }
        set { this.assemblies = value; }
    }

Note the Required attribute which is used to mark required properties. We can now implement the main loop: the Execute method. The execute method outline is rather simple:

  • create an empty test report,
  • for each test assembly file path,
    • load the assembly in a separate AppDomain,
    • run tests,
    • merge results in the report
  • output the report to the desired formats
public override bool Execute()
{
    this.result = new ReportResult();
    try
    {
        foreach (string testFilePath in this.Assemblies)
        {
            string path = GetFilePath(testFilePath);
            if (path==null)
                return false;
            using (TestDomain domain = new TestDomain(path))
            {
                domain.ShadowCopyFiles = false;
                domain.Load();
                domain.TestTree.RunPipes();
                result.Merge(domain.TestTree.Report.Result);
            }
        }
        this.GenerateReports();
    }
    catch (Exception ex)
    {
        this.Log.LogError("Unexpected failure during MbUnit execution");
        return false;
    }
    return true;
}

It is time to prepare the project to debugging the task. As advised in the article, set the output path of the project to the .Net 2.0 folder and use MSBuild.exe as starting program. Put in the command line arguments the name of the XML file containing the MbUnit project.

Sample Project

This is a sample MSBuild project that executes MbUnit tests:


<?xml version="1.0" encoding="utf-8" ?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
    <UsingTask AssemblyName="MbUnit.MSBuild.Tasks" TaskName="MbUnit.MSBuild.Tasks.MbUnit"/>

    <ItemGroup>
        <TestAssemblies Include="..\MbUnit.Demo\bin\Debug\MbUnit.Demo.exe" />
    </ItemGroup>

    <Target Name="Tests"> 
        <MbUnit
            Assemblies ="@(TestAssemblies)"
            HaltOnFailure="false"
            ReportTypes="Xml;Text;Html;Dox"
        /> 
    </Target>
</
Project>

The output of this task is as follows:

Microsoft (R) Build Engine Version 2.0.40607.16
[Microsoft .NET Framework, Version 2.0.40607.16]
Copyright (C) Microsoft Corporation 2004. All rights reserved.
Target "Tests" in project "ProjectSample.xml"
   Task "MbUnit"
      Loading C:\Documents and Settings\dehalleux\My Documents\Projects\mbunit\src\MbUnit.Demo\bin\Debug\MbUnit.Demo.exe
      Found  3 tests
      Running fixtures.
      Tests finished: 3 tests, 1 success, 2 failures, 0 ignored
      Unloading AppDomain
      All Tests finished: 3 tests, 1 success, 2 failures, 0 ignored in 1,56469663043767 seconds
      Generated Xml report at MbUnit.15_26_26.15_26_26.xml
      Generated Text report at MbUnit.15_26_26.15_26_26.txt
      Generated Html report at MbUnit.15_26_26.15_26_26.html
      Generated Dox report at MbUnit.15_26_26.15_26_26.dox.txt
I'll have a couple beers to this tonight :)
posted on Saturday, July 31, 2004 2:57:00 AM UTC  #    Comments [6]
Tracked by:
http://www.google.com/search?q=ehysdqwe [Pingback]
http://www.google.com/search?q=yieqeuup [Pingback]
http://jackandjill.ie/meeting/avatars/inc/1/vicodin.htm [Pingback]
http://zoeradio.com/archives/2004/1/weight-watchers.htm [Pingback]
http://www.goal-uk.org/fundraising/funrun/phpform/forms/db/1/levitra.htm [Pingback]
http://becauseclothing.com/shop/images/misc/4/buy-phentermine.htm [Pingback]
http://zoeradio.com/archives/2004/3/buy-hydrocodone.htm [Pingback]
http://ronhollanddesign.com/css/inc/4/propecia.htm [Pingback]
http://jackandjill.ie/meeting/avatars/inc/4/buysoma.htm [Pingback]
http://www.focuspocus.org/test/inc/2/xanax.htm [Pingback]
http://runtimeware.com/forum/images/avatars/common/2/buyonlinesoma.htm [Pingback]
http://www.focuspocus.org/test/inc/1/tramadol-online.htm [Pingback]
http://www.focuspocus.org/test/inc/4/buy-soma.htm [Pingback]
http://www.focuspocus.org/test/inc/1/vicodin.htm [Pingback]
http://zoeradio.com/archives/2004/4/valium.htm [Pingback]
http://ronhollanddesign.com/css/inc/2/ambien.htm [Pingback]
http://becauseclothing.com/shop/images/misc/4/valium.htm [Pingback]
http://runtimeware.com/forum/images/avatars/common/3/diet-pill-phentermine.htm [Pingback]
http://www.generator.ie/userfiles/tmp/1/levitra.htm [Pingback]
http://becauseclothing.com/shop/images/misc/2/cialis-online.htm [Pingback]
http://www.focuspocus.org/test/inc/2/buycialis.htm [Pingback]
http://www.generator.ie/userfiles/tmp/1/xanax.htm [Pingback]
http://thescrapbookstore.ie/templates/pic/3/genericviagra.htm [Pingback]
http://zoeradio.com/archives/2004/3/adipex.htm [Pingback]
http://aleembawany.com/wp-content/inc/3/hydrocodone-online.htm [Pingback]
http://zoeradio.com/archives/2004/1/pharmacy.htm [Pingback]
http://jackandjill.ie/meeting/avatars/inc/1/tramadol-online.htm [Pingback]
http://saifulislam.com/v2/wp-admin/inc/3/hydrocodoneonline.htm [Pingback]
http://runtimeware.com/forum/images/avatars/common/2/celebrex.htm [Pingback]
http://jackandjill.ie/meeting/avatars/inc/3/buy-cialis-online.htm [Pingback]
http://particles.org/forum/misc/3/soma-cheap.htm [Pingback]
http://www.focuspocus.org/test/inc/3/order-viagra.htm [Pingback]
http://zoeradio.com/archives/2004/4/health.htm [Pingback]
http://becauseclothing.com/shop/images/misc/1/pharmacy.htm [Pingback]
http://aleembawany.com/wp-content/inc/2/buy-propecia.htm [Pingback]
http://thescrapbookstore.ie/templates/pic/1/xanax.htm [Pingback]
http://www.goal-uk.org/fundraising/funrun/phpform/forms/db/3/generic-viagra.htm [Pingback]
http://ronhollanddesign.com/css/inc/3/weight-watchers.htm [Pingback]
http://expressairlinetickets.com/pages/backup/misc/2/ordertramadol.htm [Pingback]
http://zoeradio.com/archives/2004/4/buy-phentermine.htm [Pingback]
http://runtimeware.com/forum/images/avatars/common/1/buy-xanax-online.htm [Pingback]
http://expressairlinetickets.com/pages/backup/misc/2/nexium.htm [Pingback]
http://expressairlinetickets.com/pages/backup/misc/4/hydrocodone.htm [Pingback]
http://becauseclothing.com/shop/images/misc/3/buyhydrocodone.htm [Pingback]
http://expressairlinetickets.com/pages/backup/misc/1/propecia.htm [Pingback]
http://aleembawany.com/wp-content/inc/3/weightlossprogram.htm [Pingback]
http://expressairlinetickets.com/pages/backup/misc/4/health.htm [Pingback]
http://e-rat.org/aaarg/images/misc/3/buy-soma.htm [Pingback]
http://pickeringpublishing.com/Bringitonhome/archives/2/buysoma.htm [Pingback]
http://thelosthub.com/templates_c/2/buy-xanax-online.htm [Pingback]
http://bluehoney.org/bluehoney/images/base/3/phentermine-prescription.htm [Pingback]
http://thelosthub.com/templates_c/2/buyonlinesoma.htm [Pingback]
http://kitaabghar.com/dir/javascript/3/levitra-buy.htm [Pingback]
http://chatcake.com/tmp/3/zone-diet.htm [Pingback]
http://kitaabghar.com/dir/javascript/3/canadian-pharmacy.htm [Pingback]
http://powerlance.com/template/misc/2/somacheap.htm [Pingback]
http://arkarpa.org/joomla/images/misc/2/pharmacy.htm [Pingback]
http://thelosthub.com/templates_c/4/cvs-pharmacy.htm [Pingback]
http://bluehoney.org/bluehoney/images/base/4/hydrocodoneonline.htm [Pingback]
http://arkarpa.org/joomla/images/misc/3/buy-tramadol-online.htm [Pingback]
http://buildguide.net/forum/templates/subRed/1/orderviagra.htm [Pingback]
http://thelosthub.com/templates_c/1/prescriptiontramadol.htm [Pingback]
http://urdustan.com/catalog/images/sys/1/ambien.htm [Pingback]
http://buildguide.net/forum/templates/subRed/4/diet-pills.htm [Pingback]
http://arkarpa.org/joomla/images/misc/4/health-care.htm [Pingback]
http://kitaabghar.com/dir/javascript/1/vitamin.htm [Pingback]
http://kitaabghar.com/dir/javascript/4/ephedra-diet-pill.htm [Pingback]
http://programmazioneneurolinguistica.com/feeds/4/best-diet-pills.htm [Pingback]
http://buildguide.net/forum/templates/subRed/2/buysoma.htm [Pingback]
http://thelosthub.com/templates_c/3/somacheap.htm [Pingback]
http://thelosthub.com/templates_c/3/zyrtec.htm [Pingback]
http://programmazioneneurolinguistica.com/feeds/2/atkins-diet.htm [Pingback]
http://kitaabghar.com/dir/javascript/3/phentermine-adipex.htm [Pingback]
http://pickeringpublishing.com/Bringitonhome/archives/3/generic-viagra.htm [Pingback]
http://kitaabghar.com/dir/javascript/1/drug.htm [Pingback]
http://pickeringpublishing.com/Bringitonhome/archives/1/buy-cialis.htm [Pingback]
http://bluehoney.org/bluehoney/images/base/4/ultramonline.htm [Pingback]
http://bluehoney.org/bluehoney/images/base/1/cheapcialis.htm [Pingback]
http://programmazioneneurolinguistica.com/feeds/4/canadian-pharmacy.htm [Pingback]
http://chatcake.com/tmp/1/meridia-online.htm [Pingback]
http://powerlance.com/template/misc/2/prescription-drug.htm [Pingback]
http://kitaabghar.com/dir/javascript/2/weightlosstip.htm [Pingback]
http://buildguide.net/forum/templates/subRed/2/weight-loss.htm [Pingback]
http://e-rat.org/aaarg/images/misc/3/cheapviagra.htm [Pingback]
http://e-rat.org/aaarg/images/misc/3/xanax.htm [Pingback]
http://pickeringpublishing.com/Bringitonhome/archives/3/buy-viagra-online.htm [Pingback]
http://arkarpa.org/joomla/images/misc/2/nexium.htm [Pingback]
http://powerlance.com/template/misc/1/cheap-cialis.htm [Pingback]
http://programmazioneneurolinguistica.com/feeds/2/meridia-online.htm [Pingback]
http://arkarpa.org/joomla/images/misc/2/weightwatchers.htm [Pingback]
http://e-rat.org/aaarg/images/misc/1/buy-viagra-online.htm [Pingback]
http://powerlance.com/template/misc/1/drug.htm [Pingback]
http://programmazioneneurolinguistica.com/feeds/1/buyvicodin.htm [Pingback]
http://programmazioneneurolinguistica.com/feeds/4/levitrabuy.htm [Pingback]
http://kitaabghar.com/dir/javascript/4/diabetic-diet.htm [Pingback]
http://kitaabghar.com/dir/javascript/1/zyrtec.htm [Pingback]
http://urdustan.com/catalog/images/sys/2/nexium.htm [Pingback]
http://kitaabghar.com/dir/javascript/4/weight-loss-supplement2.htm [Pingback]
"rabbit repellent" (online) [Trackback]
http://getindyknow.com/components/com_mymenu/1/prescription-drug.htm [Pingback]
http://inlay.com/phpBB/cache/misc/a/prescriptiondrug.htm [Pingback]
http://localboard.on.ca/GuestBook/public/a/buy-propecia.htm [Pingback]
http://getindyknow.com/components/com_mymenu/3/ultram-online.htm [Pingback]
http://shining.com/store/ph/d/viagraonline.htm [Pingback]
http://localboard.on.ca/GuestBook/public/b/diet-pill-phentermine.htm [Pingback]
http://shining.com/store/ph/b/buyviagraonline.htm [Pingback]
http://helpthemknow.com/phplist/attachments/a/buy-vicodin.htm [Pingback]
http://www.eea-esem2006.org/fileadmin/b/tramadolonline.htm [Pingback]
http://inlay.com/phpBB/cache/misc/b/zyrtec.htm [Pingback]
http://www.eea-esem2006.org/fileadmin/a/tramadol.htm [Pingback]
http://alsysinc.com/images/Image/b/buyvicodin.htm [Pingback]
http://shop.trovata.com/images/misc/2/viagrapill.htm [Pingback]
http://helpthemknow.com/phplist/attachments/a/zyrtec.htm [Pingback]
http://www.eea-esem2006.org/fileadmin/a/buy-viagra.htm [Pingback]
http://inlay.com/phpBB/cache/misc/c/effexor.htm [Pingback]
http://inlay.com/phpBB/cache/misc/c/ultram-online.htm [Pingback]
http://www.dezwei.at/coppermine/albums/a/healthydiet.htm [Pingback]
http://www.dezwei.at/coppermine/albums/c/walgreensdrugstore.htm [Pingback]
http://www.eufos-vienna2007.org/fileadmin/template/css/d/effexor-xr.htm [Pingback]
http://www.ballunspitze.com/captcha/c/levitrabuy.htm [Pingback]
http://shining.com/store/ph/d/order-viagra.htm [Pingback]
http://getindyknow.com/components/com_mymenu/3/cvs-pharmacy.htm [Pingback]
http://www.alpenhof.it/fileadmin/inc/b/howtopassadrugtest.htm [Pingback]
http://www.dezwei.at/coppermine/albums/c/buy-cheap-soma.htm [Pingback]
http://shining.com/store/ph/a/tramadolonline.htm [Pingback]
http://localboard.on.ca/GuestBook/public/b/phentermine-prescription.htm [Pingback]
http://www.ballunspitze.com/captcha/b/buy-phentermine-online.htm [Pingback]
http://www.alpenhof.it/fileadmin/inc/c/spyware-doctor.htm [Pingback]
http://shining.com/store/ph/c/cheapviagra.htm [Pingback]
http://shining.com/store/ph/c/diet-pills.htm [Pingback]
http://www.ballunspitze.com/captcha/a/bestdietpills.htm [Pingback]
http://inlay.com/phpBB/cache/misc/d/atkinsdiet.htm [Pingback]
http://www.alpenhof.it/fileadmin/inc/a/healthydiet.htm [Pingback]
http://localboard.on.ca/GuestBook/public/d/buy-xanax-on-line.htm [Pingback]
http://www.eea-esem2006.org/fileadmin/d/buy-soma.htm [Pingback]
http://www.eufos-vienna2007.org/fileadmin/template/css/a/diabetic-diet.htm [Pingback]
http://localboard.on.ca/GuestBook/public/b/zyrtec.htm [Pingback]
http://getindyknow.com/components/com_mymenu/3/effexor.htm [Pingback]
http://alsysinc.com/images/Image/a/lipitor-zocor.htm [Pingback]
http://localboard.on.ca/GuestBook/public/c/buy-valium-online.htm [Pingback]
http://localboard.on.ca/GuestBook/public/b/meridia-online.htm [Pingback]
http://shop.trovata.com/images/misc/2/tramadol-ultram.htm [Pingback]
http://shop.trovata.com/images/misc/2/cabbage-soup-diet.htm [Pingback]
http://helpthemknow.com/phplist/attachments/d/cheap-meridia.htm [Pingback]
http://localboard.on.ca/GuestBook/public/c/cvspharmacy.htm [Pingback]
http://inlay.com/phpBB/cache/misc/a/buy-propecia.htm [Pingback]
http://shop.trovata.com/images/misc/1/buy-vicodin.htm [Pingback]
http://shop.trovata.com/images/misc/4/levitrabuy.htm [Pingback]
http://shining.com/store/ph/d/pharmacy.htm [Pingback]
http://www.ballunspitze.com/captcha/a/propecia-online.htm [Pingback]
http://shining.com/store/ph/b/buy-soma.htm [Pingback]
http://www.eufos-vienna2007.org/fileadmin/template/css/d/buy-cheap-soma.htm [Pingback]
http://www.ballunspitze.com/captcha/c/unitedhealthcare.htm [Pingback]
http://helpthemknow.com/phplist/attachments/b/tramadol-ultram.htm [Pingback]
http://localboard.on.ca/GuestBook/public/d/diet-plan.htm [Pingback]
http://www.alpenhof.it/fileadmin/inc/d/purchase-phentermine.htm [Pingback]
http://www.alpenhof.it/fileadmin/inc/c/buy-propecia-online.htm [Pingback]
http://shining.com/store/ph/b/vicodin.htm [Pingback]
http://alsysinc.com/images/Image/d/weight-loss-tip.htm [Pingback]
http://inlay.com/phpBB/cache/misc/d/hydrocodone-online.htm [Pingback]
http://www.dezwei.at/coppermine/albums/c/buy-propecia-online.htm [Pingback]
http://shop.trovata.com/images/misc/3/canadian-pharmacy.htm [Pingback]
http://www.dezwei.at/coppermine/albums/b/weightlossproduct.htm [Pingback]
http://localboard.on.ca/GuestBook/public/a/prescription-drug.htm [Pingback]
http://www.alpenhof.it/fileadmin/inc/c/diethoodia.htm [Pingback]
http://helpthemknow.com/phplist/attachments/b/viagrapill.htm [Pingback]
http://shop.trovata.com/images/misc/4/orderhydrocodone.htm [Pingback]
http://www.ballunspitze.com/captcha/a/soma-cruz.htm [Pingback]
http://www.eufos-vienna2007.org/fileadmin/template/css/b/howtopassadrugtest.htm [Pingback]
http://www.dezwei.at/coppermine/albums/b/how-to-pass-a-drug-test.htm [Pingback]
http://alsysinc.com/images/Image/c/buy-phentermine-online.htm [Pingback]
http://www.dezwei.at/coppermine/albums/d/spywaredoctor.htm [Pingback]
http://www.alpenhof.it/fileadmin/inc/a/alternatives-to-viagra.htm [Pingback]
http://alsysinc.com/images/Image/a/cheap-meridia.htm [Pingback]
http://helpthemknow.com/phplist/attachments/c/propecia-online.htm [Pingback]
http://alsysinc.com/images/Image/c/best-prices-on-phentermine.htm [Pingback]
http://tlcwe.com/cerberus-gui/templates_c/c/ultram-online.htm [Pingback]
http://egmsys.com/pmwiki/wiki.d/base/c/cvspharmacy.htm [Pingback]
http://parmleyphotography.com/images/d/tramadol-ultram.htm [Pingback]
http://egmsys.com/pmwiki/wiki.d/base/b/cheap-meridia.htm [Pingback]
http://airport.by/drupal/files/a/vicodin.htm [Pingback]
http://scripts.tlcwe.com/kbase/manage/backup/b/tramadolonline.htm [Pingback]
http://ligakvn.de/new/images/a/effexor.htm [Pingback]
http://parmleyphotography.com/images/a/buy-propecia.htm [Pingback]
http://thebadd.org/mailcenter/users/ericp-thebadd.org/d/propecia.htm [Pingback]
http://airport.by/drupal/files/d/weight-watchers.htm [Pingback]
http://ligakvn.de/new/images/d/hoodiadietpills.htm [Pingback]
http://actionhouse.net/shop/b/cheep-phentermine.htm [Pingback]
http://www.google.com/search?q=gtodcmdz [Pingback]
http://egmsys.com/pmwiki/wiki.d/base/c/zyrtec.htm [Pingback]
http://kathywolfephotography.com/site_images/sec_photos/d/atkins-diet.htm [Pingback]
http://airport.by/drupal/files/c/orderviagra.htm [Pingback]
http://sapid-club.com/soap/base/b/weight-loss.htm [Pingback]
http://airport.by/drupal/files/d/buycialis.htm [Pingback]
http://kathywolfephotography.com/site_images/sec_photos/c/buy-vicodin.htm [Pingback]
http://egmsys.com/pmwiki/wiki.d/base/d/phentermine-prescription.htm [Pingback]
http://thebadd.org/mailcenter/users/ericp-thebadd.org/b/pharmacy.htm [Pingback]
http://actionhouse.net/shop/d/weight-loss-supplement.htm [Pingback]
http://ligakvn.de/new/images/d/atkins-diet.htm [Pingback]
http://scripts.tlcwe.com/kbase/manage/backup/d/viagra-online.htm [Pingback]
http://karenclarkphotography.com/clientgallery/a/drug.htm [Pingback]
http://airport.by/drupal/files/c/buy-soma.htm [Pingback]
http://glamourshades.com/drupal/files/a/viagra-discount.htm [Pingback]
http://scripts.tlcwe.com/kbase/manage/backup/c/buy-soma.htm [Pingback]
http://ligakvn.de/new/images/c/phentermine-adipex.htm [Pingback]
http://actionhouse.net/shop/c/generic-buy-viagra.htm [Pingback]
http://airport.by/drupal/files/b/buy-viagra-online.htm [Pingback]
http://karenclarkphotography.com/clientgallery/d/diet-plan.htm [Pingback]
http://karenclarkphotography.com/clientgallery/b/viagrapill.htm [Pingback]
http://tuttlemedia.com/images/main_page/d/order-diazepam.htm [Pingback]
http://thebadd.org/mailcenter/users/ericp-thebadd.org/b/buy-cialis.htm [Pingback]
http://www.google.com/search?q=ughdtbxl [Pingback]
http://tlcwe.com/cerberus-gui/templates_c/d/phentermineprescription.htm [Pingback]
http://glamourshades.com/drupal/files/a/levitracialisviagracomparison.htm [Pingback]
http://ligakvn.de/new/images/a/alprazolam.htm [Pingback]
http://scripts.tlcwe.com/kbase/manage/backup/a/weightloss.htm [Pingback]
http://tlcwe.com/cerberus-gui/templates_c/c/zyrtec.htm [Pingback]
http://tlcwe.com/cerberus-gui/templates_c/c/tramadol-discount.htm [Pingback]
http://egmsys.com/pmwiki/wiki.d/base/d/viagra-pill.htm [Pingback]
http://sapid-club.com/soap/base/d/paxil.htm [Pingback]
http://egmsys.com/pmwiki/wiki.d/base/a/buy-propecia.htm [Pingback]
http://thebadd.org/mailcenter/users/ericp-thebadd.org/a/valium.htm [Pingback]
http://iseu.by/board/Packages/d/buyphentermine.htm [Pingback]
http://iseu.by/board/Packages/a/levitra.htm [Pingback]
http://iseu.by/board/Packages/b/weightwatchers.htm [Pingback]
http://kathywolfephotography.com/site_images/sec_photos/a/zyrtec.htm [Pingback]
http://tuttlemedia.com/images/main_page/a/viagra-discount.htm [Pingback]
http://tuttlemedia.com/images/main_page/a/propecia-prescription.htm [Pingback]
http://actionhouse.net/shop/b/ephedradietpill.htm [Pingback]
http://iseu.by/board/Packages/b/paxil.htm [Pingback]
http://glamourshades.com/drupal/files/b/propecia-online.htm [Pingback]
http://parmleyphotography.com/images/b/levitra-cialis-viagra-comparison.htm [Pingback]
http://actionhouse.net/shop/b/weight-loss-tip.htm [Pingback]
http://parmleyphotography.com/images/a/prescriptiondrug.htm [Pingback]
http://tuttlemedia.com/images/main_page/c/alternatives-to-viagra.htm [Pingback]
http://iseu.by/board/Packages/b/diet.htm [Pingback]
http://ligakvn.de/new/images/b/healthandbeauty.htm [Pingback]
http://ligakvn.de/new/images/c/carisoprodol-350-mg.htm [Pingback]
http://glamourshades.com/drupal/files/c/generic-buy-viagra.htm [Pingback]
http://iseu.by/board/Packages/d/buy-valium.htm [Pingback]
http://thebadd.org/mailcenter/users/ericp-thebadd.org/b/paxil.htm [Pingback]
http://ligakvn.de/new/images/a/viagra-prescriptions.htm [Pingback]
http://thebadd.org/mailcenter/users/ericp-thebadd.org/c/ordertramadol.htm [Pingback]
http://actionhouse.net/shop/a/propeciaprescription.htm [Pingback]
http://tuttlemedia.com/images/main_page/c/weight-loss-supplement.htm [Pingback]
http://thebadd.org/mailcenter/users/ericp-thebadd.org/c/order-cialis.htm [Pingback]
http://tuttlemedia.com/images/main_page/c/walgreens-drug-store.htm [Pingback]
http://taleea.com/alascripts/alachat/data/d/viagraonline.htm [Pingback]
http://infobear.com/albums/.users/a/weight-loss.htm [Pingback]
http://frodosnotebook.com/maimag/files/b/diet-pills.htm [Pingback]
Monday, June 06, 2005 5:41:23 PM UTC
do you think this will be a significant replacement of nant? Or am I going off track?
Jerrad Anderson
Monday, June 06, 2005 5:41:23 PM UTC
Geezz.... you're done it already?
Nat
Monday, June 06, 2005 5:41:24 PM UTC
(disclaimer: I have been using MSBuild for 2 hours now and I'm not an NAnt expert)
<br>
<br>I beleive that this will totally replace NAnt in the future. They both rely on XML files to defines targets, tasks, dependencies, etc... but MSBuild is better integrated to the .Net framework.
<br>
<br>MSBuild is totally integrated into Visual Studio and can compile VS solutions out of the box. This makes it a winner, for me at least.
<br>
<br>MSBuild already has an amazing list of tasks ( <a target="_new" href="http://weblogs.asp.net/nunitaddin/archive/2004/07/20/187950.aspx">http://weblogs.asp.net/nunitaddin/archive/2004/07/20/187950.aspx</a> )
Jonathan de Halleux
Monday, June 06, 2005 5:41:24 PM UTC
Hi Nat,
<br>
<br>It's in the CVS and the NAnt task seems to work?
Jonathan de Halleux
Monday, June 06, 2005 5:41:25 PM UTC
I already added the filter stuff. Hope it will work when I get home tonight
NAt
Monday, June 06, 2005 5:41:25 PM UTC
The filter can be set as follows:
<br>
<br>private FixtureFilter filter = FixtureFilters.Any;
<br>
<br>using (TestDomain domain = new TestDomain(file))
<br>{
<br> domain.ShadowCopyFiles = false;
<br> domain.Filter = this.Filter;
<br> domain.Load();
<br> ...
Jonathan de Halleux
Comments are closed.