-
Notifications
You must be signed in to change notification settings - Fork 2
Installation EN
皮卡超人 edited this page Nov 25, 2025
·
2 revisions
Language: 中文 (Chinese) | English
This guide will help you install WodToolKit into your project.
- .NET Standard 2.1 or higher
- Supports the following platforms:
- .NET Core 3.0+
- .NET Framework 4.6.1+
- .NET 5.0+
- .NET 6.0+
- .NET 7.0+
- .NET 8.0+
In Visual Studio:
- Right-click the project → Manage NuGet Packages
- Search for
WodToolKit - Click Install
Or use Package Manager Console:
Install-Package WodToolKitdotnet add package WodToolKitAdd to your project file (.csproj):
<ItemGroup>
<PackageReference Include="WodToolKit" Version="1.0.0.3" />
</ItemGroup>- In Visual Studio, select Tools → NuGet Package Manager → Package Manager Console
- Run the following command:
Install-Package WodToolKitAfter installation, you can verify it with:
using WodToolkit.Http;
// If it compiles successfully, installation is successful
var httpRequest = new HttpRequestClass();
Console.WriteLine("WodToolKit installed successfully!");WodToolKit will automatically install the following dependencies:
-
System.Text.Json(9.0.10) - JSON processing -
Microsoft.CSharp(4.7.0) - Dynamic type support -
System.Security.Cryptography.Algorithms(4.3.0) - Encryption functionality support -
Jint(4.4.2) - JavaScript execution engine (for JintRunner)
To update to the latest version:
Update-Package WodToolKitOr use .NET CLI:
dotnet add package WodToolKit --version <latest-version>If you need to uninstall WodToolKit:
Uninstall-Package WodToolKitOr use .NET CLI:
dotnet remove package WodToolKitAfter installation, please check the Quick Start guide to start using WodToolKit.