morfologik/morfologik-stemming

Convert to .dll

Closed this issue · 0 comments

Hello, i've trying convert this library to .dll because i want use this in .NET. I have problem with your latest release (and other versions). First of all i'm trying to explain how I try to do this. First I download source code, second I compile and package it by Maven. All .jar's of this project i put to one folder and next i use ikvmc to convert this .jar library to .dll. I used this command.
ikvmc -out:morfologik-2.1.0.dll -target:library *
In folder i have:

  • hppc-0.7.1;
  • jcommander-1.48
  • morfologik-[fsa;fsa-builders;polish;speller;stemming;tools]-2.1.0

They generate .dll for me. Now i adding this to project reference and I'm trying to write simple program. When i use Dictionary.getForLanguage("pl"); there is error:

Error 1 'morfologik.stemming.Dictionary' does not contain a definition for 'getForLanguage'

All steps I'm doing well?