Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I compile IronRuby project in VS2010 into DLL/exe file?

After created IronRuby project in VS2010 by using IronRuby v1.1.x, I was able to use almost .NET library by importing them. But can't actually compile ironruby into exe/DLL. I see the build option but can't build any exe or DLL from IronRuby project. Please help !

like image 672
Little Jack Avatar asked Jan 21 '23 02:01

Little Jack


1 Answers

There's a great IronRuby gem that packages IronRuby files into a Windows executable.

https://github.com/kumaryu/irpack

To use:

igem install irpack
irpack -o Program.exe Program.rb
like image 66
Roy Tinker Avatar answered Jan 31 '23 12:01

Roy Tinker