aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/Grpc.IntegrationTesting/project.json
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2016-06-16 09:36:11 -0700
committerGravatar Jan Tattermusch <jtattermusch@google.com>2016-06-16 16:59:43 -0700
commit317b8acf995ef3360df4c04ba180355e6b62e59c (patch)
tree52a58c0e7420526bae8fcad9ddcc7c1f861bc9f8 /src/csharp/Grpc.IntegrationTesting/project.json
parent474a574ba7ebd425d140c31b264c39b8e48d303d (diff)
migrate everything to netstandard1.5
Diffstat (limited to 'src/csharp/Grpc.IntegrationTesting/project.json')
-rw-r--r--src/csharp/Grpc.IntegrationTesting/project.json34
1 files changed, 31 insertions, 3 deletions
diff --git a/src/csharp/Grpc.IntegrationTesting/project.json b/src/csharp/Grpc.IntegrationTesting/project.json
index 0093531fa9..6c1d31b3c4 100644
--- a/src/csharp/Grpc.IntegrationTesting/project.json
+++ b/src/csharp/Grpc.IntegrationTesting/project.json
@@ -1,23 +1,51 @@
{
"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"
+ },
+ "include": "data/*"
+ },
"emitEntryPoint": true
},
"dependencies": {
- "Grpc.Auth": "0.0.1",
- "Grpc.Core": "0.0.1",
+ "Grpc.Auth": {
+ "version": "0.0.1",
+ "taget": "project"
+ },
+ "Grpc.Core": {
+ "version": "0.0.1",
+ "taget": "project"
+ },
"Google.Protobuf": "3.0.0-beta3",
"CommandLineParser": "1.9.71",
- "Moq": "4.2.1510.2205",
"NUnit": "3.2.0",
"NUnitLite": "3.2.0-*"
},
"frameworks": {
"net45": {
+ "dependencies": {
+ "Moq": "4.2.1510.2205"
+ },
"frameworkAssemblies": {
"System.Runtime": "",
"System.IO": ""
}
+ },
+ "netstandard1.5": {
+ "imports": [
+ "portable-net45",
+ "net45"
+ ],
+ "dependencies": {
+ "NETStandard.Library": "1.5.0-rc2-24027",
+ "System.Linq.Expressions": "4.0.11-rc2-24027"
+ }
}
+ },
+ "runtimes": {
+ "win7-x64": { }
}
}