I'm getting a System.FormatException when I use the DllHarvester with a bad file path. The exception's message is: "Index (zero based) must be greater than or equal to zero and less than the size of the argument list." It looks like at /wix/src/ext/UtilExtension/wixext/DllHarvester.cs:101 the instructions read:
throw new Exception(String.Format("Unable to load file: {1}, error: {2}", file, lastError));
when it should probably be:
throw new Exception(String.Format("Unable to load file: {0}, error: {1}", file, lastError));
Thanks. This is DllHarvester is awesome!... when i input the correct path anyway ;-)
Logged In: YES
user_id=991639
Originator: NO
Should be fixed in the next build.
This Tracker item was closed automatically by the system. It was
previously set to a Pending status, and the original submitter
did not respond within 15 days (the time period specified by
the administrator of this Tracker).