-
Notifications
You must be signed in to change notification settings - Fork 0
Setup
Using ExtensionsDotNet is simple. He library is available as a NUGET package in the NUGET gallery on nuget.org. In Visual Studio, There are two ways you can get the package - either using the package manager console or by right clicking on your project and selecting Manage NUGET Packages.
To Install:
PM> Install-Package ExtensionsDotNet
To Update:
PM> Update-Package ExtensionsDotNet
You can also specify a specific version of ExtensionsDotNet (but we recommend always using the latest version):
PM> Install-Package ExtensionsDotNet -Version 1.0.0.0
Right click on your project and select Manage NUGET Packages...
Click on Browse and enter ExtensionsDotNet.
Select ExtensionsDotNet on the left and then click on the Install button on the right.
To update the package follow the same steps but click on Update on the right.
If you are using Visual Studio Code or another text editor and would like to use ExtensionsDotNet, you can do so using the NUGET CLI. Open up PowerShell, cmd, or your favorite shell and type in the following:
To Install:
dotnet add package ExtensionsDotNet
To Update:
dotnet update package ExtensionsDotNet
You can also use Paket CLI or Cake to install the package.