add all runtime nodes back into testing packages

pull/7682/head
Alexander Polcyn 8 years ago
parent 10776b99cf
commit 6bfe7dadf7
  1. 5
      src/csharp/Grpc.Examples.MathClient/project.json
  2. 5
      src/csharp/Grpc.Examples.MathServer/project.json
  3. 3
      src/csharp/Grpc.Examples/project.json
  4. 5
      src/csharp/Grpc.IntegrationTesting.QpsWorker/project.json
  5. 5
      src/csharp/Grpc.IntegrationTesting.StressClient/project.json
  6. 2
      templates/src/csharp/Grpc.Examples.MathClient/project.json.template
  7. 2
      templates/src/csharp/Grpc.Examples.MathServer/project.json.template
  8. 3
      templates/src/csharp/Grpc.Examples/project.json.template
  9. 2
      templates/src/csharp/Grpc.IntegrationTesting.QpsWorker/project.json.template
  10. 2
      templates/src/csharp/Grpc.IntegrationTesting.StressClient/project.json.template
  11. 4
      templates/src/csharp/build_options.include

@ -42,6 +42,11 @@
} }
} }
}, },
"runtimes": {
"win7-x64": { },
"debian.8-x64": { },
"osx.10.11-x64": { }
},
"dependencies": { "dependencies": {
"Grpc.Examples": { "Grpc.Examples": {

@ -42,6 +42,11 @@
} }
} }
}, },
"runtimes": {
"win7-x64": { },
"debian.8-x64": { },
"osx.10.11-x64": { }
},
"dependencies": { "dependencies": {
"Grpc.Examples": { "Grpc.Examples": {

@ -20,11 +20,12 @@
"System.IO": "" "System.IO": ""
} }
}, },
"netstandard1.5": { "netcoreapp1.0": {
"imports": [ "imports": [
"portable-net45" "portable-net45"
], ],
"dependencies": { "dependencies": {
"Microsoft.NETCore.App": "1.0.0",
"NETStandard.Library": "1.6.0" "NETStandard.Library": "1.6.0"
} }
} }

@ -44,6 +44,11 @@
} }
} }
}, },
"runtimes": {
"win7-x64": { },
"debian.8-x64": { },
"osx.10.11-x64": { }
},
"dependencies": { "dependencies": {
"Grpc.IntegrationTesting": { "Grpc.IntegrationTesting": {

@ -44,6 +44,11 @@
} }
} }
}, },
"runtimes": {
"win7-x64": { },
"debian.8-x64": { },
"osx.10.11-x64": { }
},
"dependencies": { "dependencies": {
"Grpc.IntegrationTesting": { "Grpc.IntegrationTesting": {

@ -1,7 +1,7 @@
%YAML 1.2 %YAML 1.2
--- | --- |
{ {
<%include file="../build_options.include" args="executable=True,includeRuntimes=False"/> <%include file="../build_options.include" args="executable=True"/>
"dependencies": { "dependencies": {
"Grpc.Examples": { "Grpc.Examples": {
"target": "project" "target": "project"

@ -1,7 +1,7 @@
%YAML 1.2 %YAML 1.2
--- | --- |
{ {
<%include file="../build_options.include" args="executable=True,includeRuntimes=False"/> <%include file="../build_options.include" args="executable=True"/>
"dependencies": { "dependencies": {
"Grpc.Examples": { "Grpc.Examples": {
"target": "project" "target": "project"

@ -15,11 +15,12 @@
"System.IO": "" "System.IO": ""
} }
}, },
"netstandard1.5": { "netcoreapp1.0": {
"imports": [ "imports": [
"portable-net45" "portable-net45"
], ],
"dependencies": { "dependencies": {
"Microsoft.NETCore.App": "1.0.0",
"NETStandard.Library": "1.6.0" "NETStandard.Library": "1.6.0"
} }
} }

@ -1,7 +1,7 @@
%YAML 1.2 %YAML 1.2
--- | --- |
{ {
<%include file="../build_options.include" args="executable=True,includeData=True,includeRuntimes=False"/> <%include file="../build_options.include" args="executable=True,includeData=True"/>
"dependencies": { "dependencies": {
"Grpc.IntegrationTesting": { "Grpc.IntegrationTesting": {
"target": "project" "target": "project"

@ -1,7 +1,7 @@
%YAML 1.2 %YAML 1.2
--- | --- |
{ {
<%include file="../build_options.include" args="executable=True,includeData=True,includeRuntimes=False"/> <%include file="../build_options.include" args="executable=True,includeData=True"/>
"dependencies": { "dependencies": {
"Grpc.IntegrationTesting": { "Grpc.IntegrationTesting": {
"target": "project" "target": "project"

@ -1,4 +1,4 @@
<%page args="executable=False,includeData=False,includeRuntimes=True"/>\ <%page args="executable=False,includeData=False"/>\
"buildOptions": { "buildOptions": {
% if executable: % if executable:
"emitEntryPoint": true "emitEntryPoint": true
@ -52,10 +52,8 @@
} }
}, },
%endif %endif
% if includeRuntimes:
"runtimes": { "runtimes": {
"win7-x64": { }, "win7-x64": { },
"debian.8-x64": { }, "debian.8-x64": { },
"osx.10.11-x64": { } "osx.10.11-x64": { }
}, },
% endif
Loading…
Cancel
Save