populate Adding C.W. to Your Project.

master
Craig Oates 5 years ago
parent
commit
708bcf099a
  1. 21
      Adding-Console.Waterworks-to-Your-Project.md

21
Adding-Console.Waterworks-to-Your-Project.md

@ -0,0 +1,21 @@
While there are several ways to add a NuGet package to a project, I will keep it simple. I will show you how to add Console.Waterworks (C.W.) to your project via the Package Manager console. This is because you might be working with a project, outside a Visual Studio environment.
To add Console.Waterworks to your .Net console project, use the following line;
```powershell
// Change the version the number as you see fit.
Install-Package Console.Waterworks -Version 1.0.0.2
```
To add Console.Waterworks.Core to you .Net Core console project, use the following line;
```powershell
// Change the version the number as you see fit.
Install-Package Console.Waterworks.Core -Version 1.0.0.1
```
For more information about release versions, check out their individual NuGet pages via;
* [Console.Waterworks NuGet page](https://www.nuget.org/packages/Console.Waterworks)
* [Console.Waterworks.Core NuGet page](https://www.nuget.org/packages/Console.Waterworks.Core/)
If you are familiar with Visual Studio's Package Manager, feel free to use that instead.
Loading…
Cancel
Save