There was a request some time back to allow multiple resource filesets against a cscTask to enable adding resources to multiple namespaces. To get this working I finally implemented support for the BuildElementArrayAttribute. This enables you do do the following :

[BuildElementArray( "resources")]
public ResourceFileSet[] ResourcesList { get { return _resourcesList; } set { _resourcesList = value; }}



all <resources> tags will be initialized into ResourceFileSet objects an d added to the array. This is useful anywhere you need a repeating element.


so anyway you can now have multiple resource tags for any of the compiler tasks ( csc, vbc etc )

Ian



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers

Reply via email to