Re: [Ironpython-users] IronPython and .Net Core and .Net Standard Library?

2016-08-29 Thread Slide
We are currently working on support for .NET Core. We don't have a working solution yet. On Mon, Aug 29, 2016, 12:18 Michael Mckenna-Mattiaccio wrote: > Hello all, > > I am doing research for a new project at work that will be using > Microsoft's .Net Core and .Net Standard Library for the web a

[Ironpython-users] IronPython and .Net Core and .Net Standard Library?

2016-08-29 Thread Michael Mckenna-Mattiaccio
Hello all, I am doing research for a new project at work that will be using Microsoft's .Net Core and .Net Standard Library for the web app and Xamarin for mobile apps. I'm curious how integrated IronPython is to .Net and the features for use with .Net Core either as an alternative or complement t

Re: [Ironpython-users] Binding problem with default parameters in public classes

2016-08-29 Thread Slide
What happens if it's an abstract base class instead of an interface? On Mon, Aug 29, 2016, 03:25 Markus Schaber wrote: > Hi, > > > > Our tests recently caught a strange regression in our application. One can > make existing scripts fail by changing an internal class to public. > > > > The attach

[Ironpython-users] Binding problem with default parameters in public classes

2016-08-29 Thread Markus Schaber
Hi, Our tests recently caught a strange regression in our application. One can make existing scripts fail by changing an internal class to public. The attached program reproduces the issue. The problem is that the method has optional parameters, but those are only declared at the interface. No