From a4ceacaeb5a7994721bb8e3e878d6cf00badaa57 Mon Sep 17 00:00:00 2001 From: Rinne Date: Mon, 8 Mar 2021 18:48:21 +0800 Subject: [PATCH] Add Dispose method to release MeCab Tagger (#3) --- Kawazu-Cli/Kawazu-Cli.csproj | 4 ++-- Kawazu/Kawazu.csproj | 2 -- Kawazu/KawazuConverter.cs | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/Kawazu-Cli/Kawazu-Cli.csproj b/Kawazu-Cli/Kawazu-Cli.csproj index 3116562..adb2730 100644 --- a/Kawazu-Cli/Kawazu-Cli.csproj +++ b/Kawazu-Cli/Kawazu-Cli.csproj @@ -2,9 +2,9 @@ Exe - netcoreapp3.1 Kawazu - 8 + 9 + net5.0;netcoreapp3.1 diff --git a/Kawazu/Kawazu.csproj b/Kawazu/Kawazu.csproj index 9215578..4831c3e 100644 --- a/Kawazu/Kawazu.csproj +++ b/Kawazu/Kawazu.csproj @@ -1,5 +1,4 @@ - Kawazu Kawazu @@ -22,5 +21,4 @@ - diff --git a/Kawazu/KawazuConverter.cs b/Kawazu/KawazuConverter.cs index c8e9091..ccd55e2 100644 --- a/Kawazu/KawazuConverter.cs +++ b/Kawazu/KawazuConverter.cs @@ -9,7 +9,7 @@ namespace Kawazu { /// - /// The main class of Kawazu library. + /// The main class of Kawazu library. Please call Dispose when finish using it or use the Using statement /// public class KawazuConverter: IDisposable {