Matthew Mastracci wrote:

If you want to revert the ordering, please wrap the assembly folder stuff with a check for the "AssemblyFolderKey = blah" attribute of the reference. AFAIK, if this attribute is missing, VS.NET ***will not*** use the AssemblyFolders for resolution.

Just to clarify, I think the change should be this (pseudo-patch):


private bool ResolveFromAssemblyFolders(XmlElement referenceElement) {
- if (referenceElement.Attributes["AssemblyFolderKey"] != null) {
+ if (referenceElement.Attributes["AssemblyFolderKey"] == null) {
+ return;
+ } else {
string assemblyFolderKey = referenceElement.Attributes["AssemblyFolderKey"].Value;


Matt.


------------------------------------------------------- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click _______________________________________________ nant-developers mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/nant-developers

Reply via email to