Hey,
an integration into eclipse ide is possible with ANT by adding the following example target to the build.xml:
<target name="compile_dotnet" depends="compile" description="compile to .NET assemblies">
<!-- Prepare directory -->
<delete dir="${dotnetDir}"/>
<mkdir dir="${dotnetDir}"/>
<!-- compile java code from ${source} into ${build_dotnet} -->
<javac
srcdir="${sourceDir}"
debug="on"
fork="yes"
executable="${build.jaNET_compiler_path}"
verbose="yes"
destdir="${dotnetDir}">
</javac>
</target>
the build.jaNET_compiler path variable must be set to the javac.exe location in your file system. In case only the .dll file is needed, the line
<compilerarg value="-bam:${build.projectname}.dll"></compilerarg>
can be added within the <javac> task
best wishes,
Michael