Re: [Ironpython-users] Changing the version information of ironpython .dll assembly

2016-02-15 Thread Markus Schaber
Hi, Didier, Just in case the problem cannot be solved here: You could use some post-processing using libraries like IKVM.Reflection or Mono.Cecil to change the version afterwards, working around the problem. Best regards Markus Schaber CODESYS® a trademark of 3S-Smart Software Solutions GmbH

Re: [Ironpython-users] Changing the version information of ironpython .dll assembly

2016-02-15 Thread Didier Bernard
quote: "Grab the source from github.com/IronLanguages/main.git and compile the ironpython solution." Thank you Slide. I have never done that, so I do not know how to do it. I am not a programmer. From: Slide Sent: Mo

Re: [Ironpython-users] Changing the version information of ironpython .dll assembly

2016-02-15 Thread Slide
Grab the source from github.com/IronLanguages/main.git and compile the ironpython solution. On Mon, Feb 15, 2016, 14:59 Didier Bernard wrote: > Thank you for the replies both Andy and Slide. > > @ Slide: > > > I am currently bound to use ironpython 2.7. > > Can you provide a link or an explanati

Re: [Ironpython-users] Changing the version information of ironpython .dll assembly

2016-02-15 Thread Didier Bernard
Thank you for the replies both Andy and Slide. @ Slide: I am currently bound to use ironpython 2.7. Can you provide a link or an explanation for this part please: "You could also compile from the 2.7 mainy branch and get it from there. Ipyc replaces pyc.py." @ Andy Graham: I down

Re: [Ironpython-users] Changing the version information of ironpython .dll assembly

2016-02-15 Thread Slide
You can do this now with ipyc, which should be in the next version. It allows you to set many more things than pyc.py. You could also compile from the 2.7 mainy branch and get it from there. Ipyc replaces pyc.py. Thanks Slide On Mon, Feb 15, 2016, 10:11 Andrew Graham wrote: > You can use ilmer

Re: [Ironpython-users] Changing the version information of ironpython .dll assembly

2016-02-15 Thread Andrew Graham
You can use ilmerge to change it after compilation http://stackoverflow.com/questions/398170/change-assembly-version-in-a-compiled-net-assembly ilmerge mycode.dll /ver:1.2.3.4 /out:mycode.dll ILMerge is available via NuGet in Visual Studio or from the Microsoft Download center http://www.micros

[Ironpython-users] Changing the version information of ironpython .dll assembly

2016-02-15 Thread Didier Bernard
Hello, I have the following issue with ironpython 2.7: I would like to compiles the .py file to .dll. Here is a nice example on how this can be done with clr.CompileModules method. The problem is