Skip to content

Commit

Permalink
Add Dispose method to release MeCab Tagger (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cutano committed Mar 8, 2021
1 parent 554322a commit a4ceaca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Kawazu-Cli/Kawazu-Cli.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RootNamespace>Kawazu</RootNamespace>
<LangVersion>8</LangVersion>
<LangVersion>9</LangVersion>
<TargetFrameworks>net5.0;netcoreapp3.1</TargetFrameworks>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 0 additions & 2 deletions Kawazu/Kawazu.csproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<PackageId>Kawazu</PackageId>
<Title>Kawazu</Title>
Expand All @@ -22,5 +21,4 @@
<PackageReference Include="LibNMeCab.IpaDicBin" Version="0.10.0" />
<None Include="Kawazu_icon.png" Pack="true" PackagePath="" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion Kawazu/KawazuConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Kawazu
{

/// <summary>
/// The main class of Kawazu library.
/// The main class of Kawazu library. Please call Dispose when finish using it or use the Using statement
/// </summary>
public class KawazuConverter: IDisposable
{
Expand Down

0 comments on commit a4ceaca

Please sign in to comment.