Skip to content

Commit 001fd29

Browse files
committed
[Fix]: Tests hang on "Starting" in dotnet project (#135)
1 parent 36968c0 commit 001fd29

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Directory.Packages.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<ManagePackageVersionsCentrally>false</ManagePackageVersionsCentrally>
44
<CodeAnalysisVersion>5.0.0-2.final</CodeAnalysisVersion>
5-
<TestPlatformVersion>18.0.0</TestPlatformVersion>
5+
<TestPlatformVersion>18.0.1</TestPlatformVersion>
66
</PropertyGroup>
77
<ItemGroup>
88
<PackageVersion Include="NLog" Version="5.4.0" />

src/DotRush.Debugging.Host/TestPlatform/RpcTestHostNotificationHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ private int LaunchTestHost(TestProcessStartInfo startInfo) {
101101
arguments: startInfo.Arguments ?? string.Empty,
102102
workingDirectory: startInfo.WorkingDirectory,
103103
environmentVariables: startInfo.EnvironmentVariables?.ToNotNullDictionary(),
104-
captureOutput: false,
104+
captureOutput: true,
105105
displayWindow: false
106106
).Id;
107107
}

0 commit comments

Comments
 (0)