[Ikvm-commit] ikvm/reflect Universe.cs,1.88,1.89
Brought to you by:
jfrijters
|
From: Jeroen F. <jfr...@us...> - 2016-08-03 13:56:06
|
Update of /cvsroot/ikvm/ikvm/reflect In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv28727 Modified Files: Universe.cs Log Message: Patch by Marek Safar <mar...@gm...> Add mcs required DisableDefaultAssembliesLookup option. Index: Universe.cs =================================================================== RCS file: /cvsroot/ikvm/ikvm/reflect/Universe.cs,v retrieving revision 1.88 retrieving revision 1.89 diff -C2 -d -r1.88 -r1.89 *** Universe.cs 4 Jul 2016 05:15:00 -0000 1.88 --- Universe.cs 3 Aug 2016 13:56:03 -0000 1.89 *************** *** 137,140 **** --- 137,141 ---- DecodeVersionInfoAttributeBlobs = 128, DeterministicOutput = 256, + DisableDefaultAssembliesLookup = 512, } *************** *** 718,722 **** { Assembly asm; ! if (!assembliesByName.TryGetValue(refname, out asm)) { string simpleName = GetSimpleAssemblyName(refname); --- 719,723 ---- { Assembly asm; ! if (!assembliesByName.TryGetValue(refname, out asm) && (options & UniverseOptions.DisableDefaultAssembliesLookup) == 0) { string simpleName = GetSimpleAssemblyName(refname); |