Creating a .NET Standard 2.0 library
In this recipe, we will be looking at the basics of functional programming using C# inside a .NET Standard 2.0 library.
Getting ready
Let's get ready and open Visual Studio 2017. You should also check to see whether it's updated to the latest version.
How to do it...
- Open Visual Studio 2017.
- Click
File
|New
|Project
to create a project. - In the
New Project
dialog box, expand theOther Project Types
node in the left-hand pane and selectVisual Studio Solutions
. In the right-hand pane, selectBlank Solution
. - In the
Name:
textbox, typeChapter4.Functions
and, in theLocation:
textbox, select a path from the drop-down box or click on theBrowse...
button to locate a path:

- Click
OK
. - Now, your
Solution Explorer
(Ctrl + Alt + L) should look like this:

- Now, right-click on the
Chapter4.Functions
label in theSolution Explorer
and selectAdd
|New Project
. - In the
New Project
dialog box, expand theVisual C#
node.
- Select
.NET Standard
in the left-hand pane andClass Library...