[Mono-bugs] [Bug 381558] path not set correctly to bin folder
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Sat Apr 19 10:05:08 EDT 2008
https://bugzilla.novell.com/show_bug.cgi?id=381558
User robertj at gmx.net added comment
https://bugzilla.novell.com/show_bug.cgi?id=381558#c2
Robert Jordan <robertj at gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |robertj at gmx.net
Status|NEW |RESOLVED
Resolution| |INVALID
--- Comment #2 from Robert Jordan <robertj at gmx.net> 2008-04-19 08:05:06 MST ---
Unfortunately this is not documented on MSDN but AppDomain.RelativeSearchPath
can contain a ";" separated list of paths.
Test case:
using System;
class Test
{
static void Main ()
{
AppDomainSetup setup = new AppDomainSetup ();
setup.PrivateBinPath = "dir1;dir2";
AppDomain domain = AppDomain.CreateDomain ("foo", null, setup);
Console.WriteLine (domain.RelativeSearchPath);
}
}
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
More information about the mono-bugs
mailing list