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
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
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?
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.
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*