Hi, I am trying to use ikvmc (http://www.ikvm.net/) to convert jar to dll
bank:
http://dl.dropbox.com/u/284185/dartapi.jar
but this jar depends on a few jars,
http://dl.dropbox.com/u/284185/lib.zip
which command should i use to convert this jar to dll?
thanks
You can compile it in one step:
ikvmc { file1.jar } { file2.jar } ...
or you need to compile it in a dependency order if there is a hierarchy and no dependency on the environment.
See the IKVM Wiki for more details.
First, you compile the dependent jar in the dll, and then refer to it when compiling the main jar.
Sort of:
ikvmc -target:library depend.jar ikvmc -target:library -resource:depend.ddl dartapi.jar
See: IKVM Documents
Source: https://habr.com/ru/post/1332171/More articles:The fastest database engine for caching? - databaseMySQL index in numeric columns makes query slower - optimizationWhat is the best way to get the second and last value in R data.frame? - rA wildcard SSL certificate generates an error when not using a subdomain - sslHow to reference data from parent using jQuery? - jqueryGNU Prolog - fact list search - prologHow to send a push notification to an individual user in the iPhone SDK? - objective-cAndroid: Can I cut / paste the Android SDK and use it? - androidUsing a PHP variable in a text input value = statement - variablesAndroid SAX Parsing: how to save newlines using the CDATA tag - androidAll Articles