aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
authorGravatar Alexander Polcyn <apolcyn@google.com>2016-08-09 09:40:16 -0700
committerGravatar Alex Polcyn <apolcyn@google.com>2016-08-09 22:52:35 -0700
commit5312815ff212e6d4bbea1f1f6264b1295ca0106c (patch)
tree0b7373b0addb7651261bfe7c5066af5185dbad8b /examples
parentc6446bf3d8a2492cbe8bae213deb6b7cf547d95d (diff)
add netcore portability package dependency
Diffstat (limited to 'examples')
-rw-r--r--examples/csharp/helloworld-from-cli/Greeter/project.json3
-rw-r--r--examples/csharp/helloworld-from-cli/GreeterClient/project.json3
-rw-r--r--examples/csharp/helloworld-from-cli/GreeterServer/project.json3
3 files changed, 9 insertions, 0 deletions
diff --git a/examples/csharp/helloworld-from-cli/Greeter/project.json b/examples/csharp/helloworld-from-cli/Greeter/project.json
index e06854d122..8774941810 100644
--- a/examples/csharp/helloworld-from-cli/Greeter/project.json
+++ b/examples/csharp/helloworld-from-cli/Greeter/project.json
@@ -13,6 +13,9 @@
"frameworkAssemblies": {
"System.Runtime": "",
"System.IO": ""
+ },
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1"
}
}
}
diff --git a/examples/csharp/helloworld-from-cli/GreeterClient/project.json b/examples/csharp/helloworld-from-cli/GreeterClient/project.json
index dc72a30eb8..c2bf694cd8 100644
--- a/examples/csharp/helloworld-from-cli/GreeterClient/project.json
+++ b/examples/csharp/helloworld-from-cli/GreeterClient/project.json
@@ -17,6 +17,9 @@
"frameworkAssemblies": {
"System.Runtime": "",
"System.IO": ""
+ },
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1"
}
}
}
diff --git a/examples/csharp/helloworld-from-cli/GreeterServer/project.json b/examples/csharp/helloworld-from-cli/GreeterServer/project.json
index 4bf201bef3..29a10670f4 100644
--- a/examples/csharp/helloworld-from-cli/GreeterServer/project.json
+++ b/examples/csharp/helloworld-from-cli/GreeterServer/project.json
@@ -17,6 +17,9 @@
"frameworkAssemblies": {
"System.Runtime": "",
"System.IO": ""
+ },
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.0.1"
}
}
}