morfologik / morfologik-stemming

Tools for finite state automata construction and dictionary-based morphological dictionaries. Includes Polish stemming dictionary.
BSD 3-Clause "New" or "Revised" License
186 stars 44 forks source link

Convert to .dll #80

Closed smietanka closed 8 years ago

smietanka commented 8 years ago

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:

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?