Skip to content

Commit 1d15a27

Browse files
lausannelHTHou
andauthored
Update Publish Content and README (#9)
Co-authored-by: Haonan <[email protected]>
1 parent 58cf1db commit 1d15a27

File tree

4 files changed

+24
-8
lines changed

4 files changed

+24
-8
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
*.userosscache
66
*.sln.docstates
77
**/tmp
8+
nupkgs/
89

910
# Build results
1011
[Dd]ebug/

README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424

2525
[![E2E Tests](https://github.com/apache/iotdb-client-csharp/actions/workflows/e2e.yml/badge.svg)](https://github.com/apache/iotdb-client-csharp/actions/workflows/e2e.yml)
2626
[![License](https://img.shields.io/badge/license-Apache%202-4EB1BA.svg)](https://www.apache.org/licenses/LICENSE-2.0.html)
27+
[![NuGet Badge](https://buildstats.info/nuget/Apache.IoTDB)](https://www.nuget.org/packages/Apache.IoTDB)
28+
2729
## Overview
2830

2931
This is the C# client of Apache IoTDB.
@@ -37,12 +39,14 @@ Apache IoTDB Github: https://github.com/apache/iotdb
3739

3840
### Install from NuGet Package
3941

40-
We have prepared Nuget Package for C# users. Users can directly install the client through .NET CLI. [The link of our NuGet Package is here](https://www.nuget.org/packages/Apache.IoTDB/). Run the following command in the command line to complete installation
42+
We have prepared a Nuget Package for C# users. Users can directly install the Apache IoTDB client using the .NET CLI. To install, simply run the following command in your command line:
4143

42-
```sh
44+
```bash
4345
dotnet add package Apache.IoTDB
4446
```
4547

48+
For more details, visit the package on [NuGet](https://www.nuget.org/packages/Apache.IoTDB/).
49+
4650
> [!NOTE]
4751
> The `Apache.IoTDB` package only supports versions greater than `.net framework 4.6.1`.
4852
@@ -68,8 +72,8 @@ NLog >= 4.7.9
6872

6973
### OS
7074

71-
* Linux, MacOS or other unix-like OS
72-
* Windows+bash(WSL, cygwin, Git Bash)
75+
* Linux, MacOS or other Unix-like OS
76+
* Windows + Bash (WSL, cygwin, Git Bash)
7377

7478
### Command Line Tools
7579

README_ZH.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323
# Apache IoTDB C#语言客户端
2424
[![E2E Tests](https://github.com/apache/iotdb-client-csharp/actions/workflows/e2e.yml/badge.svg)](https://github.com/apache/iotdb-client-csharp/actions/workflows/e2e.yml)
2525
[![License](https://img.shields.io/badge/license-Apache%202-4EB1BA.svg)](https://www.apache.org/licenses/LICENSE-2.0.html)
26+
[![NuGet Badge](https://buildstats.info/nuget/Apache.IoTDB)](https://www.nuget.org/packages/Apache.IoTDB)
27+
2628
## 概览
2729

2830
本仓库是Apache IoTDB的C#语言客户端,与其他语言支持相同语义的用户接口。
@@ -35,10 +37,16 @@ Apache IoTDB Github: https://github.com/apache/iotdb
3537
### 从NuGet Package安装
3638

3739
我们为CSharp用户准备了NuGet包,用户可直接通过.NET CLI进行客户端安装,[NuGet包链接如下](https://www.nuget.org/packages/Apache.IoTDB/),命令行中运行如下命令即可完成安装
40+
41+
我们为 C# 用户准备了一个 Nuget 包。用户可以直接通过 .NET CLI 进行客户端安装。命令行中运行如下命令即可完成安装
3842

3943
```sh
4044
dotnet add package Apache.IoTDB
4145
```
46+
47+
详情请访问 [NuGet 上的包](https://www.nuget.org/packages/Apache.IoTDB/)
48+
49+
4250
> [!NOTE]
4351
> 请注意,`Apache.IoTDB`这个包仅支持大于`.net framework 4.6.1`的版本。
4452
@@ -64,8 +72,8 @@ NLog >= 4.7.9
6472

6573
### 操作系统
6674

67-
* Linux、MacOS或其他类unix系统
68-
* Windows+bash(WSL、cygwin、Git Bash)
75+
* Linux、MacOS 或其他类 Unix 系统
76+
* Windows + Bash (WSL、cygwin、Git Bash)
6977

7078
### 命令行工具
7179

src/Apache.IoTDB/Apache.IoTDB.csproj

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,14 @@
44
<TargetFrameworks>net5.0;net6.0;netstandard2.1;netstandard2.0;net461</TargetFrameworks>
55
<LangVersion>latest</LangVersion>
66
<Authors>eedalong, lausannel, MysticBoy, Aiemu, HTHou</Authors>
7-
<Company>LiuLin Lab</Company>
87
<PackageDescription>C# client for Apache IoTDB</PackageDescription>
98
<PackageProjectUrl>https://github.com/apache/iotdb-client-csharp</PackageProjectUrl>
109
<RepositoryUrl>https://github.com/apache/iotdb-client-csharp</RepositoryUrl>
11-
10+
<Description>
11+
C# client of Apache IoTDB.
12+
13+
[Apache IoTDB](https://iotdb.apache.org) (Internet of Things Database) is a data management system for time series data, which can provide users specific services, such as, data collection, storage and analysis. Due to its light weight structure, high performance and usable features together with its seamless integration with the Hadoop and Spark ecology, IoTDB meets the requirements of massive dataset storage, high throughput data input, and complex data analysis in the industrial IoT field.
14+
</Description>
1215

1316
</PropertyGroup>
1417

0 commit comments

Comments
 (0)