aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/src/csharp/Grpc.IntegrationTesting.Server
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2016-07-26 16:01:13 -0700
committerGravatar Jan Tattermusch <jtattermusch@google.com>2016-07-30 04:16:08 +0800
commit36d15404f56760e0756d146fa2dc03d2dc72d09a (patch)
tree74401b908ad092419fda15a6017b652a00d33dd5 /templates/src/csharp/Grpc.IntegrationTesting.Server
parent660333a87b5c95e9e2ab40d9629e8f7727e5fbec (diff)
use netcoreapp1.0 for executable projects
Diffstat (limited to 'templates/src/csharp/Grpc.IntegrationTesting.Server')
-rw-r--r--templates/src/csharp/Grpc.IntegrationTesting.Server/project.json.template3
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/src/csharp/Grpc.IntegrationTesting.Server/project.json.template b/templates/src/csharp/Grpc.IntegrationTesting.Server/project.json.template
index 7709c60241..93151f2b89 100644
--- a/templates/src/csharp/Grpc.IntegrationTesting.Server/project.json.template
+++ b/templates/src/csharp/Grpc.IntegrationTesting.Server/project.json.template
@@ -9,12 +9,13 @@
},
"frameworks": {
"net45": { },
- "netstandard1.5": {
+ "netcoreapp1.0": {
"imports": [
"portable-net45",
"net45"
],
"dependencies": {
+ "Microsoft.NETCore.App": "1.0.0",
"NETStandard.Library": "1.6.0"
}
}