Skip to content
Adrian Gabor edited this page Oct 15, 2021 · 7 revisions

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.

Using the Package Manager Console:

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

Using NUGET Package Manager UI:

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.

Using the CLI

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.

Using ExtensionsDotNet

Clone this wiki locally