Re: [IronPython] assembly versioning in scripts

2009-04-20 Thread Curt Hagenlocher
If "a" is an Assembly object, you should just be able to dot into it to get Types. So instead of clr.AddReference(a) from A.B.C.D import E you'd say E = a.A.B.C.D.E The Python import mechanism is global and not really consistent with having multiple "things" with the same name. On Mon, Apr 20,

Re: [IronPython] assembly versioning in scripts

2009-04-20 Thread Michael Foord
Marty Nelson wrote: One of our developers asked me this question today, I don’t have an answer, so any help would be appreciated: We came across an issue while testing the NuGenesis extension related to assembly versioning in scripts. The extension has a custom assembly, which is called by

[IronPython] assembly versioning in scripts

2009-04-20 Thread Marty Nelson
One of our developers asked me this question today, I don't have an answer, so any help would be appreciated: We came across an issue while testing the NuGenesis extension related to assembly versioning in scripts. The extension has a custom assembly, which is called by script: