diff options
author | Jan Tattermusch <jtattermusch@google.com> | 2016-06-16 09:36:11 -0700 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@google.com> | 2016-06-16 16:59:43 -0700 |
commit | 317b8acf995ef3360df4c04ba180355e6b62e59c (patch) | |
tree | 52a58c0e7420526bae8fcad9ddcc7c1f861bc9f8 /src/csharp/Grpc.IntegrationTesting.QpsWorker | |
parent | 474a574ba7ebd425d140c31b264c39b8e48d303d (diff) |
migrate everything to netstandard1.5
Diffstat (limited to 'src/csharp/Grpc.IntegrationTesting.QpsWorker')
-rw-r--r-- | src/csharp/Grpc.IntegrationTesting.QpsWorker/project.json | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/src/csharp/Grpc.IntegrationTesting.QpsWorker/project.json b/src/csharp/Grpc.IntegrationTesting.QpsWorker/project.json index 6ad74d5998..a5a87f9882 100644 --- a/src/csharp/Grpc.IntegrationTesting.QpsWorker/project.json +++ b/src/csharp/Grpc.IntegrationTesting.QpsWorker/project.json @@ -10,9 +10,24 @@ "emitEntryPoint": true }, "dependencies": { - "Grpc.IntegrationTesting": "1.0.0" + "Grpc.IntegrationTesting": { + "version": "1.0.0", + "taget": "project" + } }, "frameworks": { - "net45": { } + "net45": { }, + "netstandard1.5": { + "imports": [ + "portable-net45", + "net45" + ], + "dependencies": { + "NETStandard.Library": "1.5.0-rc2-24027" + } + } + }, + "runtimes": { + "win7-x64": { } } } |