Skip to content

Commit 14ac606

Browse files
committed
细节调整;增加ci脚本;
1 parent 6885f25 commit 14ac606

7 files changed

+58
-8
lines changed
+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Publish Nuget Package
2+
3+
on:
4+
release:
5+
types: [released,prereleased]
6+
branches: [ master,main ]
7+
8+
jobs:
9+
publish-with-build:
10+
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/[email protected]
15+
- name: Setup .NET Core 5 SDK
16+
uses: actions/[email protected]
17+
with:
18+
dotnet-version: 5.0.x
19+
- name: Setup .NET Core 3 SDK
20+
uses: actions/[email protected]
21+
with:
22+
dotnet-version: 3.1.x
23+
- name: restore dependencies
24+
run: dotnet restore
25+
- name: build
26+
run: dotnet build --no-restore -c Release
27+
- name: pack
28+
run: dotnet pack -c Release -o ./output --include-symbols
29+
- name: push package
30+
shell: pwsh
31+
working-directory: ./output
32+
run: Get-ChildItem -File -Filter '*.nupkg' | ForEach-Object { dotnet nuget push $_ -k ${{secrets.NUGET_KEY}} -s https://api.nuget.org/v3/index.json --no-service-endpoint --skip-duplicate; dotnet nuget push $_ -k ${{secrets.NUGET_GITHUB_KEY}} -s https://nuget.pkg.github.com/StratosBlue/index.json --no-service-endpoint --skip-duplicate; }

LanguageIdentification.sln

+14-5
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,13 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
2323
readme.md = readme.md
2424
EndProjectSection
2525
EndProject
26+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".github", ".github", "{88B736A7-C543-48EE-B736-ECE1D0C732A6}"
27+
EndProject
28+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "workflows", "workflows", "{306EB72E-C818-460A-8098-B91555F146ED}"
29+
ProjectSection(SolutionItems) = preProject
30+
.github\workflows\PublishNugetPackage.yml = .github\workflows\PublishNugetPackage.yml
31+
EndProjectSection
32+
EndProject
2633
Global
2734
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2835
Debug|Any CPU = Debug|Any CPU
@@ -33,6 +40,10 @@ Global
3340
{3F62519D-A537-4C9B-8ECF-BC534DFD4AF0}.Debug|Any CPU.Build.0 = Debug|Any CPU
3441
{3F62519D-A537-4C9B-8ECF-BC534DFD4AF0}.Release|Any CPU.ActiveCfg = Release|Any CPU
3542
{3F62519D-A537-4C9B-8ECF-BC534DFD4AF0}.Release|Any CPU.Build.0 = Release|Any CPU
43+
{929F78C4-B5D5-4C6E-865B-E2562A6C14C9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
44+
{929F78C4-B5D5-4C6E-865B-E2562A6C14C9}.Debug|Any CPU.Build.0 = Debug|Any CPU
45+
{929F78C4-B5D5-4C6E-865B-E2562A6C14C9}.Release|Any CPU.ActiveCfg = Release|Any CPU
46+
{929F78C4-B5D5-4C6E-865B-E2562A6C14C9}.Release|Any CPU.Build.0 = Release|Any CPU
3647
{585F998A-FD99-4880-921A-3C75B6D2DFA4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
3748
{585F998A-FD99-4880-921A-3C75B6D2DFA4}.Debug|Any CPU.Build.0 = Debug|Any CPU
3849
{585F998A-FD99-4880-921A-3C75B6D2DFA4}.Release|Any CPU.ActiveCfg = Release|Any CPU
@@ -41,19 +52,17 @@ Global
4152
{5DB7FA5F-B4A3-48FC-9F63-3D8DC173BED9}.Debug|Any CPU.Build.0 = Debug|Any CPU
4253
{5DB7FA5F-B4A3-48FC-9F63-3D8DC173BED9}.Release|Any CPU.ActiveCfg = Release|Any CPU
4354
{5DB7FA5F-B4A3-48FC-9F63-3D8DC173BED9}.Release|Any CPU.Build.0 = Release|Any CPU
44-
{929F78C4-B5D5-4C6E-865B-E2562A6C14C9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
45-
{929F78C4-B5D5-4C6E-865B-E2562A6C14C9}.Debug|Any CPU.Build.0 = Debug|Any CPU
46-
{929F78C4-B5D5-4C6E-865B-E2562A6C14C9}.Release|Any CPU.ActiveCfg = Release|Any CPU
47-
{929F78C4-B5D5-4C6E-865B-E2562A6C14C9}.Release|Any CPU.Build.0 = Release|Any CPU
4855
EndGlobalSection
4956
GlobalSection(SolutionProperties) = preSolution
5057
HideSolutionNode = FALSE
5158
EndGlobalSection
5259
GlobalSection(NestedProjects) = preSolution
5360
{3F62519D-A537-4C9B-8ECF-BC534DFD4AF0} = {7D09CC3D-96B6-473E-8E1E-2F60B048F964}
61+
{929F78C4-B5D5-4C6E-865B-E2562A6C14C9} = {2352390A-BEC6-4947-975D-B286AFCD8AE8}
5462
{585F998A-FD99-4880-921A-3C75B6D2DFA4} = {FB3FE070-7679-4FFF-9CB4-BB7C14A8338F}
5563
{5DB7FA5F-B4A3-48FC-9F63-3D8DC173BED9} = {2352390A-BEC6-4947-975D-B286AFCD8AE8}
56-
{929F78C4-B5D5-4C6E-865B-E2562A6C14C9} = {2352390A-BEC6-4947-975D-B286AFCD8AE8}
64+
{88B736A7-C543-48EE-B736-ECE1D0C732A6} = {7A936B58-0BB3-4981-8025-4FAAA69D9F99}
65+
{306EB72E-C818-460A-8098-B91555F146ED} = {88B736A7-C543-48EE-B736-ECE1D0C732A6}
5766
EndGlobalSection
5867
GlobalSection(ExtensibilityGlobals) = postSolution
5968
SolutionGuid = {72F50469-E585-48D8-855B-A7F75CD3D13E}

readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Console.WriteLine(result);
4848

4949
1. 只加载部分语言支持
5050
```C#
51-
var classifier = new LanguageIdentificationClassifier(new[] { "zh", "en" });
51+
var classifier = new LanguageIdentificationClassifier("zh", "en");
5252
langIdClassifier.Append("Hello");
5353
var result = langIdClassifier.Classify();
5454
Console.WriteLine(result);

src/LanguageIdentification/LanguageIdentification.csproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<VersionPrefix>1.0.0</VersionPrefix>
3+
<VersionPrefix>1.0.1</VersionPrefix>
44
<Description>本地离线运行的语言识别库,移植自langid-java</Description>
55

66
<Authors>Stratos</Authors>
77

88
<PackageLicenseExpression>MIT</PackageLicenseExpression>
99
<PackageProjectUrl>https://github.com/StratosBlue/LanguageIdentification</PackageProjectUrl>
10+
<PackageTags>language-detection language-identification langid</PackageTags>
1011

1112
<RepositoryType>git</RepositoryType>
1213
<RepositoryUrl>$(PackageProjectUrl)</RepositoryUrl>

src/LanguageIdentification/LanguageIdentificationClassifier.cs

+5
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,11 @@ public LanguageIdentificationClassifier() : this(LanguageIdentificationModel.Def
3131
{
3232
}
3333

34+
/// <inheritdoc cref="LanguageIdentificationClassifier(IEnumerable{string})"/>
35+
public LanguageIdentificationClassifier(params string[] languageCodes) : this(languageCodes as IEnumerable<string>)
36+
{
37+
}
38+
3439
/// <summary>
3540
/// <inheritdoc cref="LanguageIdentificationClassifier"/><para/>
3641
/// 创建仅支持 <paramref name="languageCodes"/> 中的语言的分类器

src/LanguageIdentification/LanguageIdentificationModel.cs

+3
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,9 @@ public LanguageIdentificationModel(string[] langClasses, float[] ptc, float[] pc
132132

133133
#region Public 方法
134134

135+
/// <inheritdoc cref="Create(IEnumerable{string})"/>
136+
public static LanguageIdentificationModel Create(params string[] languageCodes) => Create(languageCodes as IEnumerable<string>);
137+
135138
/// <summary>
136139
/// 创建仅支持指定语言的模型
137140
/// </summary>

test/LanguageIdentification.Test/ClassifierLanguageSupportLoadTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public void ShouldDetectionFailWithOutLanguageLoaded()
4040
[TestMethod]
4141
public void ShouldOnlyLoadedLanguageReturn()
4242
{
43-
var classifier = new LanguageIdentificationClassifier(new[] { "zh", "en" });
43+
var classifier = new LanguageIdentificationClassifier("zh", "en");
4444

4545
foreach (var item in TestData.Items)
4646
{

0 commit comments

Comments
 (0)