Skip to content

Commit f4a916b

Browse files
committed
rename bot client
1 parent 5b5f816 commit f4a916b

6 files changed

Lines changed: 12 additions & 7 deletions

File tree

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
[![dotnet version](https://img.shields.io/badge/.NET-7.x-blue)](https://learn.microsoft.com/en-us/dotnet/core/whats-new/dotnet-7)
2+
23
# LINE Developers.Net
34
이 라이브러리는 [LINE Developers](https://developers.line.biz/en/docs/)의 API를 C# 라이브러리로 개발한 것입니다.
45
방대한 기능과 몇몇 기능은 유료 기반이라 모든 기능을 테스트 완료하진 못하였습니다.
56
LINE Messenger 기반 챗봇을 개발하시는 분들께 도움이 되길 바랍니다.
7+
8+
[![Nuget](https://img.shields.io/nuget/v/LineDevelopers.svg)](https://www.nuget.org/packages/LineDevelopers)
69
```
7-
Install-Package LineDevelopers -Version 1.0.1
10+
Install-Package LineDevelopers -Version 1.0.0
811
```
912

1013
# 1. 사용 가이드 문서

Src/LineDevelopers.Tests/LineInsightClientTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public void GetFriendsDemographicsAsyncTest()
5656
{
5757
var result = await _client.Insight.GetFriendsDemographicsAsync();
5858

59-
AreEqual(result.Available, false);
59+
That(result.Available, Is.EqualTo(false));
6060
});
6161
}
6262
}

Src/LineDevelopers/LineDevelopers.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,12 @@
1010
<Authors>Charles Hong</Authors>
1111
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
1212
<Description>C# library for Line Developers API</Description>
13-
<PackageTags>LINE;LINE Message;Chatbot;LINE Developers</PackageTags>
13+
<PackageTags>LINE;LINE Messaging;LINE Developers;Chatbot;LIFF</PackageTags>
1414
<RepositoryType>git</RepositoryType>
1515
<RootNamespace>Line</RootNamespace>
1616
<Version>1.0.1</Version>
17+
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
18+
<PackageReadmeFile>README.md</PackageReadmeFile>
1719
</PropertyGroup>
1820

1921
<ItemGroup>
File renamed without changes.

Src/LineDevelopers/Corporation/LineMessageForCorporationClient.cs renamed to Src/LineDevelopers/Options/LineOptionsClient.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
using Line.Message;
22

3-
namespace Line.Corporation
3+
namespace Line.Options
44
{
5-
public class LineMessageForCorporationClient : LineHttpClient
5+
public class LineOptionsClient : LineHttpClient
66
{
77
readonly string X_Line_Delivery_Tag = "X-Line-Delivery-Tag";
88

9-
public LineMessageForCorporationClient(string channelAccessToken, double timeout = 100d)
9+
public LineOptionsClient(string channelAccessToken, double timeout = 100d)
1010
: base(channelAccessToken, timeout)
1111
{ }
1212

Src/LineDevelopers/Corporation/PhoneNumber.cs renamed to Src/LineDevelopers/Options/PhoneNumber.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Security.Cryptography;
22
using System.Text;
33

4-
namespace Line.Corporation
4+
namespace Line.Options
55
{
66
public class PhoneNumber
77
{

0 commit comments

Comments
 (0)