From 5e77b921107071cd5586ab9d59c208b984262a07 Mon Sep 17 00:00:00 2001 From: Dustin Campbell Date: Wed, 6 Apr 2016 12:58:07 -0700 Subject: [PATCH 1/2] Don't search for OmniSharp launcher case-insensitively --- src/omnisharpPath.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/omnisharpPath.ts b/src/omnisharpPath.ts index 03360a5c9f..a1f4392779 100644 --- a/src/omnisharpPath.ts +++ b/src/omnisharpPath.ts @@ -10,8 +10,8 @@ import * as path from 'path'; import * as vscode from 'vscode'; const runFileName = process.platform === 'win32' ? 'run.cmd' : 'run'; -const omnisharpFileName = process.platform === 'win32' ? 'omnisharp.cmd' : 'omnisharp'; -const omnisharpExeFileName = process.platform === 'win32' ? 'omnisharp.exe' : 'omnisharp'; +const omnisharpFileName = process.platform === 'win32' ? 'OmniSharp.cmd' : 'OmniSharp'; +const omnisharpExeFileName = process.platform === 'win32' ? 'OmniSharp.exe' : 'OmniSharp'; function getLaunchFilePath(filePathOrFolder: string): Promise { return fs.lstatAsync(filePathOrFolder).then(stats => { From 04632ad27896e7f94221470035ce4de7386634c5 Mon Sep 17 00:00:00 2001 From: Gregg Miskelly Date: Fri, 8 Apr 2016 15:29:25 -0700 Subject: [PATCH 2/2] Update CoreCLR to rc2-24008 This updates the packages that the C# extension uses to packages that use rc2-24008. --- package.json | 2 +- src/coreclr-debug/main.ts | 36 ++++++++++++++++++------------------ 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/package.json b/package.json index 34c10ce38d..b44e9de4a0 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "csharp", "publisher": "ms-vscode", - "version": "1.0.0-rc2", + "version": "1.0.1-rc2", "description": "C# for Visual Studio Code (powered by OmniSharp).", "displayName": "C#", "author": "Microsoft Corporation", diff --git a/src/coreclr-debug/main.ts b/src/coreclr-debug/main.ts index e125742973..9102adb6b3 100644 --- a/src/coreclr-debug/main.ts +++ b/src/coreclr-debug/main.ts @@ -263,28 +263,28 @@ function createProjectJson(targetRuntime: string): any emitEntryPoint: true }, dependencies: { - "Microsoft.VisualStudio.clrdbg": "14.0.25201-preview-2911579", + "Microsoft.VisualStudio.clrdbg": "14.0.25208-preview-2924185", "Microsoft.VisualStudio.clrdbg.MIEngine": "14.0.30401-preview-1", "Microsoft.VisualStudio.OpenDebugAD7": "1.0.20405-preview-1", - "NETStandard.Library": "1.5.0-rc2-23931", + "NETStandard.Library": "1.5.0-rc2-24008", "Newtonsoft.Json": "7.0.1", "Microsoft.VisualStudio.Debugger.Interop.Portable": "1.0.1", - "System.Collections.Specialized": "4.0.1-rc2-23931", - "System.Collections.Immutable": "1.2.0-rc2-23931", - "System.Diagnostics.Process" : "4.1.0-rc2-23931", - "System.Diagnostics.StackTrace": "4.0.1-rc2-23931", - "System.Dynamic.Runtime": "4.0.11-rc2-23931", - "Microsoft.CSharp": "4.0.1-rc2-23931", - "System.Threading.Tasks.Dataflow": "4.6.0-rc2-23931", - "System.Threading.Thread": "4.0.0-rc2-23931", - "System.Xml.XDocument": "4.0.11-rc2-23931", - "System.Xml.XmlDocument": "4.0.1-rc2-23931", - "System.Xml.XmlSerializer": "4.0.11-rc2-23931", - "System.ComponentModel": "4.0.1-rc2-23931", - "System.ComponentModel.Annotations": "4.1.0-rc2-23931", - "System.ComponentModel.EventBasedAsync": "4.0.11-rc2-23931", - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-23931", - "System.Net.Http": "4.0.1-rc2-23931" + "System.Collections.Specialized": "4.0.1-rc2-24008", + "System.Collections.Immutable": "1.2.0-rc2-24008", + "System.Diagnostics.Process" : "4.1.0-rc2-24008", + "System.Diagnostics.StackTrace": "4.0.1-rc2-24008", + "System.Dynamic.Runtime": "4.0.11-rc2-24008", + "Microsoft.CSharp": "4.0.1-rc2-24008", + "System.Threading.Tasks.Dataflow": "4.6.0-rc2-24008", + "System.Threading.Thread": "4.0.0-rc2-24008", + "System.Xml.XDocument": "4.0.11-rc2-24008", + "System.Xml.XmlDocument": "4.0.1-rc2-24008", + "System.Xml.XmlSerializer": "4.0.11-rc2-24008", + "System.ComponentModel": "4.0.1-rc2-24008", + "System.ComponentModel.Annotations": "4.1.0-rc2-24008", + "System.ComponentModel.EventBasedAsync": "4.0.11-rc2-24008", + "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24008", + "System.Net.Http": "4.0.1-rc2-24008" }, frameworks: { "netstandardapp1.5": {