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
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
48
39
49
40
```sh
50
41
dotnet add package Apache.IoTDB
51
42
```
52
43
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).
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).
54
45
55
46
## Prerequisites
56
47
@@ -76,4 +67,13 @@ NLog >= 4.7.9
76
67
### Command Line Tools
77
68
78
69
## Publish your own client on nuget.org
79
-
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