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.
29
37
30
38
For example, create a C# project called `Apache.OpenWhisk.Example.Dotnet`:
@@ -37,11 +45,13 @@ cd Apache.OpenWhisk.Example.Dotnet
37
45
Install the [Newtonsoft.Json](https://www.newtonsoft.com/json) NuGet package as follows:
38
46
39
47
```bash
40
-
dotnet add package Newtonsoft.Json -v 12.0.2
48
+
dotnet add package Newtonsoft.Json -v 13.0.1
41
49
```
42
50
43
51
Now create a file called `Hello.cs` with the following content:
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.
29
37
30
38
For example, create a C# project called `Apache.OpenWhisk.Example.Dotnet`:
@@ -37,11 +45,13 @@ cd Apache.OpenWhisk.Example.Dotnet
37
45
Install the [Newtonsoft.Json](https://www.newtonsoft.com/json) NuGet package as follows:
38
46
39
47
```bash
40
-
dotnet add package Newtonsoft.Json -v 12.0.2
48
+
dotnet add package Newtonsoft.Json -v 13.0.1
41
49
```
42
50
43
51
Now create a file called `Hello.cs` with the following content:
0 commit comments