IKVM 8.2.0-prerelease2777

IKVM - Java Virtual Machine for .NET

Nuget GitHub

IKVM.NET is an implementation of Java for the Microsoft .NET Framework and .NET Core.

IKVM.NET includes the following components:

  • A Java virtual machine (JVM) implemented in .NET
  • A .NET implementation of the Java class libraries
  • A tool that translates Java bytecode (JAR files) to .NET IL (DLLs or EXE files).
  • Tools that enable Java and .NET interoperability
  • With IKVM.NET you can run compiled Java code (bytecode) directly on Microsoft .NET Framework or .NET Core. The bytecode is converted on the fly to CIL and executed.

Documentation

See the tutorial to get started or IKVM.NET In Details for a more in-depth look.

Support

  • .NET Framework 4.6.1 and higher
  • .NET Core 3.1 and higher
  • .NET 5 and higher
  • Java SE 8

IkvmReference

IKVM includes build-time support for translating Java libraries to .NET assemblies. Install the IKVM package in a project that wants to reference Java libraries. Use the IkvmReference ItemGroup to indicate which Java libraries your project required.

Example:

    <ItemGroup>
        <IkvmReference Include="..\..\ext\helloworld-2.0.jar" />
    </ItemGroup>

The output assembly will be generated as part of your project's build process. Additional metadata can be added to IkvmReference to customize the generated assembly.

  • Identity: The identity of the IkvmReference item can be either a) path to a JAR file b) path to a directory or c) an otherwise unimportant name.
  • AssemblyName: By default the AssemblyName is generated using the rules defined by the Automatic-Module-Name specification. To override this, do so here.
  • AssemblyVersion: By default the AssemblyVersion is generated using the rules defined by the Automatic-Module-Name specification. To override this, do so here.
  • DisableAutoAssemblyName: If true disables detection of AssemblyName.
  • DisableAutoAssemblyVersion: If true disables detection of AssemblyVersion.
  • FallbackAssemblyName: If AssemblyName is not provided or cannot be calculated, use this value.
  • FallbackAssemblyVersion: If AssemblyVersion is not provided or cannot be calculated, use this value.
  • Compile: Optional semi-colon separated list of Java class path items to compile into the assembly. By default this value is the Identity of the item, if the identity of the item is an existing JAR file or directory (not yet supported). MSBuild globs are supported to reference multiple JAR or .class files.
  • Sources: Optional semi-colon separated list of Java source files to use during documentation generation. (not yet supported)
  • References: Optional semi-colon separated list of other IkvmReference identity values to specify as a reference to the current one. For instance, if foo.jar depends on bar.jar, include both as IkvmReference items, but specify the identity of bar.jar on the References metadata of foo.jar.
  • Debug: Optional boolean indicating whether to generate debug symbols (non-portable). By default this is determined based on the overall setting of the project.
  • All other metadata supported on the Reference MSBuild item group definition.

IkvmReference is not transitive. Including it in one project and adding a dependency to that project from a second project will not result in the same reference being available on the second project. Instead add the reference to each project.

For each project to resolve to the same resulting assembly ensure their settings are identical.

    <ItemGroup>
        <IkvmReference Include="helloworld.jar">
            <AssemblyVersion>1.0.0.0</AssemblyVersion>
        </IkvmReference>
        <IkvmReference Include="helloworld-2.jar">
            <AssemblyName>helloworld-2</AssemblyName>
            <AssemblyVersion>2.0.0.0</AssemblyVersion>
            <References>helloworld.jar</References>
            <Aliases>helloworld2</Aliases>
        </IkvmReference>
    </ItemGroup>

Showing the top 20 packages that depend on IKVM.

Packages Downloads
gherkin
A fast lexer and parser for the Gherkin language based on Ragel
51
gherkin
A fast lexer and parser for the Gherkin language based on Ragel
48
gherkin
A fast lexer and parser for the Gherkin language based on Ragel
46
gherkin
A fast lexer and parser for the Gherkin language based on Ragel
44
gherkin
A fast lexer and parser for the Gherkin language based on Ragel
43
gherkin
A fast lexer and parser for the Gherkin language based on Ragel
42
gherkin
A fast lexer and parser for the Gherkin language based on Ragel
41
gherkin
A fast lexer and parser for the Gherkin language based on Ragel
40
gherkin
A fast lexer and parser for the Gherkin language based on Ragel
39

Version Downloads Last updated
8.12.0 7 06/30/2025
8.11.2 29 03/11/2025
8.11.1 32 02/18/2025
8.11.0 26 02/05/2025
8.11.0-pre.4 26 02/05/2025
8.11.0-pre.2 19 01/02/2025
8.11.0-pre.1 36 12/16/2024
8.10.3 39 11/03/2024
8.10.2 33 09/18/2024
8.10.1 35 08/22/2024
8.10.0 36 08/18/2024
8.10.0-pre.1 30 08/15/2024
8.9.1 42 07/14/2024
8.9.0 40 07/14/2024
8.9.0-pre.3 41 07/10/2024
8.9.0-pre.2 42 07/10/2024
8.9.0-pre.1 40 07/15/2024
8.8.1 37 06/06/2024
8.8.0 37 04/21/2024
8.8.0-pre.1 38 04/11/2024
8.7.6 45 04/10/2024
8.7.5 35 02/16/2024
8.7.4 46 01/23/2024
8.7.3 65 12/21/2023
8.7.2 70 01/27/2024
8.7.1 74 11/04/2023
8.7.0 59 11/04/2023
8.7.0-pre.3 64 11/04/2023
8.7.0-pre.2 73 10/17/2023
8.7.0-pre.1 61 10/19/2023
8.6.4 66 09/11/2023
8.6.3-tags-8-6-3-pre-24.1 57 08/29/2023
8.6.3-tags-8-6-3-pre-11.1 65 08/26/2023
8.6.2 59 08/09/2023
8.6.1 59 08/17/2023
8.6.0 68 08/15/2023
8.5.2 63 08/08/2023
8.5.1 66 08/05/2023
8.5.0 55 08/16/2023
8.5.0-prerelease0001 63 08/10/2023
8.5.0-develop2513 74 08/08/2023
8.5.0-develop1599 61 08/07/2023
8.5.0-develop0690 67 08/07/2023
8.4.5 43 07/15/2023
8.4.5-prerelease0001 58 07/15/2023
8.4.4 64 07/15/2023
8.4.4-prerelease0001 82 07/15/2023
8.4.3 68 08/06/2023
8.4.2 56 08/11/2023
8.4.1 69 08/09/2023
8.4.0 66 08/05/2023
8.4.0-prerelease0001 61 09/22/2023
8.3.3 81 07/15/2023
8.3.2 62 08/04/2023
8.3.1 69 08/07/2023
8.3.0 64 08/10/2023
8.3.0-prerelease0395 62 08/16/2023
8.3.0-prerelease0394 74 09/19/2023
8.2.3 63 09/11/2023
8.2.2-prerelease0856 70 08/07/2023
8.2.2-prerelease0553 53 08/23/2023
8.2.2-prerelease0396 62 09/11/2023
8.2.2-prerelease0241 66 08/17/2023
8.2.2-prerelease0163 80 08/10/2023
8.2.2-prerelease0106 81 08/04/2023
8.2.2-prerelease0051 68 08/12/2023
8.2.1 56 09/30/2023
8.2.0 67 10/20/2023
8.2.0-prerelease3420 58 09/11/2023
8.2.0-prerelease2777 60 10/20/2023
8.2.0-prerelease2138 69 10/23/2023
8.2.0-prerelease1515 63 11/11/2023
8.2.0-prerelease0911 61 09/25/2023
8.2.0-prerelease0899 62 08/02/2023
8.2.0-prerelease0892 60 08/09/2023
8.2.0-prerelease0809 58 08/14/2023
8.2.0-prerelease0392 64 08/17/2023
8.1.5717 45 08/16/2023
8.0.5449.1 45 07/15/2023
8.0.5449 43 08/04/2023
7.4.5196 42 07/15/2023
7.3.4830 40 07/15/2023
7.2.4630.5 44 08/11/2023
7.1.4532.2 37 08/16/2023
7.0.4335 50 08/15/2023
0.46.0.1 46 08/10/2023