Skip to content

Commit bd6bf38

Browse files
Merge pull request #488 from DustinCampbell/merge-release-into-master
Merge release into master
2 parents a6a3058 + ce4472c commit bd6bf38

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The C# extension is powered by [OmniSharp](https://github.com/OmniSharp/omnishar
1616
### **Important!** Breaking Changes as of 1.0.10
1717

1818
* The C# extension now only supports [.NET Core RC2](https://blogs.msdn.microsoft.com/dotnet/2016/05/16/announcing-net-core-rc2/). It no longer supports .NET Core RC1 or ASP .NET 5 RC1.
19-
* **Support for .csproj projects has been temporarily disabled on OS X and Linux.** This will impact anyone doing .csproj development on OS X or Linux (e.g. Unity, Xamarin, etc.). Rest assured that this will be restored in the near future. However, for now, you can use the [Legacy C# Support extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.omnisharp).
19+
* **Support for .csproj projects is partially functional on OS X and Linux.** This will impact anyone doing .csproj development on OS X or Linux (e.g. Unity, Xamarin, etc.). We are working to address this in the near future. However, for now, you can use the [Legacy C# Support extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.omnisharp).
2020

2121
### Found a Bug?
2222
Please file any issues at https://github.com/OmniSharp/omnisharp-vscode/issues.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "csharp",
33
"publisher": "ms-vscode",
4-
"version": "1.1.6",
4+
"version": "1.1.7",
55
"description": "C# for Visual Studio Code (powered by OmniSharp).",
66
"displayName": "C#",
77
"author": "Microsoft Corporation",

src/omnisharpDownload.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ import {getProxyAgent} from './proxy';
1616

1717
const decompress = require('decompress');
1818

19-
const BaseDownloadUrl = 'https://vscodeoscon.blob.core.windows.net/ext';
19+
const BaseDownloadUrl = 'https://omnisharpdownload.blob.core.windows.net/ext';
2020
const DefaultInstallLocation = path.join(__dirname, '../.omnisharp');
21-
export const OmniSharpVersion = '1.9-beta5';
21+
export const OmniSharpVersion = '1.9-beta10';
2222

2323
tmp.setGracefulCleanup();
2424

0 commit comments

Comments
 (0)