I’m trying to reference classes within the H2 DB library in the following Maven repo: Maven Repository: com.h2database » h2 » 2.3.232
I have a simple .NET8 console app.
I’ve downloaded the jar, and referenced it locally. The jar has no dependencies.
I have the following project conifg:
<PackageReference Include="IKVM" Version="8.11.2" />
<IkvmReference Include="h2-2.3.232.jar">
<AssemblyName>h2-2.3.232</AssemblyName>
</IkvmReference>
When I compile, I see the dll h2-2.3.232.dll but am unable to reference anything from it
(When diagnosing if I try to reference the generated DLL directly, Visual Studio reports the error “The reference is invalid or unsupported”
I realise that i don't have to do this, but thought I'd do some extra checks)
Thanks for your help in advance
I’m trying to reference classes within the H2 DB library in the following Maven repo: Maven Repository: com.h2database » h2 » 2.3.232
I have a simple .NET8 console app.
I’ve downloaded the jar, and referenced it locally. The jar has no dependencies.
I have the following project conifg:
When I compile, I see the dll h2-2.3.232.dll but am unable to reference anything from it
(When diagnosing if I try to reference the generated DLL directly, Visual Studio reports the error “The reference is invalid or unsupported”
I realise that i don't have to do this, but thought I'd do some extra checks)
Thanks for your help in advance