Skip to content

Commit

Permalink
ver2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Jun 29, 2022
1 parent b43dea1 commit 7c49ba8
Show file tree
Hide file tree
Showing 31 changed files with 1,488 additions and 569 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/bin
/obj
/Properties
Binary file added .vs/AsoSoftLibrary/DesignTimeBuild/.dtbcache.v2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
Binary file added .vs/AsoSoftLibrary/v17/.futdcache.v1
Binary file not shown.
Binary file added .vs/AsoSoftLibrary/v17/.suo
Binary file not shown.
Binary file added .vs/ProjectEvaluation/asosoftlibrary.metadata.v2
Binary file not shown.
Binary file added .vs/ProjectEvaluation/asosoftlibrary.projects.v2
Binary file not shown.
Binary file added AsoSoft-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
49 changes: 44 additions & 5 deletions AsoSoftLibrary.csproj
Original file line number Diff line number Diff line change
@@ -1,25 +1,64 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<Company>AsoSoft</Company>
<Product>AsoSoft Class Library</Product>
<Authors>Aso Mahmudi</Authors>
<Description>AsoSoft Class Library offers basic natural language processing (NLP) algorithms for the Kurdish Language (ckb: Central branch of Kurdish).</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/AsoSoft/AsoSoft-Library</PackageProjectUrl>
<PackageIcon>AsoSoft-logo.png</PackageIcon>
<PackageTags>kurdish normalization natural-language-processing</PackageTags>
<PackageReleaseNotes>AsoSoft Library for the Kurdish language processing (ckb: Central branch of Kurdish).
Normalizer and Numeral Converter classes</PackageReleaseNotes>
<RepositoryUrl>https://github.com/AsoSoft/AsoSoft-Library</RepositoryUrl>
<Version>2.0.0</Version>
<PackageReadmeFile>ReadMe.md</PackageReadmeFile>
</PropertyGroup>

<ItemGroup>
<Compile Update="AsoSoftResources.Designer.cs">
<None Remove="resources\G2PCertain.txt" />
<None Remove="resources\G2PExceptions.txt" />
<None Remove="resources\NormalizerOptional.txt" />
<None Remove="resources\NormalizerRequierd.txt" />
<None Remove="resources\Phoneme2Ascii.txt" />
<None Remove="resources\Phoneme2IPA.txt" />
</ItemGroup>

<ItemGroup>
<Resource Include="resources\G2PCertain.txt" />
<Resource Include="resources\G2PExceptions.txt" />
<Resource Include="resources\NormalizerOptional.txt" />
<Resource Include="resources\NormalizerRequierd.txt" />
<Resource Include="resources\Phoneme2Ascii.txt" />
<Resource Include="resources\Phoneme2IPA.txt" />
</ItemGroup>

<ItemGroup>
<Compile Update="replaceFiles.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>AsoSoftResources.resx</DependentUpon>
<DependentUpon>replaceFiles.resx</DependentUpon>
</Compile>
</ItemGroup>

<ItemGroup>
<EmbeddedResource Update="AsoSoftResources.resx">
<EmbeddedResource Update="replaceFiles.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>AsoSoftResources.Designer.cs</LastGenOutput>
<LastGenOutput>replaceFiles.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>

<ItemGroup>
<None Update="AsoSoft-logo.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="ReadMe.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

</Project>
9 changes: 9 additions & 0 deletions AsoSoftLibrary.csproj.user
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup />
<ItemGroup>
<EmbeddedResource Update="replaceFiles.resx">
<SubType>Designer</SubType>
</EmbeddedResource>
</ItemGroup>
</Project>
25 changes: 25 additions & 0 deletions AsoSoftLibrary.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.2.32616.157
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AsoSoftLibrary", "AsoSoftLibrary.csproj", "{69039AA0-A7AD-4F12-B1B9-13263A9DC47F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{69039AA0-A7AD-4F12-B1B9-13263A9DC47F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{69039AA0-A7AD-4F12-B1B9-13263A9DC47F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{69039AA0-A7AD-4F12-B1B9-13263A9DC47F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{69039AA0-A7AD-4F12-B1B9-13263A9DC47F}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {95A3F2E7-0611-4D99-8A85-055D3FE5E265}
EndGlobalSection
EndGlobal
Loading

0 comments on commit 7c49ba8

Please sign in to comment.