├── .gitignore ├── LICENSE ├── LemmaSharp ├── Classes │ ├── 7zip │ │ ├── Common │ │ │ ├── CRC.cs │ │ │ ├── CommandLineParser.cs │ │ │ ├── InBuffer.cs │ │ │ └── OutBuffer.cs │ │ ├── Compress │ │ │ ├── LZ │ │ │ │ ├── IMatchFinder.cs │ │ │ │ ├── LzBinTree.cs │ │ │ │ ├── LzInWindow.cs │ │ │ │ └── LzOutWindow.cs │ │ │ ├── LZMA │ │ │ │ ├── LzmaBase.cs │ │ │ │ ├── LzmaDecoder.cs │ │ │ │ └── LzmaEncoder.cs │ │ │ ├── LzmaAlone │ │ │ │ ├── LzmaAlone.cs │ │ │ │ ├── LzmaAlone.csproj │ │ │ │ ├── LzmaAlone.sln │ │ │ │ ├── LzmaBench.cs │ │ │ │ └── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.cs │ │ │ │ │ └── Settings.cs │ │ │ └── RangeCoder │ │ │ │ ├── RangeCoder.cs │ │ │ │ ├── RangeCoderBit.cs │ │ │ │ └── RangeCoderBitTree.cs │ │ └── ICoder.cs │ ├── Constants.cs │ ├── ExampleList.cs │ ├── LemmaExample.cs │ ├── LemmaRule.cs │ ├── LemmaTreeNode.cs │ ├── Lemmatizer.cs │ ├── LemmatizerSettings.cs │ ├── RuleList.cs │ └── RuleWeighted.cs ├── Interfaces │ ├── ILemmatizer.cs │ ├── ILemmatizerModel.cs │ └── ILemmatizerTrainable.cs ├── LatinoCompatibility │ └── BinarySerializer.cs ├── LemmaSharp.csproj └── LemmaSharp.nuspec ├── LemmaSharpPrebuiltFull.sln ├── README.md ├── SourceFileBuilder ├── App.config ├── Classes │ └── EnricherFileReader.cs ├── Input │ ├── english-acronyms.txt │ ├── english-contractions.txt │ ├── english-irregular_verbs-enricher.txt │ └── english-lemma-enricher.txt ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── SourceFileBuilder.csproj ├── Test ├── App.config ├── Classes │ ├── LemmatizerPrebuilt.cs │ └── LemmatizerPrebuiltFull.cs ├── Data │ ├── Custom │ │ ├── english.lem │ │ └── full7z-mlteast-en-modified.lem │ ├── full7z-mlteast-bg.lem │ ├── full7z-mlteast-cs.lem │ ├── full7z-mlteast-en.lem │ ├── full7z-mlteast-et.lem │ ├── full7z-mlteast-fa.lem │ ├── full7z-mlteast-fr.lem │ ├── full7z-mlteast-hu.lem │ ├── full7z-mlteast-mk.lem │ ├── full7z-mlteast-pl.lem │ ├── full7z-mlteast-ro.lem │ ├── full7z-mlteast-ru.lem │ ├── full7z-mlteast-sk.lem │ ├── full7z-mlteast-sl.lem │ ├── full7z-mlteast-sr.lem │ ├── full7z-mlteast-uk.lem │ ├── full7z-multext-en.lem │ ├── full7z-multext-fr.lem │ ├── full7z-multext-ge.lem │ ├── full7z-multext-it.lem │ └── full7z-multext-sp.lem ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── Test.csproj └── nuget ├── NuGet.exe └── NuGet.targets /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LICENSE -------------------------------------------------------------------------------- /LemmaSharp/Classes/7zip/Common/CRC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/Classes/7zip/Common/CRC.cs -------------------------------------------------------------------------------- /LemmaSharp/Classes/7zip/Common/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/Classes/7zip/Common/CommandLineParser.cs -------------------------------------------------------------------------------- /LemmaSharp/Classes/7zip/Common/InBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/Classes/7zip/Common/InBuffer.cs -------------------------------------------------------------------------------- /LemmaSharp/Classes/7zip/Common/OutBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/Classes/7zip/Common/OutBuffer.cs -------------------------------------------------------------------------------- /LemmaSharp/Classes/7zip/Compress/LZ/IMatchFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/Classes/7zip/Compress/LZ/IMatchFinder.cs -------------------------------------------------------------------------------- /LemmaSharp/Classes/7zip/Compress/LZ/LzBinTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/Classes/7zip/Compress/LZ/LzBinTree.cs -------------------------------------------------------------------------------- /LemmaSharp/Classes/7zip/Compress/LZ/LzInWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/Classes/7zip/Compress/LZ/LzInWindow.cs -------------------------------------------------------------------------------- /LemmaSharp/Classes/7zip/Compress/LZ/LzOutWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/Classes/7zip/Compress/LZ/LzOutWindow.cs -------------------------------------------------------------------------------- /LemmaSharp/Classes/7zip/Compress/LZMA/LzmaBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/Classes/7zip/Compress/LZMA/LzmaBase.cs -------------------------------------------------------------------------------- /LemmaSharp/Classes/7zip/Compress/LZMA/LzmaDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/Classes/7zip/Compress/LZMA/LzmaDecoder.cs -------------------------------------------------------------------------------- /LemmaSharp/Classes/7zip/Compress/LZMA/LzmaEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/Classes/7zip/Compress/LZMA/LzmaEncoder.cs -------------------------------------------------------------------------------- /LemmaSharp/Classes/7zip/Compress/LzmaAlone/LzmaAlone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/Classes/7zip/Compress/LzmaAlone/LzmaAlone.cs -------------------------------------------------------------------------------- /LemmaSharp/Classes/7zip/Compress/LzmaAlone/LzmaAlone.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/Classes/7zip/Compress/LzmaAlone/LzmaAlone.csproj -------------------------------------------------------------------------------- /LemmaSharp/Classes/7zip/Compress/LzmaAlone/LzmaAlone.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/Classes/7zip/Compress/LzmaAlone/LzmaAlone.sln -------------------------------------------------------------------------------- /LemmaSharp/Classes/7zip/Compress/LzmaAlone/LzmaBench.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/Classes/7zip/Compress/LzmaAlone/LzmaBench.cs -------------------------------------------------------------------------------- /LemmaSharp/Classes/7zip/Compress/LzmaAlone/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/Classes/7zip/Compress/LzmaAlone/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LemmaSharp/Classes/7zip/Compress/LzmaAlone/Properties/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/Classes/7zip/Compress/LzmaAlone/Properties/Resources.cs -------------------------------------------------------------------------------- /LemmaSharp/Classes/7zip/Compress/LzmaAlone/Properties/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/Classes/7zip/Compress/LzmaAlone/Properties/Settings.cs -------------------------------------------------------------------------------- /LemmaSharp/Classes/7zip/Compress/RangeCoder/RangeCoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/Classes/7zip/Compress/RangeCoder/RangeCoder.cs -------------------------------------------------------------------------------- /LemmaSharp/Classes/7zip/Compress/RangeCoder/RangeCoderBit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/Classes/7zip/Compress/RangeCoder/RangeCoderBit.cs -------------------------------------------------------------------------------- /LemmaSharp/Classes/7zip/Compress/RangeCoder/RangeCoderBitTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/Classes/7zip/Compress/RangeCoder/RangeCoderBitTree.cs -------------------------------------------------------------------------------- /LemmaSharp/Classes/7zip/ICoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/Classes/7zip/ICoder.cs -------------------------------------------------------------------------------- /LemmaSharp/Classes/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/Classes/Constants.cs -------------------------------------------------------------------------------- /LemmaSharp/Classes/ExampleList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/Classes/ExampleList.cs -------------------------------------------------------------------------------- /LemmaSharp/Classes/LemmaExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/Classes/LemmaExample.cs -------------------------------------------------------------------------------- /LemmaSharp/Classes/LemmaRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/Classes/LemmaRule.cs -------------------------------------------------------------------------------- /LemmaSharp/Classes/LemmaTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/Classes/LemmaTreeNode.cs -------------------------------------------------------------------------------- /LemmaSharp/Classes/Lemmatizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/Classes/Lemmatizer.cs -------------------------------------------------------------------------------- /LemmaSharp/Classes/LemmatizerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/Classes/LemmatizerSettings.cs -------------------------------------------------------------------------------- /LemmaSharp/Classes/RuleList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/Classes/RuleList.cs -------------------------------------------------------------------------------- /LemmaSharp/Classes/RuleWeighted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/Classes/RuleWeighted.cs -------------------------------------------------------------------------------- /LemmaSharp/Interfaces/ILemmatizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/Interfaces/ILemmatizer.cs -------------------------------------------------------------------------------- /LemmaSharp/Interfaces/ILemmatizerModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/Interfaces/ILemmatizerModel.cs -------------------------------------------------------------------------------- /LemmaSharp/Interfaces/ILemmatizerTrainable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/Interfaces/ILemmatizerTrainable.cs -------------------------------------------------------------------------------- /LemmaSharp/LatinoCompatibility/BinarySerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/LatinoCompatibility/BinarySerializer.cs -------------------------------------------------------------------------------- /LemmaSharp/LemmaSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/LemmaSharp.csproj -------------------------------------------------------------------------------- /LemmaSharp/LemmaSharp.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharp/LemmaSharp.nuspec -------------------------------------------------------------------------------- /LemmaSharpPrebuiltFull.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/LemmaSharpPrebuiltFull.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/README.md -------------------------------------------------------------------------------- /SourceFileBuilder/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/SourceFileBuilder/App.config -------------------------------------------------------------------------------- /SourceFileBuilder/Classes/EnricherFileReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/SourceFileBuilder/Classes/EnricherFileReader.cs -------------------------------------------------------------------------------- /SourceFileBuilder/Input/english-acronyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/SourceFileBuilder/Input/english-acronyms.txt -------------------------------------------------------------------------------- /SourceFileBuilder/Input/english-contractions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/SourceFileBuilder/Input/english-contractions.txt -------------------------------------------------------------------------------- /SourceFileBuilder/Input/english-irregular_verbs-enricher.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/SourceFileBuilder/Input/english-irregular_verbs-enricher.txt -------------------------------------------------------------------------------- /SourceFileBuilder/Input/english-lemma-enricher.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/SourceFileBuilder/Input/english-lemma-enricher.txt -------------------------------------------------------------------------------- /SourceFileBuilder/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/SourceFileBuilder/Program.cs -------------------------------------------------------------------------------- /SourceFileBuilder/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/SourceFileBuilder/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SourceFileBuilder/SourceFileBuilder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/SourceFileBuilder/SourceFileBuilder.csproj -------------------------------------------------------------------------------- /Test/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/Test/App.config -------------------------------------------------------------------------------- /Test/Classes/LemmatizerPrebuilt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/Test/Classes/LemmatizerPrebuilt.cs -------------------------------------------------------------------------------- /Test/Classes/LemmatizerPrebuiltFull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/Test/Classes/LemmatizerPrebuiltFull.cs -------------------------------------------------------------------------------- /Test/Data/Custom/english.lem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/Test/Data/Custom/english.lem -------------------------------------------------------------------------------- /Test/Data/Custom/full7z-mlteast-en-modified.lem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/Test/Data/Custom/full7z-mlteast-en-modified.lem -------------------------------------------------------------------------------- /Test/Data/full7z-mlteast-bg.lem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/Test/Data/full7z-mlteast-bg.lem -------------------------------------------------------------------------------- /Test/Data/full7z-mlteast-cs.lem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/Test/Data/full7z-mlteast-cs.lem -------------------------------------------------------------------------------- /Test/Data/full7z-mlteast-en.lem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/Test/Data/full7z-mlteast-en.lem -------------------------------------------------------------------------------- /Test/Data/full7z-mlteast-et.lem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/Test/Data/full7z-mlteast-et.lem -------------------------------------------------------------------------------- /Test/Data/full7z-mlteast-fa.lem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/Test/Data/full7z-mlteast-fa.lem -------------------------------------------------------------------------------- /Test/Data/full7z-mlteast-fr.lem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/Test/Data/full7z-mlteast-fr.lem -------------------------------------------------------------------------------- /Test/Data/full7z-mlteast-hu.lem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/Test/Data/full7z-mlteast-hu.lem -------------------------------------------------------------------------------- /Test/Data/full7z-mlteast-mk.lem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/Test/Data/full7z-mlteast-mk.lem -------------------------------------------------------------------------------- /Test/Data/full7z-mlteast-pl.lem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/Test/Data/full7z-mlteast-pl.lem -------------------------------------------------------------------------------- /Test/Data/full7z-mlteast-ro.lem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/Test/Data/full7z-mlteast-ro.lem -------------------------------------------------------------------------------- /Test/Data/full7z-mlteast-ru.lem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/Test/Data/full7z-mlteast-ru.lem -------------------------------------------------------------------------------- /Test/Data/full7z-mlteast-sk.lem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/Test/Data/full7z-mlteast-sk.lem -------------------------------------------------------------------------------- /Test/Data/full7z-mlteast-sl.lem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/Test/Data/full7z-mlteast-sl.lem -------------------------------------------------------------------------------- /Test/Data/full7z-mlteast-sr.lem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/Test/Data/full7z-mlteast-sr.lem -------------------------------------------------------------------------------- /Test/Data/full7z-mlteast-uk.lem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/Test/Data/full7z-mlteast-uk.lem -------------------------------------------------------------------------------- /Test/Data/full7z-multext-en.lem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/Test/Data/full7z-multext-en.lem -------------------------------------------------------------------------------- /Test/Data/full7z-multext-fr.lem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/Test/Data/full7z-multext-fr.lem -------------------------------------------------------------------------------- /Test/Data/full7z-multext-ge.lem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/Test/Data/full7z-multext-ge.lem -------------------------------------------------------------------------------- /Test/Data/full7z-multext-it.lem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/Test/Data/full7z-multext-it.lem -------------------------------------------------------------------------------- /Test/Data/full7z-multext-sp.lem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/Test/Data/full7z-multext-sp.lem -------------------------------------------------------------------------------- /Test/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/Test/Program.cs -------------------------------------------------------------------------------- /Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Test/Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/Test/Test.csproj -------------------------------------------------------------------------------- /nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/nuget/NuGet.exe -------------------------------------------------------------------------------- /nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexPoint/LemmaGenerator/HEAD/nuget/NuGet.targets --------------------------------------------------------------------------------