From a8a88bceef52c5495fc724bc899584ca1033a657 Mon Sep 17 00:00:00 2001 From: Craig Date: Wed, 24 Jul 2019 16:40:17 +0100 Subject: [PATCH] create Adding C.W.C. to Your Proj. --- ...Console.Waterworks.Core-to-Your-Project.md | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Adding-Console.Waterworks.Core-to-Your-Project.md diff --git a/Adding-Console.Waterworks.Core-to-Your-Project.md b/Adding-Console.Waterworks.Core-to-Your-Project.md new file mode 100644 index 0000000..81a1f40 --- /dev/null +++ b/Adding-Console.Waterworks.Core-to-Your-Project.md @@ -0,0 +1,20 @@ +The are several ways to add Console.Waterworks.Core (C.W.C.) to your project. You can do it via the Package-Manager Console or the G.U.I. -- both are in Visual Studio. Another way to add C.W.C. to your project is via the .Net CLI tool. + + +```powershell +// Make sure you use enter the version number you want. + +// Package Manager Console +Install-Package Console.Waterworks.Core -Version 1.0.0.1 + +// .Net CLI Tool +dotnet add package Console.Waterworks.Core --version 1.0.0.1 +``` + +If you are using the NuGet Package Manager in Visual Studio, you can search for C.W.C. and install it from there. If you do that, your Visual Studio should look similar to the image below. + +![nuget package manager gui](attachments/nuget-package-manager-screenshot.png) + +You can find more information about C.W.C. on NuGet's website. If you would like to do that, use the following links: + +- [Console.Waterworks.Core NuGet Profile](https://www.nuget.org/packages/Console.Waterworks.Core/)