Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"rollForward": false
},
"dotnet-coverage": {
"version": "18.1.0",
"version": "18.3.2",
"commands": [
"dotnet-coverage"
],
Expand Down Expand Up @@ -38,4 +38,4 @@
"rollForward": false
}
}
}
}
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<PackageVersion Update="xunit.v3.extensibility.core" Version="$(XunitV3LibraryVersion)" />
</ItemGroup>
<ItemGroup Label="Library.Template">
<PackageVersion Include="Microsoft.Testing.Extensions.CodeCoverage" Version="18.1.0" />
<PackageVersion Include="Microsoft.Testing.Extensions.CodeCoverage" Version="18.3.2" />
<PackageVersion Include="Microsoft.Testing.Extensions.CrashDump" Version="$(MicrosoftTestingPlatformVersion)" />
<PackageVersion Include="Microsoft.Testing.Extensions.HangDump" Version="$(MicrosoftTestingPlatformVersion)" />
<PackageVersion Include="Microsoft.Testing.Extensions.TrxReport" Version="$(MicrosoftTestingPlatformVersion)" />
Expand Down
2 changes: 1 addition & 1 deletion tools/dotnet-test-cloud.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ if ($isMTP) {
$unknownCounter = 0
$trxFiles |% {
New-Item $testLogs -ItemType Directory -Force | Out-Null
if (!($_.FullName.StartsWith($testLogs))) {
if (!($_.FullName.StartsWith($testLogs, [StringComparison]::OrdinalIgnoreCase))) {
Copy-Item $_ -Destination $testLogs
}

Expand Down