-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathasconfig.release.json
60 lines (60 loc) · 1.17 KB
/
asconfig.release.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"extends": "asconfig.json",
"compilerOptions": {
"verbose-stacktraces": false,
"advanced-telemetry": false,
"optimize": true,
"output": "bin/release/R3Air.swf",
"define": [
{
"name": "CONFIG::debug",
"value": false
},
{
"name": "CONFIG::release",
"value": true
},
{
"name": "CONFIG::timeStamp",
"value": "\"#{DATESTAMP}#\""
},
{
"name": "R3::HASH_STRING",
"value": "\"hash:#{SCORE_SAVE_SALT}#\""
},
{
"name": "R3::VERSION",
"value": "\"#{VERSION}#\""
},
{
"name": "R3::VERSION_SUFFIX",
"value": "\"\""
}
],
"debug": false,
"omit-trace-statements": true,
// Overrides left here for alternate builds.
"swf-version": 43,
"target-player": "32.0"
},
"airOptions": {
"windows": {
"target": "bundle",
"output": "dist/R3Release",
"signingOptions": {
"storetype": "pkcs12",
"keystore": "certs/air-cert.p12",
"tsa": "http://timestamp.digicert.com"
}
},
"mac": {
"target": "bundle",
"output": "dist/r3Release.app",
"signingOptions": {
"storetype": "pkcs12",
"keystore": "certs/air-cert.p12",
"tsa": "http://timestamp.digicert.com"
}
}
}
}