Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Deseyn <tom.deseyn@gmail.com>2017-07-17 20:01:20 +0300
committerWes Haggard <weshaggard@users.noreply.github.com>2017-07-17 20:01:20 +0300
commit99809cd3d01496af6fe973fd0364f06846769640 (patch)
tree0f622939d72ca2bbfa8016f22976a10e3ff39927 /config.json
parent7ae10954114b90a0a1125a3720fde9e22e1913f0 (diff)
Move RID computations to dir.props
Move the RID calculation to the common dir.props file. Compute a ToolRuntimeRID to be used for assets that need to run as part of the tools infrastructure to build things. Compute PackageRID which will be used as the target RID for the assets that are being built. Make sure both ToolRuntimeRID and PackageRID honor both a specific and a portable RID.
Diffstat (limited to 'config.json')
-rw-r--r--config.json8
1 files changed, 7 insertions, 1 deletions
diff --git a/config.json b/config.json
index bf20cb414a..5d56835827 100644
--- a/config.json
+++ b/config.json
@@ -31,11 +31,17 @@
"defaultValue": false
},
"RuntimeOS": {
- "description": "The RuntimeOS used for building and restoring native OS dependent assets (i.e. RID specific binaries)",
+ "description": "The RuntimeOS of the build system.",
"valueType": "property",
"values": ["win7", "osx.10.10", "ubuntu.14.04", "ubuntu.16.04", "etc-other-rid-based-os-names"],
"defaultValue": ""
},
+ "PackageRID": {
+ "description": "The RID of the target package.",
+ "valueType": "property",
+ "values": ["win7-x64", "ubuntu.14.04-x64"],
+ "defaultValue": ""
+ },
"PortableBuild": {
"description": "Indicates if this is a portable build.",
"valueType": "property",