Re: [IronPython] IronPython 2 Beta 4 and .Net 3.5

2008-08-15 Thread Dody Gunawinata
M > To: Discussion of IronPython > Subject: Re: [IronPython] IronPython 2 Beta 4 and .Net 3.5 > > On Fri, Aug 15, 2008 at 9:37 AM, Dino Viehland <[EMAIL PROTECTED]> > wrote: > > You'll need to alias Microsoft.Scripting.Core.dll when you're buildin

Re: [IronPython] IronPython 2 Beta 4 and .Net 3.5

2008-08-15 Thread Dino Viehland
lto:[EMAIL PROTECTED] On Behalf Of Sridhar Ratnakumar Sent: Friday, August 15, 2008 9:42 AM To: Discussion of IronPython Subject: Re: [IronPython] IronPython 2 Beta 4 and .Net 3.5 On Fri, Aug 15, 2008 at 9:37 AM, Dino Viehland <[EMAIL PROTECTED]> wrote: > You'll need to alias Microsoft

Re: [IronPython] IronPython 2 Beta 4 and .Net 3.5

2008-08-15 Thread Sridhar Ratnakumar
On Fri, Aug 15, 2008 at 9:37 AM, Dino Viehland <[EMAIL PROTECTED]> wrote: > You'll need to alias Microsoft.Scripting.Core.dll when you're building a 3.5 > project. From the command line this is > > Csc /reference:MSCore=Microsoft.Scripting.Core.dll … Any idea how to do this in Visual Studio?

Re: [IronPython] IronPython 2 Beta 4 and .Net 3.5

2008-08-15 Thread Dino Viehland
EMAIL PROTECTED] On Behalf Of Dody Gunawinata Sent: Friday, August 15, 2008 1:18 AM To: users@lists.ironpython.com Subject: [IronPython] IronPython 2 Beta 4 and .Net 3.5 Try the following code with a .Net 3.5 setting using System; using System.Collections.Generic; using System.Linq; using System.

[IronPython] IronPython 2 Beta 4 and .Net 3.5

2008-08-15 Thread Dody Gunawinata
Try the following code with a .Net 3.5 setting using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ClassLibrary1 { public class Class1 { public void Do() { Func f = () => "" ; } } } *This is what I got*