From 0de9d6e5255e5b3172c07b16d9d9e8c050497aca Mon Sep 17 00:00:00 2001 From: Cagri Aslan Date: Wed, 29 Jun 2016 10:27:01 -0700 Subject: [PATCH] Update package versions --- package.json | 2 +- src/coreclr-debug/install.ts | 46 +++++++++++++++++------------------- 2 files changed, 23 insertions(+), 25 deletions(-) diff --git a/package.json b/package.json index e976d00d01..81374d988e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "csharp", "publisher": "ms-vscode", - "version": "1.1.7", + "version": "1.2.0", "description": "C# for Visual Studio Code (powered by OmniSharp).", "displayName": "C#", "author": "Microsoft Corporation", diff --git a/src/coreclr-debug/install.ts b/src/coreclr-debug/install.ts index 58a9fa2718..3f392983cd 100644 --- a/src/coreclr-debug/install.ts +++ b/src/coreclr-debug/install.ts @@ -162,33 +162,31 @@ export class DebugInstaller emitEntryPoint: true }, dependencies: { - "Microsoft.VisualStudio.clrdbg": "14.0.25406-preview-3044032", - "Microsoft.VisualStudio.clrdbg.MIEngine": "14.0.30610-preview-1", - "Microsoft.VisualStudio.OpenDebugAD7": "1.0.20614-preview-2", - "NETStandard.Library": "1.5.0-rc2-24027", + "Microsoft.VisualStudio.clrdbg": "14.0.25429-preview-3095034", + "Microsoft.VisualStudio.clrdbg.MIEngine": "14.0.30629-preview-1", + "Microsoft.VisualStudio.OpenDebugAD7": "1.0.20628-preview-1", + "NETStandard.Library": "1.6.0", "Newtonsoft.Json": "7.0.1", "Microsoft.VisualStudio.Debugger.Interop.Portable": "1.0.1", - "System.Collections.Specialized": "4.0.1-rc2-24027", - "System.Collections.Immutable": "1.2.0-rc2-24027", - "System.Diagnostics.Process" : "4.1.0-rc2-24027", - "System.Diagnostics.StackTrace": "4.0.1-rc2-24027", - "System.Dynamic.Runtime": "4.0.11-rc2-24027", - "Microsoft.CSharp": "4.0.1-rc2-24027", - "System.Threading.Tasks.Dataflow": "4.6.0-rc2-24027", - "System.Threading.Thread": "4.0.0-rc2-24027", - "System.Xml.XDocument": "4.0.11-rc2-24027", - "System.Xml.XmlDocument": "4.0.1-rc2-24027", - "System.Xml.XmlSerializer": "4.0.11-rc2-24027", - "System.ComponentModel": "4.0.1-rc2-24027", - "System.ComponentModel.Annotations": "4.1.0-rc2-24027", - "System.ComponentModel.EventBasedAsync": "4.0.11-rc2-24027", - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24027", - "System.Net.Http": "4.0.1-rc2-24027" + "System.Collections.Specialized": "4.0.1", + "System.Collections.Immutable": "1.2.0", + "System.Diagnostics.Process" : "4.1.0", + "System.Diagnostics.StackTrace": "4.0.1", + "System.Dynamic.Runtime": "4.0.11", + "Microsoft.CSharp": "4.0.1", + "System.Threading.Tasks.Dataflow": "4.6.0", + "System.Threading.Thread": "4.0.0", + "System.Xml.XDocument": "4.0.11", + "System.Xml.XmlDocument": "4.0.1", + "System.Xml.XmlSerializer": "4.0.11", + "System.ComponentModel": "4.0.1", + "System.ComponentModel.Annotations": "4.1.0", + "System.ComponentModel.EventBasedAsync": "4.0.11", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Net.Http": "4.1.0" }, frameworks: { - "netcoreapp1.0": { - imports: [ "dnxcore50", "portable-net45+win8" ] - } + "netcoreapp1.0": { } }, runtimes: { } @@ -197,7 +195,7 @@ export class DebugInstaller projectJson.runtimes[targetRuntime] = {}; if (this._isOffline) { - projectJson.dependencies["Microsoft.NetCore.DotNetHostPolicy"] = "1.0.1-rc-002702"; + projectJson.dependencies["Microsoft.NetCore.DotNetHostPolicy"] = "1.0.1"; } return projectJson;