diff options
author | Alexander Polcyn <apolcyn@google.com> | 2016-07-27 14:43:33 -0700 |
---|---|---|
committer | Alexander Polcyn <apolcyn@google.com> | 2016-08-02 23:53:09 -0700 |
commit | 86e40c6e353ec07f928a0d8c15d368f3f0c6a84b (patch) | |
tree | a1a8b0551a446292c581aa0c889fe68a11995714 /templates/src/csharp/build_options.include | |
parent | 84f0f791e9802a44dae1424c29dde3c5a13a6538 (diff) |
update templates to not include runtime sections in project.json
Diffstat (limited to 'templates/src/csharp/build_options.include')
-rw-r--r-- | templates/src/csharp/build_options.include | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/src/csharp/build_options.include b/templates/src/csharp/build_options.include index 169a45a808..a200897e0f 100644 --- a/templates/src/csharp/build_options.include +++ b/templates/src/csharp/build_options.include @@ -1,4 +1,4 @@ -<%page args="executable=False,includeData=False"/>\ +<%page args="executable=False,includeData=False,includeRuntimes=True"/>\ "buildOptions": { % if executable: "emitEntryPoint": true @@ -51,6 +51,8 @@ } } }, + %endif + % if includeRuntimes: "runtimes": { "win7-x64": { }, "debian.8-x64": { }, |