Re: [Ironpython-users] Compiling IronPython for .NET 2.0

2011-07-28 Thread Markus Schaber
Hi, Jeff, Von: Jeff Hardy [mailto:jdha...@gmail.com] > On Thu, Jul 28, 2011 at 12:07 AM, Markus Schaber software.com> wrote: > >> [Compiling IPy 2.7 for a pure .NET 2.0] > > > > I did try to patch some of the problems > > > > g...@github.com:markusschaber/IronLanguages.git (2.7-maint branch) > >

Re: [Ironpython-users] Compiling IronPython for .NET 2.0

2011-07-28 Thread Markus Schaber
Hi, Jeff, Von: Jeff Hardy > I don't know why Markus' clients can't/won't upgrade to 3.5, but I'm sure > they're not good reasons. :) Well, some of our clients are OEMs shipping very customized versions of our product. Some of them urge us to update to .NET 4.0 for some reasons, others urge us to

Re: [Ironpython-users] [IronPython] Intellisense with imported dlls

2011-07-28 Thread Vardeman, Andrew [CSSM]
-Original Message- From: Dino Viehland [mailto:di...@microsoft.com] Sent: Thursday, July 28, 2011 3:35 PM To: Vardeman, Andrew [CSSM]; ironpython-users@python.org Subject: RE: [Ironpython-users] [IronPython] Intellisense with imported dlls Andrew wrote: > Hi. I'm replying to a thread I s

Re: [Ironpython-users] [IronPython] Intellisense with imported dlls

2011-07-28 Thread Dino Viehland
Andrew wrote: > Hi. I'm replying to a thread I saw from May that discussed adding DLLs from > the project search paths to the list of DLLs to index for Intellisense. This > appears to be implemented in the most recent of PTVS, which I'm using. > > My problem is that I'm developing C# classes and

Re: [Ironpython-users] [IronPython] Intellisense with imported dlls

2011-07-28 Thread Vardeman, Andrew [CSSM]
Hi. I'm replying to a thread I saw from May that discussed adding DLLs from the project search paths to the list of DLLs to index for Intellisense. This appears to be implemented in the most recent of PTVS, which I'm using. My problem is that I'm developing C# classes and their Python subclass

Re: [Ironpython-users] Hosting ironpyhon in silverlight , get Couldnot add reference to assembly System.Windows.Controls error

2011-07-28 Thread Jimmy Schementi
On Thu, Jul 28, 2011 at 12:42 PM, zdong wrote: > dear jimmy > > Acturally i want to create instance of StackPanel,TextBlock ect. That been > widly known as silverlight standard framework element in > system.windows.controls. If i directly use stackins=StackPanel() it's seems > could not found Stac

Re: [Ironpython-users] Hosting ironpyhon in silverlight , get Couldnot add reference to assembly System.Windows.Controls error

2011-07-28 Thread zdong
dear jimmy Acturally i want to create instance of StackPanel,TextBlock ect. That been widly known as silverlight standard framework element in system.windows.controls. If i directly use stackins=StackPanel() it's seems could not found StackPanel class . So that's way i want to import system.w

Re: [Ironpython-users] Compiling IronPython for .NET 2.0

2011-07-28 Thread Jeff Hardy
On Thu, Jul 28, 2011 at 12:07 AM, Markus Schaber wrote: > Hi, > >> [Compiling IPy 2.7 for a pure .NET 2.0] > > I did try to patch some of the problems > > g...@github.com:markusschaber/IronLanguages.git (2.7-maint branch) > > Now I have about 270 problems mostly relating to extension methods, > ma

Re: [Ironpython-users] Compiling IronPython for .NET 2.0

2011-07-28 Thread Jeff Hardy
On Thu, Jul 28, 2011 at 12:44 AM, Doug Blank wrote: > It was rumored that Ubuntu might be getting a more recent Mono soon, > but it would still be nice to clean this up a bit. Is v2Release really > v3.5Release? Yes. - Jeff ___ Ironpython-users mailing

Re: [Ironpython-users] Compiling IronPython for .NET 2.0

2011-07-28 Thread Jeff Hardy
On Thu, Jul 28, 2011 at 6:40 AM, Jimmy Schementi wrote: > I'm a little confused about the issues, as with this simple patch: > https://gist.github.com/557 > > I'm able to build IronPython (using IronPython.Mono.sln as that still > has v2Debug build configurations): > msbuild Solutions\IronPyth

Re: [Ironpython-users] (no subject)

2011-07-28 Thread Jimmy Schementi
Replied on the other thread: http://mail.python.org/pipermail/ironpython-users/2011-July/015136.html ~Jimmy 2011/7/28 曾东 : > Hi, > > > > I use this code in silverlight to run a script define outer > > > > var setup = new ScriptRuntimeSetup(); > > setup.HostType = typeo

[Ironpython-users] (no subject)

2011-07-28 Thread 曾东
Hi, I use this code in silverlight to run a script define outer var setup = new ScriptRuntimeSetup(); setup.HostType = typeof(BrowserScriptHost); setup.LanguageSetups.Add(Python.CreateLanguageSetup(null)); setup.Options["SearchPaths"]

Re: [Ironpython-users] Compiling IronPython for .NET 2.0

2011-07-28 Thread Jimmy Schementi
I'm a little confused about the issues, as with this simple patch: https://gist.github.com/557 I'm able to build IronPython (using IronPython.Mono.sln as that still has v2Debug build configurations): msbuild Solutions\IronPython.Mono.sln /p:Configuration=v2Debug And run it, showing it's using

Re: [Ironpython-users] Hosting ironpyhon in silverlight , get Could not add reference to assembly System.Windows.Controls error

2011-07-28 Thread Jimmy Schementi
There is no System.Windows.Controls.dll that ships with Silverlight, it is in the Silverlight SDK, meaning you must provide it in your application's XAP file. ~Jimmy 2011/7/28 曾东 : > Hi, > > > > I use this code in silverlight to run a script define outer > > > > var setup = new Scr

[Ironpython-users] Hosting ironpyhon in silverlight , get Could not add reference to assembly System.Windows.Controls error

2011-07-28 Thread 曾东
Hi, I use this code in silverlight to run a script define outer var setup = new ScriptRuntimeSetup(); setup.HostType = typeof(BrowserScriptHost); setup.LanguageSetups.Add(Python.CreateLanguageSetup(null)); setup.Options["SearchPaths"]

Re: [Ironpython-users] Compiling IronPython for .NET 2.0

2011-07-28 Thread Markus Schaber
Hi, Von: Markus Schaber > > > [Compiling IPy 2.7 for a pure .NET 2.0] > > > > I did try to patch some of the problems > > > > g...@github.com:markusschaber/IronLanguages.git (2.7-maint branch) > > > > Now I have about 270 problems mostly relating to extension methods, > > maybe I will find enough

Re: [Ironpython-users] Compiling IronPython for .NET 2.0

2011-07-28 Thread Markus Schaber
Hi, > > [Compiling IPy 2.7 for a pure .NET 2.0] > > I did try to patch some of the problems > > g...@github.com:markusschaber/IronLanguages.git (2.7-maint branch) > > Now I have about 270 problems mostly relating to extension methods, maybe > I will find enough time to fix some of them this eve

Re: [Ironpython-users] Compiling IronPython for .NET 2.0

2011-07-28 Thread Doug Blank
On Thu, Jul 28, 2011 at 3:07 AM, Markus Schaber wrote: > Hi, > >> [Compiling IPy 2.7 for a pure .NET 2.0] > > I did try to patch some of the problems > > g...@github.com:markusschaber/IronLanguages.git (2.7-maint branch) > > Now I have about 270 problems mostly relating to extension methods, > may

Re: [Ironpython-users] Compiling IronPython for .NET 2.0

2011-07-28 Thread Markus Schaber
Hi, > [Compiling IPy 2.7 for a pure .NET 2.0] I did try to patch some of the problems g...@github.com:markusschaber/IronLanguages.git (2.7-maint branch) Now I have about 270 problems mostly relating to extension methods, maybe I will find enough time to fix some of them this evening. Is it ev