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
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/).
36
-
37
-
You can install it through Package Manager (PM), .NET CLI, etc. For example (.NET CLI):
We have prepared Nuget Package for C# users who are using `.net 5.0` 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
39
+
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
48
40
49
41
```sh
50
42
dotnet add package Apache.IoTDB
51
43
```
52
44
53
-
Note that the `Apache.IoTDB` package only supports `.net 5.0` or higher version. If you are using `.net framework 4.x`, please refer to the section [starting from .net framework 4.x](#starting-from-net-framework-4x).
54
-
45
+
55
46
## Prerequisites
56
47
57
-
.NET SDK Version == 5.0
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
51
+
58
52
59
53
## How to Use the Client (Quick Start)
60
54
@@ -63,9 +57,10 @@ Users can refer to the test code in [tests](https://github.com/eedalong/Apache-I
63
57
## Developer environment requirements for iotdb-client-csharp
0 commit comments