Skip to content

Commit 98ef979

Browse files
Tweak runtime dependency definitions for OmniSharp and embedded Mono bits
1 parent f183afe commit 98ef979

File tree

1 file changed

+16
-17
lines changed

1 file changed

+16
-17
lines changed

package.json

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -55,86 +55,85 @@
5555
{
5656
"description": "Mono Runtime (Linux / x86)",
5757
"url": "https://omnisharpdownload.blob.core.windows.net/ext/mono.linux-x86-4.6.1.zip",
58+
"installPath": "./bin",
5859
"platforms": [
5960
"linux"
6061
],
6162
"architectures": [
6263
"x86"
6364
],
6465
"binaries": [
65-
"./bin/mono.linux-x86"
66+
"./mono.linux-x86",
67+
"./run"
6668
]
6769
},
6870
{
6971
"description": "Mono Runtime (Linux / x64)",
7072
"url": "https://omnisharpdownload.blob.core.windows.net/ext/mono.linux-x86_64-4.6.1.zip",
73+
"installPath": "./bin",
7174
"platforms": [
7275
"linux"
7376
],
7477
"architectures": [
7578
"x86_64"
7679
],
7780
"binaries": [
78-
"./bin/mono.linux-x86_64"
81+
"./mono.linux-x86_64",
82+
"./run"
7983
]
8084
},
8185
{
8286
"description": "Mono Runtime (macOS)",
8387
"url": "https://omnisharpdownload.blob.core.windows.net/ext/mono.osx-4.6.1.zip",
88+
"installPath": "./bin",
8489
"platforms": [
8590
"darwin"
8691
],
8792
"binaries": [
88-
"./bin/mono.osx"
93+
"./mono.osx",
94+
"./run"
8995
]
9096
},
9197
{
9298
"description": "Mono Framework Assemblies",
9399
"url": "https://omnisharpdownload.blob.core.windows.net/ext/framework-4.6.1.zip",
94-
"installPath": "./bin",
100+
"installPath": "./bin/framework",
95101
"platforms": [
96102
"darwin",
97103
"linux"
98104
]
99105
},
100106
{
101107
"description": "OmniSharp (.NET 4.6 / x86)",
102-
"url": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-x86-1.9-beta19.zip",
108+
"url": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-win-x86-1.9-beta19.zip",
109+
"installPath": "./bin/omnisharp",
103110
"platforms": [
104111
"win32"
105112
],
106113
"architectures": [
107114
"x86",
108115
"32-bit"
109-
],
110-
"binaries": [
111-
"./bin/run"
112116
]
113117
},
114118
{
115119
"description": "OmniSharp (.NET 4.6 / x64)",
116-
"url": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-x64-1.9-beta19.zip",
120+
"url": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-win-x64-1.9-beta19.zip",
121+
"installPath": "./bin/omnisharp",
117122
"platforms": [
118123
"win32"
119124
],
120125
"architectures": [
121126
"x86_64",
122127
"64-bit"
123-
],
124-
"binaries": [
125-
"./bin/run"
126128
]
127129
},
128130
{
129-
"description": "OmniSharp (Mono)",
131+
"description": "OmniSharp (Mono 4.6)",
130132
"url": "https://omnisharpdownload.blob.core.windows.net/ext/omnisharp-mono-1.9-beta19.zip",
131-
"installPath": "./bin",
133+
"installPath": "./bin/omnisharp",
132134
"platforms": [
133135
"darwin",
134136
"linux"
135-
],
136-
"binaries": [
137-
"./run"
138137
]
139138
},
140139
{

0 commit comments

Comments
 (0)