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
In order to compile, test and archive .NET Core projects, you must have the [.NET Core SDK](https://www.microsoft.com/net/download) installed locally and the environment variable `DOTNET_HOME` set to the location where the `dotnet` executable can be found.
36
+
In order to compile, test and archive .NET projects, you must have the [.NET SDK](https://dotnet.microsoft.com/en-us/download) installed locally and ensure that the `dotnet` executable is included in the `PATH` environment variable.
37
37
38
38
For example, create a C# project called `Apache.OpenWhisk.Example.Dotnet`:
39
39
40
40
```bash
41
-
dotnet new classlib -n Apache.OpenWhisk.Example.Dotnet -lang C# -f netstandard2.0
41
+
dotnet new classlib -n Apache.OpenWhisk.Example.Dotnet -lang C# -f netstandard2.1
42
42
cd Apache.OpenWhisk.Example.Dotnet
43
43
```
44
44
@@ -127,18 +127,18 @@ To use on a deployment of OpenWhisk that contains the runtime as a kind:
0 commit comments