How do I create an exe file or a jar file from J#?

I need to provide someone (a science teacher) with just an exe that they can run.
The program prompt for some values, perform calcuations and produces
a table of outputs.  They do not have Visual Studio NET installed on their
computer.  How do I make an executable in J# Thanks!

Mrs. Bellacera


Answer this question

How do I create an exe file or a jar file from J#?

  • pmukherj

    If you build your project, an exe will be created in the bin\debug or bin\release folder. You can run this directly, but you will need to have the .NET framework (redist) installed (not the SDK or Visual Studio)...

  • Elizabeth Maher MSFT

    Keep in mind you need .net to run those j# programs. They will not run on a normal java vm if you want to run them just with a java vm use the java compiler form sun. But you cannot access any .net libraries then.

  • Vasco Marques

    To run J# applications you need to have ".Net Framework" and "J# Redistributable" and they are available for free on msdn site.
     
    All Redistributables & Service Packs of MS are available at http://msdn.microsoft.com/netframework/downloads/updates/default.aspx



  • How do I create an exe file or a jar file from J#?