You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have prepared Nuget Package for C# users who are using `.Net Framework 4.6.1` or higher version. 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
38
+
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
40
39
41
40
```sh
42
41
dotnet add package Apache.IoTDB
43
42
```
44
43
45
-
46
-
## Prerequisites
44
+
Note that the `Apache.IoTDB` package only supports `.net 5.0`. If you are using `.net framework 4.x`, please refer to the section [starting from .net framework 4.x](#starting-from-net-framework-4x).
47
45
48
-
.NET SDK Version == 5.0 or higher version
49
-
.Net Framework 4.6.1 or higher version
50
-
.Net Standard 2.0 or 2.1
46
+
## Prerequisites
51
47
48
+
.NET SDK Version == 5.0
52
49
53
50
## How to Use the Client (Quick Start)
54
51
@@ -57,10 +54,9 @@ Users can refer to the test code in [tests](https://github.com/eedalong/Apache-I
57
54
## Developer environment requirements for iotdb-client-csharp
58
55
59
56
```
60
-
.NET SDK Version == 5.0 or higher version
61
-
.Net Framework 4.6.1 or higher version
62
-
.Net Standard 2.0 or 2.1
63
-
ApacheThrift >= 0.14.1
57
+
.NET SDK Version == 5.0
58
+
ApacheThrift >= 0.14.1
59
+
NLog >= 4.7.9
64
60
```
65
61
66
62
### OS
@@ -71,4 +67,13 @@ Users can refer to the test code in [tests](https://github.com/eedalong/Apache-I
71
67
### Command Line Tools
72
68
73
69
## Publish your own client on nuget.org
74
-
You can find out how to publish from this [doc](./PUBLISH.md).
70
+
You can find out how to publish from this [doc](./PUBLISH.md).
71
+
72
+
## Starting from `.net framework 4.x`
73
+
In order to adapt to `.net framework 4.x`, we have packaged a nuget package separately, the package name is [`Apache.IoTDB.framework`](https://www.nuget.org/packages/Apache.IoTDB.framework/).
74
+
75
+
You can install it through Package Manager (PM), .NET CLI, etc. For example (.NET CLI):
0 commit comments