Skip to content

Commit 5145ef7

Browse files
authored
Merge pull request #1496 from microsoft/main
Merge 'main' into 'release_mdd'
2 parents e0386cd + a7e1748 commit 5145ef7

File tree

6 files changed

+39
-6
lines changed

6 files changed

+39
-6
lines changed

build/package_versions.settings.targets

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Microsoft_VisualStudio_Debugger_Interop_Portable_Version>1.0.1</Microsoft_VisualStudio_Debugger_Interop_Portable_Version>
44
<Microsoft_VisualStudio_Interop_Version>17.12.40391</Microsoft_VisualStudio_Interop_Version>
55
<Newtonsoft_Json_Version>13.0.3</Newtonsoft_Json_Version>
6-
<Microsoft_VisualStudio_Shared_VSCodeDebugProtocol_Version>17.2.60629.1</Microsoft_VisualStudio_Shared_VSCodeDebugProtocol_Version>
6+
<Microsoft_VisualStudio_Shared_VSCodeDebugProtocol_Version>17.14.10225.1</Microsoft_VisualStudio_Shared_VSCodeDebugProtocol_Version>
77

88
<!-- Test Packages -->
99
<Microsoft_NET_Test_Sdk_Version>16.7.1</Microsoft_NET_Test_Sdk_Version>

eng/pipelines/templates/DebuggerTesting-release.template.yml

+2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ steps:
2929
TargetFolders: '$(Build.SourcesDirectory)\bin\DebugAdapterProtocolTests\Release\drop'
3030

3131
- template: ../steps/CopyAndPublishSymbols.yml
32+
parameters:
33+
SourceFolder: '$(Build.SourcesDirectory)\bin\DebugAdapterProtocolTests\Release\drop'
3234

3335
- template: ../tasks/PublishPipelineArtifact.yml
3436
parameters:

src/MICore/LaunchOptions.cs

+5-1
Original file line numberDiff line numberDiff line change
@@ -1267,7 +1267,11 @@ public static LaunchOptions GetInstance(HostConfigurationStore configStore, stri
12671267
{
12681268
try
12691269
{
1270-
JObject parsedOptions = JObject.Parse(options);
1270+
JObject parsedOptions = JsonConvert.DeserializeObject<JObject>(options, new JsonSerializerSettings { DateParseHandling = DateParseHandling.None });
1271+
if (parsedOptions is null)
1272+
{
1273+
throw new InvalidLaunchOptionsException(MICoreResources.Error_UnknownLaunchOptions);
1274+
}
12711275

12721276
// if the customLauncher element is present then try using the custom launcher implementation from the config store
12731277
if (parsedOptions["customLauncher"] != null && !string.IsNullOrWhiteSpace(parsedOptions["customLauncher"].Value<string>()))

src/MICore/Transports/PipeTransport.cs

+10-2
Original file line numberDiff line numberDiff line change
@@ -197,11 +197,19 @@ public override void Close()
197197

198198
if (_process != null)
199199
{
200-
if (_killOnClose && !_process.HasExited)
200+
if (!_process.HasExited)
201201
{
202202
try
203203
{
204-
KillPipeProcessAndChildren(_process);
204+
if (_killOnClose)
205+
{
206+
KillPipeProcessAndChildren(_process);
207+
}
208+
else
209+
{
210+
// kill only the process
211+
_process.Kill();
212+
}
205213
}
206214
catch
207215
{

src/MIDebugEngine.sln

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1111
ProjectSection(SolutionItems) = preProject
1212
..\.editorconfig = ..\.editorconfig
1313
IDECodeAnalysis.ruleset = IDECodeAnalysis.ruleset
14+
..\README.md = ..\README.md
1415
EndProjectSection
1516
EndProject
1617
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MICoreUnitTests", "MICoreUnitTests\MICoreUnitTests.csproj", "{6D565BAE-4764-40C3-9C0F-204B6FFA0389}"

test/DebugAdapterRunner/DebugAdapterRunner.cs

+20-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
using System.Diagnostics;
99
using System.Globalization;
1010
using System.IO;
11+
using System.Linq;
1112
using System.Text;
1213
using System.Threading;
1314

@@ -163,8 +164,25 @@ private void StartDebugAdapter(
163164

164165
if (redirectVSAssert)
165166
{
166-
_assertionFileName = Path.Combine(Path.GetTempPath(), string.Format(CultureInfo.InvariantCulture, "vsassert.{0}.txt", Guid.NewGuid()));
167-
startInfo.Environment["VSASSERT"] = _assertionFileName;
167+
string vsassertPath = null;
168+
169+
// First see if the caller already specified the assertion path
170+
if (additionalEnvironmentVariables != null)
171+
{
172+
vsassertPath = additionalEnvironmentVariables
173+
.Where(pair => pair.Key.Equals("VSASSERT", StringComparison.OrdinalIgnoreCase))
174+
.Select(pair => pair.Value)
175+
.FirstOrDefault();
176+
}
177+
178+
if (string.IsNullOrEmpty(vsassertPath))
179+
{
180+
// If the caller didn't specify a path, create a temporary one
181+
vsassertPath = Path.Combine(Path.GetTempPath(), string.Format(CultureInfo.InvariantCulture, "vsassert.{0}.txt", Guid.NewGuid()));
182+
startInfo.Environment["VSASSERT"] = vsassertPath;
183+
}
184+
185+
_assertionFileName = vsassertPath;
168186
}
169187

170188
if (additionalEnvironmentVariables != null)

0 commit comments

Comments
 (0)