Skip to content

Commit 0de9d6e

Browse files
author
Cagri Aslan
committed
Update package versions
1 parent 1b4ba1d commit 0de9d6e

File tree

2 files changed

+23
-25
lines changed

2 files changed

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

src/coreclr-debug/install.ts

Lines changed: 22 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -162,33 +162,31 @@ export class DebugInstaller
162162
emitEntryPoint: true
163163
},
164164
dependencies: {
165-
"Microsoft.VisualStudio.clrdbg": "14.0.25406-preview-3044032",
166-
"Microsoft.VisualStudio.clrdbg.MIEngine": "14.0.30610-preview-1",
167-
"Microsoft.VisualStudio.OpenDebugAD7": "1.0.20614-preview-2",
168-
"NETStandard.Library": "1.5.0-rc2-24027",
165+
"Microsoft.VisualStudio.clrdbg": "14.0.25429-preview-3095034",
166+
"Microsoft.VisualStudio.clrdbg.MIEngine": "14.0.30629-preview-1",
167+
"Microsoft.VisualStudio.OpenDebugAD7": "1.0.20628-preview-1",
168+
"NETStandard.Library": "1.6.0",
169169
"Newtonsoft.Json": "7.0.1",
170170
"Microsoft.VisualStudio.Debugger.Interop.Portable": "1.0.1",
171-
"System.Collections.Specialized": "4.0.1-rc2-24027",
172-
"System.Collections.Immutable": "1.2.0-rc2-24027",
173-
"System.Diagnostics.Process" : "4.1.0-rc2-24027",
174-
"System.Diagnostics.StackTrace": "4.0.1-rc2-24027",
175-
"System.Dynamic.Runtime": "4.0.11-rc2-24027",
176-
"Microsoft.CSharp": "4.0.1-rc2-24027",
177-
"System.Threading.Tasks.Dataflow": "4.6.0-rc2-24027",
178-
"System.Threading.Thread": "4.0.0-rc2-24027",
179-
"System.Xml.XDocument": "4.0.11-rc2-24027",
180-
"System.Xml.XmlDocument": "4.0.1-rc2-24027",
181-
"System.Xml.XmlSerializer": "4.0.11-rc2-24027",
182-
"System.ComponentModel": "4.0.1-rc2-24027",
183-
"System.ComponentModel.Annotations": "4.1.0-rc2-24027",
184-
"System.ComponentModel.EventBasedAsync": "4.0.11-rc2-24027",
185-
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-24027",
186-
"System.Net.Http": "4.0.1-rc2-24027"
171+
"System.Collections.Specialized": "4.0.1",
172+
"System.Collections.Immutable": "1.2.0",
173+
"System.Diagnostics.Process" : "4.1.0",
174+
"System.Diagnostics.StackTrace": "4.0.1",
175+
"System.Dynamic.Runtime": "4.0.11",
176+
"Microsoft.CSharp": "4.0.1",
177+
"System.Threading.Tasks.Dataflow": "4.6.0",
178+
"System.Threading.Thread": "4.0.0",
179+
"System.Xml.XDocument": "4.0.11",
180+
"System.Xml.XmlDocument": "4.0.1",
181+
"System.Xml.XmlSerializer": "4.0.11",
182+
"System.ComponentModel": "4.0.1",
183+
"System.ComponentModel.Annotations": "4.1.0",
184+
"System.ComponentModel.EventBasedAsync": "4.0.11",
185+
"System.Runtime.Serialization.Primitives": "4.1.1",
186+
"System.Net.Http": "4.1.0"
187187
},
188188
frameworks: {
189-
"netcoreapp1.0": {
190-
imports: [ "dnxcore50", "portable-net45+win8" ]
191-
}
189+
"netcoreapp1.0": { }
192190
},
193191
runtimes: {
194192
}
@@ -197,7 +195,7 @@ export class DebugInstaller
197195
projectJson.runtimes[targetRuntime] = {};
198196

199197
if (this._isOffline) {
200-
projectJson.dependencies["Microsoft.NetCore.DotNetHostPolicy"] = "1.0.1-rc-002702";
198+
projectJson.dependencies["Microsoft.NetCore.DotNetHostPolicy"] = "1.0.1";
201199
}
202200

203201
return projectJson;

0 commit comments

Comments
 (0)