Skip to content

Commit 2eb3f47

Browse files
Update with new OmniSharp release
1 parent e88c761 commit 2eb3f47

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/omnisharpDownload.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ const Decompress = require('decompress');
1313
const Github = require('github-releases');
1414

1515
const OmnisharpRepo = 'OmniSharp/omnisharp-roslyn';
16-
const OmnisharpVersion = 'v1.9-alpha7';
16+
const OmnisharpVersion = 'v1.9-alpha10';
1717
const DefaultInstallLocation = path.join(__dirname, '../.omnisharp');
1818

1919
tmp.setGracefulCleanup();
2020

2121
function getOmnisharpAssetName(): string {
2222
switch (process.platform) {
2323
case 'win32':
24-
return 'omnisharp-win-x64-dnx451.zip';
24+
return 'omnisharp-win-x64-net451.zip';
2525
case 'darwin':
26-
return 'omnisharp-osx-x64-dnxcore50.tar.gz';
26+
return 'omnisharp-osx-x64-netcoreapp1.0.tar.gz';
2727
case 'linux':
28-
return 'omnisharp-linux-x64-dnxcore50.tar.gz';
28+
return 'omnisharp-linux-x64-netcoreapp1.0.tar.gz';
2929
default:
3030
throw new Error(`Unsupported platform: ${process.platform}`);
3131
}

0 commit comments

Comments
 (0)