Re: [Ironpython-users] trouble installing Pylint

2015-07-22 Thread George Nychis
Hi Danny, I actually was able to get it installed in the end. But it doesn't seem to know of the methods in my C# library. I'm wondering if it's because I haven't setup my paths properly, or if Pylint is unable to recognize the C# libraries and methods. I'm continuing to try and set it up prope

[Ironpython-users] trouble installing Pylint

2015-07-20 Thread George Nychis
I am trying to install Pylint with IronPython, but I'm running in to the following issue below. Is there something special that I need to do to install pylint? $ ./ipy.exe -X:Frames -m pip install pylint Downloading/unpacking pylint C:\Program Files (x86)\IronPython 2.7\lib\site-packages\pip\_ven

Re: [Ironpython-users] struggling with Intellisense and GAC

2015-07-09 Thread George Nychis
gt; 4)Add “import ANamespaceInMyDll” or “from ANamespaceInMyDll import *” or > similar. > > Note that the C# namespace containing the Class definitions maps to an > IronPython module. > You should now get Intellisense for each class in the imported Namespaces > > > Andy Gr

[Ironpython-users] struggling with Intellisense and GAC

2015-07-09 Thread George Nychis
I am struggling to get Intellisense working with some DLLs that I have built. I do not want the C# code to be included directly in the project, I only want the functionality to be accessible through a pre-built DLL. First, I am able to run my IronPython code successfully linking to the DLLs by ad

Re: [Ironpython-users] struggling with Intellisense and GAC

2015-07-09 Thread George Nychis
I was able to solve accessing the DLL directly in the GAC by more explicitly specifying it: clr.AddReference("Utils, Version=1.0.0.0, Culture=neutral, PublicKeyToken=6c2b3719154e5544") But that did not fix intellisense. On Wed, Jul 8, 2015 at 11:33 AM George Nychis wrot