aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/src/csharp/Grpc.Examples.Tests
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2016-06-21 08:00:42 -0700
committerGravatar Jan Tattermusch <jtattermusch@google.com>2016-06-21 10:04:32 -0700
commit939e9ca6d82f2558702e5fa859d16ca7052f746b (patch)
tree43b410fcda30cecd96347bb1f206060d1a016182 /templates/src/csharp/Grpc.Examples.Tests
parent64c137c4f5e23e898d5fbc6306b191daaf147ec0 (diff)
use template to generate project.json files
Diffstat (limited to 'templates/src/csharp/Grpc.Examples.Tests')
-rw-r--r--templates/src/csharp/Grpc.Examples.Tests/project.json.template23
1 files changed, 23 insertions, 0 deletions
diff --git a/templates/src/csharp/Grpc.Examples.Tests/project.json.template b/templates/src/csharp/Grpc.Examples.Tests/project.json.template
new file mode 100644
index 0000000000..21765f0565
--- /dev/null
+++ b/templates/src/csharp/Grpc.Examples.Tests/project.json.template
@@ -0,0 +1,23 @@
+%YAML 1.2
+--- |
+ {
+ <%include file="../build_options.include" args="executable=True"/>
+ "dependencies": {
+ "Grpc.Examples": {
+ "target": "project"
+ },
+ "NUnit": "3.2.0",
+ "NUnitLite": "3.2.0-*"
+ },
+ "frameworks": {
+ "net45": { },
+ "netstandard1.5": {
+ "imports": [
+ "portable-net45"
+ ],
+ "dependencies": {
+ "NETStandard.Library": "1.5.0-rc2-24027"
+ }
+ }
+ }
+ }