I have a C# application that uses IronPython scripting. Is there a way to
do this without actually installing IronPython? For example, can the
binaries simply be delivered to a known location without formal
installation?
___
Ironpython-users mailing lis
Yes, I do this with my application. I just copy the dll's and exe's to the
directory and it works fine. You will to put the Lib directory there too.
On Thu, Dec 17, 2015 at 9:44 AM John Majerle wrote:
> I have a C# application that uses IronPython scripting. Is there a way to
> do this without
Hi,
We do the same with CODESYS. We dump the IronPython and DLR dlls in the GAC in
our installer, and unpack the python files of the standard library into a
subfolder in our installation directory.
It works fine.
There’s just one small glitch in our current implementation: Currently, our
inst