You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/fsharp/tutorials/getting-started/getting-started-command-line.md
+10-8Lines changed: 10 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ This article covers how you can get started with using F# on .NET Core. It will
18
18
19
19
## Prerequisites
20
20
21
-
To begin, you must install the [.NET Core SDK 1.0 or later)](https://dot.net/core). There is no need to uninstall a previous version of the .NET Core SDK, as it supports side-by-side installations.
21
+
To begin, you must install the [.NET Core SDK 1.0 or later](https://dot.net/core). There is no need to uninstall a previous version of the .NET Core SDK, as it supports side-by-side installations.
22
22
23
23
This article assumes that you know how to use a command line and have a preferred text editor. If you don't already use it, [Visual Studio Code](https://code.visualstudio.com) is a great option as a text editor for F#. To get awesome features like IntelliSense, better syntax highlighting, and more, you can download the [Ionide Extension](https://marketplace.visualstudio.com/items?itemName=Ionide.Ionide-fsharp).
24
24
@@ -44,10 +44,10 @@ Change directories to *FSNetCore* and start adding projects to the solution fold
44
44
Use the `dotnet new` command, create a Class Library project in the **src** folder named Library.
45
45
46
46
```bash
47
-
dotnet new classlib -lang F# -o src/Library
47
+
dotnet new lib -lang F# -o src/Library
48
48
```
49
49
50
-
The folowing directory structure is produced as a result of the command completing:
50
+
The following directory structure is produced as a result of the command completing:
51
51
52
52
```
53
53
└── FSNetCore
@@ -72,7 +72,7 @@ let getJsonNetJson value =
72
72
Add the Newtonsoft.Json NuGet package to the Library project.
0 commit comments