<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://www.codeplex.com/rss.xsl"?><rss version="2.0"><channel><title>NAntCollections Wiki &amp; Documentation Rss Feed</title><link>http://www.codeplex.com/NAntCollections/Wiki/View.aspx?title=Home</link><description>NAntCollections Wiki Rss Description</description><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/NAntCollections/Wiki/View.aspx?title=Home&amp;version=10</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;What is NAntCollections?&lt;/b&gt;&lt;br /&gt;NAntCollections is a library of NAnt tasks and functions which add the ability to use collections &amp;#40;namely lists and dictionaries&amp;#41; within NAnt scripts.
&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Why?&lt;/b&gt;&lt;br /&gt;NAnt and NAntContrib provide an excellent list of features to create very&lt;br /&gt;robust build scripts.  However, out of the box there is no way to maintain&lt;br /&gt;a collection of values except by maintaining a delimited list in a property.&lt;br /&gt;This is adequate for simple cases but when it is necessary to maintain large&lt;br /&gt;collections or collections of collections this quickly becomes unwieldy.&lt;br /&gt;The goal of NAntCollections is to bring proper collections to NAnt.&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Example&lt;/b&gt;&lt;br /&gt;A quick example would be something like this:&lt;br /&gt;&lt;pre&gt;
  &amp;lt;dict-add dictionary=&amp;quot;MyDict&amp;quot; key=&amp;quot;FirstKey&amp;quot; value=&amp;quot;FirstValue&amp;quot;/&amp;gt;
  &amp;lt;dict-add dictionary=&amp;quot;MyDict&amp;quot; key=&amp;quot;SecondKey&amp;quot; value=&amp;quot;SecondValue&amp;quot;/&amp;gt;
  &amp;lt;dict-foreach dictionary=&amp;quot;MyDict&amp;quot; key-property=&amp;quot;_key&amp;quot;&amp;gt;
    &amp;lt;echo message=&amp;quot;The value of the key ${_key} is ${dict::get-value('MyDict',_key)}&amp;quot;/&amp;gt;
  &amp;lt;/dict-foreach&amp;gt;
&lt;/pre&gt; &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Building NAntCollections&lt;/b&gt;&lt;br /&gt;NAntCollections is coded against the .NET Framework version 2.0.&lt;br /&gt;NAntCollections can be built using Visual Studio 2005. It can also&lt;br /&gt;be built using the NAntCollections.build script included with the&lt;br /&gt;source code.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Using NAntCollections within NAnt scripts&lt;/b&gt;&lt;br /&gt;In order for a NAnt script to be able to use the tasks and functions defined&lt;br /&gt;in this library, NAnt must be able to locate and scan the compiled DLL.&lt;br /&gt;Details on the various way to have NAnt find the library can be found in the&lt;br /&gt;NAnt documentation here under &amp;quot;Loading custom extensions&amp;quot;:&lt;br /&gt;&lt;a href="http://nant.sourceforge.net/release/latest/help/fundamentals/tasks.html" class="externalLink"&gt;http://nant.sourceforge.net/release/latest/help/fundamentals/tasks.html&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;Copyright &amp;#169; 2007 Justin Kohlhepp&lt;br /&gt;
&lt;/div&gt;</description><author>jkohlhepp</author><pubDate>Sun, 08 Jul 2007 18:51:28 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20070708065128P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/NAntCollections/Wiki/View.aspx?title=Home&amp;version=9</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;What is NAntCollections?&lt;/b&gt;&lt;br /&gt;NAntCollections is a library of NAnt tasks and functions which add the ability to use collections &amp;#40;namely lists and dictionaries&amp;#41; within NAnt scripts.
&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Why?&lt;/b&gt;&lt;br /&gt;NAnt and NAntContrib provide an excellent list of features to create very&lt;br /&gt;robust build scripts.  However, out of the box there is no way to maintain&lt;br /&gt;a collection of values except by maintaining a delimited list in a property.&lt;br /&gt;This is adequate for simple cases but when it is necessary to maintain large&lt;br /&gt;collections or collections of collections this quickly becomes unwieldy.&lt;br /&gt;The goal of NAntCollections is to bring proper collections to NAnt.&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Example&lt;/b&gt;&lt;br /&gt;A quick example would be something like this:&lt;br /&gt;&lt;pre&gt;
  &amp;lt;dict-add dictionary=&amp;quot;MyDict&amp;quot; key=&amp;quot;FirstKey&amp;quot; value=&amp;quot;FirstValue&amp;quot;/&amp;gt;
  &amp;lt;dict-add dictionary=&amp;quot;MyDict&amp;quot; key=&amp;quot;SecondKey&amp;quot; value=&amp;quot;SecondValue&amp;quot;/&amp;gt;
  &amp;lt;dict-foreach dictionary=&amp;quot;MyDict&amp;quot; key-property=&amp;quot;_key&amp;quot;&amp;gt;
    &amp;lt;echo message=&amp;quot;The value of the key ${_key} is ${dict::get-value('MyDict',_key)}&amp;quot;/&amp;gt;
  &amp;lt;/dict-foreach&amp;gt;
&lt;/pre&gt; &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Building NAntCollections&lt;/b&gt;&lt;br /&gt;NAntCollections is coded against the .NET Framework version 2.0. Currently&lt;br /&gt;NAntCollections is most easily built using Visual Studio 2005. Eventually&lt;br /&gt;build scripts will be created for a more formal build process, and prebuilt&lt;br /&gt;releases will be created at major milestones.&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Using NAntCollections within NAnt scripts&lt;/b&gt;&lt;br /&gt;In order for a NAnt script to be able to use the tasks and functions defined&lt;br /&gt;in this library, NAnt must be able to locate and scan the compiled DLL.&lt;br /&gt;Details on the various way to have NAnt find the library can be found in the&lt;br /&gt;NAnt documentation here under &amp;quot;Loading custom extensions&amp;quot;:&lt;br /&gt;&lt;a href="http://nant.sourceforge.net/release/latest/help/fundamentals/tasks.html" class="externalLink"&gt;http://nant.sourceforge.net/release/latest/help/fundamentals/tasks.html&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;Copyright &amp;#169; 2007 Justin Kohlhepp&lt;br /&gt;
&lt;/div&gt;</description><author>jkohlhepp</author><pubDate>Sun, 01 Jul 2007 19:50:50 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20070701075050P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/NAntCollections/Wiki/View.aspx?title=Home&amp;version=8</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;What is NAntCollections?&lt;/b&gt;&lt;br /&gt;NAntCollections is a library of NAnt tasks and functions which add the ability to use collections &amp;#40;namely lists and dictionaries&amp;#41; within NAnt scripts.
&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Why?&lt;/b&gt;&lt;br /&gt;NAnt and NAntContrib provide an excellent list of features to create very&lt;br /&gt;robust build scripts.  However, out of the box there is no way to maintain&lt;br /&gt;a collection of values except by maintaining a delimited list in a property.&lt;br /&gt;This is adequate for simple cases but when it is necessary to maintain large&lt;br /&gt;collections or collections of collections this quickly becomes unwieldy.&lt;br /&gt;The goal of NAntCollections is to bring proper collections to NAnt.&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Example&lt;/b&gt;&lt;br /&gt;A quick example would be something like this:&lt;br /&gt;&lt;pre&gt;
  &amp;lt;dict-add dictionary=&amp;quot;MyDict&amp;quot; key=&amp;quot;FirstKey&amp;quot; value=&amp;quot;FirstValue&amp;quot;/&amp;gt;
  &amp;lt;dict-add dictionary=&amp;quot;MyDict&amp;quot; key=&amp;quot;SecondKey&amp;quot; value=&amp;quot;SecondValue&amp;quot;/&amp;gt;
  &amp;lt;echo message=&amp;quot;The value of the first key is ${dict::get-value('MyDict','FirstKey')}&amp;quot;/&amp;gt;
&lt;/pre&gt; &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Building NAntCollections&lt;/b&gt;&lt;br /&gt;NAntCollections is coded against the .NET Framework version 2.0. Currently&lt;br /&gt;NAntCollections is most easily built using Visual Studio 2005. Eventually&lt;br /&gt;build scripts will be created for a more formal build process, and prebuilt&lt;br /&gt;releases will be created at major milestones.&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Using NAntCollections within NAnt scripts&lt;/b&gt;&lt;br /&gt;In order for a NAnt script to be able to use the tasks and functions defined&lt;br /&gt;in this library, NAnt must be able to locate and scan the compiled DLL.&lt;br /&gt;Details on the various way to have NAnt find the library can be found in the&lt;br /&gt;NAnt documentation here under &amp;quot;Loading custom extensions&amp;quot;:&lt;br /&gt;&lt;a href="http://nant.sourceforge.net/release/latest/help/fundamentals/tasks.html" class="externalLink"&gt;http://nant.sourceforge.net/release/latest/help/fundamentals/tasks.html&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;Copyright &amp;#169; 2007 Justin Kohlhepp&lt;br /&gt;
&lt;/div&gt;</description><author>jkohlhepp</author><pubDate>Thu, 28 Jun 2007 02:34:51 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20070628023451A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/NAntCollections/Wiki/View.aspx?title=Home&amp;version=7</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;What is NAntCollections?&lt;/b&gt;&lt;br /&gt;NAntCollections is a library of NAnt tasks and functions which add the ability to use collections &amp;#40;namely lists and dictionaries&amp;#41; within NAnt scripts.
&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Why?&lt;/b&gt;&lt;br /&gt;NAnt and NAntContrib provide an excellent list of features to create very&lt;br /&gt;robust build scripts.  However, out of the box there is no way to maintain&lt;br /&gt;a collection of values except by maintaining a delimited list in a property.&lt;br /&gt;This is adequate for simple cases but when it is necessary to maintain large&lt;br /&gt;collections or collections of collections this quickly becomes unwieldy.&lt;br /&gt;The goal of NAntCollections is to bring proper collections to NAnt.&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Example&lt;/b&gt;&lt;br /&gt;A quick example would be something like this:&lt;br /&gt;&lt;pre&gt;
  &amp;lt;dict-add dictionary=&amp;quot;MyDict&amp;quot; key=&amp;quot;FirstKey&amp;quot; value=&amp;quot;FirstValue&amp;quot;/&amp;gt;
  &amp;lt;dict-add dictionary=&amp;quot;MyDict&amp;quot; key=&amp;quot;SecondKey&amp;quot; value=&amp;quot;SecondValue&amp;quot;/&amp;gt;
  &amp;lt;echo message=&amp;quot;The value of the first key is ${dict::get-value('MyDict','FirstKey')}&amp;quot;/&amp;gt;
&lt;/pre&gt; &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Building NAntCollections&lt;/b&gt;&lt;br /&gt;NAntCollections is coded against the .NET Framework version 2.0. Currently&lt;br /&gt;NAntCollections is most easily built using Visual Studio 2005. Eventually&lt;br /&gt;build scripts will be created for a more formal build process, and prebuilt&lt;br /&gt;releases will be created at major milestones.&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Using NAntCollections within NAnt scripts&lt;/b&gt;&lt;br /&gt;In order for a NAnt script to be able to use the tasks and functions defined&lt;br /&gt;in this library, NAnt must be able to locate and scan the compiled DLL.&lt;br /&gt;Details on the various way to have NAnt find the library can be found in the&lt;br /&gt;NAnt documentation here under &amp;quot;Loading custom extensions&amp;quot;:&lt;br /&gt;http://nant.sourceforge.net/release/latest/help/fundamentals/tasks.html&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;Copyright &amp;#169; 2007 Justin Kohlhepp&lt;br /&gt;
&lt;/div&gt;</description><author>jkohlhepp</author><pubDate>Thu, 28 Jun 2007 02:32:57 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20070628023257A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/NAntCollections/Wiki/View.aspx?title=Home&amp;version=6</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;What is NAntCollections?&lt;/b&gt;&lt;br /&gt;NAntCollections is a library of NAnt tasks and functions which add the ability to use collections &amp;#40;namely lists and dictionaries&amp;#41; within NAnt scripts.
&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Why?&lt;/b&gt;&lt;br /&gt;NAnt and NAntContrib provide an excellent list of features to create very&lt;br /&gt;robust build scripts.  However, out of the box there is no way to maintain&lt;br /&gt;a collection of values except by maintaining a delimited list in a property.&lt;br /&gt;This is adequate for simple cases but when it is necessary to maintain large&lt;br /&gt;collections or collections of collections this quickly becomes unwieldy.&lt;br /&gt;The goal of NAntCollections is to bring proper collections to NAnt.&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Example&lt;/b&gt;&lt;br /&gt;A quick example would be something like this:&lt;br /&gt;&lt;pre&gt;
  &amp;lt;dict-add dictionary=&amp;quot;MyDict&amp;quot; key=&amp;quot;FirstKey&amp;quot; value=&amp;quot;FirstValue&amp;quot;/&amp;gt;
  &amp;lt;dict-add dictionary=&amp;quot;MyDict&amp;quot; key=&amp;quot;SecondKey&amp;quot; value=&amp;quot;SecondValue&amp;quot;/&amp;gt;
  &amp;lt;echo message=&amp;quot;The value of the first key is ${dict::get-value('MyDict','FirstKey')}&amp;quot;/&amp;gt;
&lt;/pre&gt; &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Building NAntCollections&lt;/b&gt;&lt;br /&gt;NAntCollections is coded against the .NET Framework version 2.0. Currently&lt;br /&gt;NAntCollections is most easily built using Visual Studio 2005. Eventually&lt;br /&gt;build scripts will be created for a more formal build process, and prebuilt&lt;br /&gt;releases will be created at major milestones.&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;Copyright &amp;#169; 2007 Justin Kohlhepp&lt;br /&gt;
&lt;/div&gt;</description><author>jkohlhepp</author><pubDate>Thu, 28 Jun 2007 02:26:44 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20070628022644A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/NAntCollections/Wiki/View.aspx?title=Home&amp;version=5</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;What is NAntCollections?&lt;/b&gt;&lt;br /&gt;NAntCollections is a library of NAnt tasks and functions which add the ability to use collections &amp;#40;namely lists and dictionaries&amp;#41; within NAnt scripts.
&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Why?&lt;/b&gt;&lt;br /&gt;NAnt and NAntContrib provide an excellent list of features to create very&lt;br /&gt;robust build scripts.  However, out of the box there is no way to maintain&lt;br /&gt;a collection of values except by maintaining a delimited list in a property.&lt;br /&gt;This is adequate for simple cases but when it is necessary to maintain large&lt;br /&gt;collections or collections of collections this quickly becomes unwieldy.&lt;br /&gt;The goal of NAntCollections is to bring proper collections to NAnt.&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Example&lt;/b&gt;&lt;br /&gt;A quick example would be something like this:&lt;br /&gt;{	&amp;lt;dict-add dictionary=&amp;quot;MyDict&amp;quot; key=&amp;quot;FirstKey&amp;quot; value=&amp;quot;FirstValue&amp;quot;/&amp;gt;&lt;br /&gt;	&amp;lt;dict-add dictionary=&amp;quot;MyDict&amp;quot; key=&amp;quot;SecondKey&amp;quot; value=&amp;quot;SecondValue&amp;quot;/&amp;gt;&lt;br /&gt;	&amp;lt;echo message=&amp;quot;The value of the first key is ${dict::get-value('MyDict','FirstKey')}&amp;quot;/&amp;gt;}&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Building NAntCollections&lt;/b&gt;&lt;br /&gt;NAntCollections is coded against the .NET Framework version 2.0. Currently&lt;br /&gt;NAntCollections is most easily built using Visual Studio 2005. Eventually&lt;br /&gt;build scripts will be created for a more formal build process, and prebuilt&lt;br /&gt;releases will be created at major milestones.&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;Copyright &amp;#169; 2007 Justin Kohlhepp&lt;br /&gt;
&lt;/div&gt;</description><author>jkohlhepp</author><pubDate>Thu, 28 Jun 2007 02:25:51 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20070628022551A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/NAntCollections/Wiki/View.aspx?title=Home&amp;version=4</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;What is NAntCollections?&lt;/b&gt;&lt;br /&gt;NAntCollections is a library of NAnt tasks and functions which add the ability to use collections &amp;#40;namely lists and dictionaries&amp;#41; within NAnt scripts.
&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Why?&lt;/b&gt;&lt;br /&gt;NAnt and NAntContrib provide an excellent list of features to create very&lt;br /&gt;robust build scripts.  However, out of the box there is no way to maintain&lt;br /&gt;a collection of values except by maintaining a delimited list in a property.&lt;br /&gt;This is adequate for simple cases but when it is necessary to maintain large&lt;br /&gt;collections or collections of collections this quickly becomes unwieldy.&lt;br /&gt;The goal of NAntCollections is to bring proper collections to NAnt.&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Example&lt;/b&gt;&lt;br /&gt;A quick example would be something like this:&lt;br /&gt;	&amp;lt;dict-add dictionary=&amp;quot;MyDict&amp;quot; key=&amp;quot;FirstKey&amp;quot; value=&amp;quot;FirstValue&amp;quot;/&amp;gt;&lt;br /&gt;	&amp;lt;dict-add dictionary=&amp;quot;MyDict&amp;quot; key=&amp;quot;SecondKey&amp;quot; value=&amp;quot;SecondValue&amp;quot;/&amp;gt;&lt;br /&gt;	&amp;lt;echo message=&amp;quot;The value of the first key is ${dict::get-value('MyDict','FirstKey')}&amp;quot;/&amp;gt;&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Building NAntCollections&lt;/b&gt;&lt;br /&gt;NAntCollections is coded against the .NET Framework version 2.0. Currently&lt;br /&gt;NAntCollections is most easily built using Visual Studio 2005. Eventually&lt;br /&gt;build scripts will be created for a more formal build process, and prebuilt&lt;br /&gt;releases will be created at major milestones.&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;Copyright &amp;#169; 2007 Justin Kohlhepp&lt;br /&gt;
&lt;/div&gt;</description><author>jkohlhepp</author><pubDate>Thu, 28 Jun 2007 02:01:35 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20070628020135A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/NAntCollections/Wiki/View.aspx?title=Home&amp;version=3</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;What is NAntCollections?&lt;/b&gt;&lt;br /&gt;A library of NAnt tasks and functions which add collections functionality to NAnt.  Supports dictionaries &amp;#40;name&amp;#47;value pairs&amp;#41; and lists.
&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Example&lt;/b&gt;&lt;br /&gt;A quick example would be something like this:&lt;br /&gt;	&amp;lt;dict-add dictionary=&amp;quot;MyDict&amp;quot; key=&amp;quot;FirstKey&amp;quot; value=&amp;quot;FirstValue&amp;quot;/&amp;gt;&lt;br /&gt;	&amp;lt;dict-add dictionary=&amp;quot;MyDict&amp;quot; key=&amp;quot;SecondKey&amp;quot; value=&amp;quot;SecondValue&amp;quot;/&amp;gt;&lt;br /&gt;	&amp;lt;echo message=&amp;quot;The value of the first key is ${dict::get-value('MyDict','FirstKey')}&amp;quot;/&amp;gt;&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Building NAntCollections&lt;/b&gt;&lt;br /&gt;NAntCollections is coded against the .NET Framework version 2.0. Currently&lt;br /&gt;NAntCollections is most easily built using Visual Studio 2005. Eventually&lt;br /&gt;build scripts will be created for a more formal build process, and prebuilt&lt;br /&gt;releases will be created at major milestones.&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;Copyright &amp;#169; 2007 Justin Kohlhepp&lt;br /&gt;
&lt;/div&gt;</description><author>jkohlhepp</author><pubDate>Thu, 28 Jun 2007 01:53:29 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20070628015329A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/NAntCollections/Wiki/View.aspx?title=Home&amp;version=2</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;A library of NAnt tasks and functions which add collections functionality to NAnt.  Supports dictionaries &amp;#40;name&amp;#47;value pairs&amp;#41; and lists.
&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;
&lt;/div&gt;</description><author>jkohlhepp</author><pubDate>Tue, 26 Jun 2007 11:06:17 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20070626110617A</guid></item></channel></rss>