Skip to content

Commit b2e2a5c

Browse files
Merge pull request #194 from DustinCampbell/merge-master
Merge master into dev
2 parents 72d0348 + 05b34ef commit b2e2a5c

File tree

3 files changed

+21
-21
lines changed

3 files changed

+21
-21
lines changed

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.0.0-rc2",
4+
"version": "1.0.1-rc2",
55
"description": "C# for Visual Studio Code (powered by OmniSharp).",
66
"displayName": "C#",
77
"author": "Microsoft Corporation",

src/coreclr-debug/main.ts

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -332,28 +332,28 @@ function createProjectJson(targetRuntime: string): any
332332
emitEntryPoint: true
333333
},
334334
dependencies: {
335-
"Microsoft.VisualStudio.clrdbg": "14.0.25201-preview-2911579",
335+
"Microsoft.VisualStudio.clrdbg": "14.0.25208-preview-2924185",
336336
"Microsoft.VisualStudio.clrdbg.MIEngine": "14.0.30401-preview-1",
337337
"Microsoft.VisualStudio.OpenDebugAD7": "1.0.20405-preview-1",
338-
"NETStandard.Library": "1.5.0-rc2-23931",
338+
"NETStandard.Library": "1.5.0-rc2-24008",
339339
"Newtonsoft.Json": "7.0.1",
340340
"Microsoft.VisualStudio.Debugger.Interop.Portable": "1.0.1",
341-
"System.Collections.Specialized": "4.0.1-rc2-23931",
342-
"System.Collections.Immutable": "1.2.0-rc2-23931",
343-
"System.Diagnostics.Process" : "4.1.0-rc2-23931",
344-
"System.Diagnostics.StackTrace": "4.0.1-rc2-23931",
345-
"System.Dynamic.Runtime": "4.0.11-rc2-23931",
346-
"Microsoft.CSharp": "4.0.1-rc2-23931",
347-
"System.Threading.Tasks.Dataflow": "4.6.0-rc2-23931",
348-
"System.Threading.Thread": "4.0.0-rc2-23931",
349-
"System.Xml.XDocument": "4.0.11-rc2-23931",
350-
"System.Xml.XmlDocument": "4.0.1-rc2-23931",
351-
"System.Xml.XmlSerializer": "4.0.11-rc2-23931",
352-
"System.ComponentModel": "4.0.1-rc2-23931",
353-
"System.ComponentModel.Annotations": "4.1.0-rc2-23931",
354-
"System.ComponentModel.EventBasedAsync": "4.0.11-rc2-23931",
355-
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-23931",
356-
"System.Net.Http": "4.0.1-rc2-23931"
341+
"System.Collections.Specialized": "4.0.1-rc2-24008",
342+
"System.Collections.Immutable": "1.2.0-rc2-24008",
343+
"System.Diagnostics.Process" : "4.1.0-rc2-24008",
344+
"System.Diagnostics.StackTrace": "4.0.1-rc2-24008",
345+
"System.Dynamic.Runtime": "4.0.11-rc2-24008",
346+
"Microsoft.CSharp": "4.0.1-rc2-24008",
347+
"System.Threading.Tasks.Dataflow": "4.6.0-rc2-24008",
348+
"System.Threading.Thread": "4.0.0-rc2-24008",
349+
"System.Xml.XDocument": "4.0.11-rc2-24008",
350+
"System.Xml.XmlDocument": "4.0.1-rc2-24008",
351+
"System.Xml.XmlSerializer": "4.0.11-rc2-24008",
352+
"System.ComponentModel": "4.0.1-rc2-24008",
353+
"System.ComponentModel.Annotations": "4.1.0-rc2-24008",
354+
"System.ComponentModel.EventBasedAsync": "4.0.11-rc2-24008",
355+
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-24008",
356+
"System.Net.Http": "4.0.1-rc2-24008"
357357
},
358358
frameworks: {
359359
"netstandardapp1.5": {

src/omnisharpPath.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import * as path from 'path';
1010
import * as vscode from 'vscode';
1111

1212
const runFileName = process.platform === 'win32' ? 'run.cmd' : 'run';
13-
const omnisharpFileName = process.platform === 'win32' ? 'omnisharp.cmd' : 'omnisharp';
14-
const omnisharpExeFileName = process.platform === 'win32' ? 'omnisharp.exe' : 'omnisharp';
13+
const omnisharpFileName = process.platform === 'win32' ? 'OmniSharp.cmd' : 'OmniSharp';
14+
const omnisharpExeFileName = process.platform === 'win32' ? 'OmniSharp.exe' : 'OmniSharp';
1515

1616
function getLaunchFilePath(filePathOrFolder: string): Promise<string> {
1717
return fs.lstatAsync(filePathOrFolder).then(stats => {

0 commit comments

Comments
 (0)