[Ironpython-users] clrtype.py duplicate type name within an assembly

2012-10-31 Thread Jared Whitby
Hey guys, ** ** I've been trying to use IronPython as a scripting solution in a project I am working on. I am using clrtype.py from the clrtype sample to expose attributes on methods into c# so I can use reflection to register them with my application. The first time the script runs, everythi

Re: [Ironpython-users] clrtype.py duplicate type name within an assembly

2012-10-31 Thread Jeff Hardy
On Tue, Oct 30, 2012 at 8:13 PM, Jared Whitby wrote: > Hey guys, > > I've been trying to use IronPython as a scripting solution in a project I am > working on. I am using clrtype.py from the clrtype sample to expose > attributes on methods into c# so I can use reflection to register them with > my

[Ironpython-users] Integrated Typed Class Generation

2012-10-31 Thread Jeff Hardy
Jared's email reminded me that I needed to get some feedback on how I plan to integrate clrtypes.py into IronPython. Currently, most of what's in clrtypes.py will move into the clr module, but a few pieces will be renamed. Loosely, it will look like: clr.assembly_attribute(AssemblyVersionAttribute

[Ironpython-users] ANN: Python Tools for Visual Studio 1.5

2012-10-31 Thread Dino Viehland
We're pleased to announce the release of Python Tools for Visual Studio 1.5 RTM - http://pytools.codeplex.com/releases/view/82132. Python Tools for Visual Studio (PTVS) is an open-source plug-in for Visual Studio which supports programming with the Python language. PTVS supports a broad range of

Re: [Ironpython-users] clrtype.py duplicate type name within an assembly

2012-10-31 Thread Jared Whitby
The existing scripting system is c#/codedom and uses reflection to find attributes on classes and methods in the assembly compiled and loaded at runtime. After finding out about clrtype.py I thought the IronPython implementation could be very easy without changing much of the existing code, until I