Skip to content

Commit bd8af8e

Browse files
committed
Update coreclr-debug package references
1 parent 9e7556e commit bd8af8e

File tree

2 files changed

+25
-23
lines changed

2 files changed

+25
-23
lines changed

coreclr-debug/project.json

Lines changed: 24 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -4,30 +4,32 @@
44
"emitEntryPoint": true
55
},
66
"dependencies": {
7-
"Microsoft.VisualStudio.clrdbg": "14.0.25109-preview-2865786",
8-
"Microsoft.VisualStudio.clrdbg.MIEngine": "14.0.30309-preview-2",
9-
"Microsoft.VisualStudio.OpenDebugAD7": "1.0.20308-preview-1",
10-
"NETStandard.Library": "1.0.0-rc3-23829",
11-
"Newtonsoft.Json": "7.0.1",
7+
"Microsoft.VisualStudio.clrdbg": "14.0.25201-preview-2911579",
8+
"Microsoft.VisualStudio.clrdbg.MIEngine": "14.0.30401-preview-1",
9+
"Microsoft.VisualStudio.OpenDebugAD7": "1.0.20401-preview-1",
10+
"NETStandard.Library": "1.5.0-rc2-23931",
11+
"Newtonsoft.Json": "7.0.1",
1212
"Microsoft.VisualStudio.Debugger.Interop.Portable": "1.0.1",
13-
"System.Collections.Specialized": "4.0.1-rc3-23829",
14-
"System.Collections.Immutable": "1.2.0-rc3-23829",
15-
"System.Diagnostics.Process" : "4.1.0-rc3-23829",
16-
"System.Diagnostics.StackTrace": "4.0.1-rc3-23829",
17-
"System.Dynamic.Runtime": "4.0.11-rc3-23829",
18-
"Microsoft.CSharp": "4.0.1-rc3-23829",
19-
"System.Threading.Tasks.Dataflow": "4.6.0-rc3-23829",
20-
"System.Threading.Thread": "4.0.0-rc3-23829",
21-
"System.Xml.XDocument": "4.0.11-rc3-23829",
22-
"System.Xml.XmlDocument": "4.0.1-rc3-23829",
23-
"System.Xml.XmlSerializer": "4.0.11-rc3-23829",
24-
"System.ComponentModel": "4.0.1-rc3-23829",
25-
"System.ComponentModel.Annotations": "4.1.0-rc3-23829",
26-
"System.ComponentModel.EventBasedAsync": "4.0.11-rc3-23829",
27-
"System.Runtime.Serialization.Primitives": "4.1.0-rc3-23829",
28-
"System.Net.Http": "4.0.1-rc3-23829"
13+
"System.Collections.Specialized": "4.0.1-rc2-23931",
14+
"System.Collections.Immutable": "1.2.0-rc2-23931",
15+
"System.Diagnostics.Process" : "4.1.0-rc2-23931",
16+
"System.Diagnostics.StackTrace": "4.0.1-rc2-23931",
17+
"System.Dynamic.Runtime": "4.0.11-rc2-23931",
18+
"Microsoft.CSharp": "4.0.1-rc2-23931",
19+
"System.Threading.Tasks.Dataflow": "4.6.0-rc2-23931",
20+
"System.Threading.Thread": "4.0.0-rc2-23931",
21+
"System.Xml.XDocument": "4.0.11-rc2-23931",
22+
"System.Xml.XmlDocument": "4.0.1-rc2-23931",
23+
"System.Xml.XmlSerializer": "4.0.11-rc2-23931",
24+
"System.ComponentModel": "4.0.1-rc2-23931",
25+
"System.ComponentModel.Annotations": "4.1.0-rc2-23931",
26+
"System.ComponentModel.EventBasedAsync": "4.0.11-rc2-23931",
27+
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-23931",
28+
"System.Net.Http": "4.0.1-rc2-23931"
2929
},
3030
"frameworks": {
31-
"dnxcore50": { }
31+
"netstandardapp1.5": {
32+
"imports": [ "dnxcore50", "portable-net45+win8" ]
33+
}
3234
}
3335
}

src/coreclr-debug/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export function activate(context: vscode.ExtensionContext, reporter: TelemetryRe
5757

5858
writeInstallBeginFile().then(function() {
5959
installStage = 'dotnetRestore'
60-
return spawnChildProcess('dotnet', ['--verbose', 'restore', '--configfile', 'NuGet.config'], _channel, _util.coreClrDebugDir())
60+
return spawnChildProcess('dotnet', ['--verbose', 'restore', '--configfile', 'NuGet.config', '--infer-runtimes'], _channel, _util.coreClrDebugDir())
6161
}).then(function() {
6262
installStage = "dotnetPublish";
6363
return spawnChildProcess('dotnet', ['--verbose', 'publish', '-o', _util.debugAdapterDir()], _channel, _util.coreClrDebugDir());

0 commit comments

Comments
 (0)