diff options
author | Jan Tattermusch <jtattermusch@google.com> | 2016-06-17 16:53:43 -0700 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@google.com> | 2016-06-17 17:31:40 -0700 |
commit | fab857eefc20a0dc96cd4e6a39a95892e3c105dc (patch) | |
tree | a65e3d317fd0bedf8f93e9fe6bfe868ebb3cf697 /src/csharp/Grpc.IntegrationTesting.StressClient/project.json | |
parent | 317b8acf995ef3360df4c04ba180355e6b62e59c (diff) |
address review comments
Diffstat (limited to 'src/csharp/Grpc.IntegrationTesting.StressClient/project.json')
-rw-r--r-- | src/csharp/Grpc.IntegrationTesting.StressClient/project.json | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/csharp/Grpc.IntegrationTesting.StressClient/project.json b/src/csharp/Grpc.IntegrationTesting.StressClient/project.json new file mode 100644 index 0000000000..d8e47b1169 --- /dev/null +++ b/src/csharp/Grpc.IntegrationTesting.StressClient/project.json @@ -0,0 +1,32 @@ +{ + "buildOptions": { + "compile": "**/*.cs", + "copyToOutput": { + "mappings": { + "nativelibs/windows_x64/grpc_csharp_ext.dll": "../../../vsprojects/x64/Debug/grpc_csharp_ext.dll", + "nativelibs/windows_x86/grpc_csharp_ext.dll": "../../../vsprojects/Debug/grpc_csharp_ext.dll" + } + }, + "emitEntryPoint": true + }, + "dependencies": { + "Grpc.IntegrationTesting": { + "target": "project" + } + }, + "frameworks": { + "net45": { }, + "netstandard1.5": { + "imports": [ + "portable-net45", + "net45" + ], + "dependencies": { + "NETStandard.Library": "1.5.0-rc2-24027" + } + } + }, + "runtimes": { + "win7-x64": { } + } +} |