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: README.md
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -59,6 +59,20 @@ docker run -it dotnet-script --version
59
59
60
60
You can manually download all the releases in `zip` format from the [Github releases page](https://github.com/filipw/dotnet-script/releases).
61
61
62
+
### .Net Core Global Tool
63
+
64
+
.Net Core 2.1 introduces the concept of global tools meaning that we can install `dotnet-script` using nothing but the `dotnet CLI`
65
+
66
+
```shell
67
+
dotnet install tool -g dotnet-script
68
+
```
69
+
70
+
The advantage of this approach is that we will execute the same command for installation across all platforms.
71
+
72
+
> In order to se global tool we need at least [.Net Core SDK 2.1.300 preview1](https://www.microsoft.com/net/download/dotnet-core/sdk-2.1.300-preview1)
0 commit comments