Skip to content

Commit 963229d

Browse files
committed
update covergae collector to latest version
1 parent dca1a46 commit 963229d

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

FineCodeCoverage/FineCodeCoverage.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,6 @@
105105
<Link>ZippedTools\microsoft.testplatform.16.9.1.zip</Link>
106106
<IncludeInVSIX>true</IncludeInVSIX>
107107
</Content>
108-
<Content Include="..\Shared Files\ZippedTools\coverlet.collector.3.2.0.zip">
109-
<Link>ZippedTools\coverlet.collector.3.2.0.zip</Link>
110-
<IncludeInVSIX>true</IncludeInVSIX>
111-
</Content>
112108
<Content Include="..\Shared Files\ZippedTools\coverlet.console.3.2.0.zip">
113109
<Link>ZippedTools\coverlet.console.3.2.0.zip</Link>
114110
<IncludeInVSIX>true</IncludeInVSIX>
@@ -125,6 +121,10 @@
125121
<Link>ZippedTools\microsoft.codecoverage.17.13.0.zip</Link>
126122
<IncludeInVSIX>true</IncludeInVSIX>
127123
</Content>
124+
<Content Include="..\Shared Files\ZippedTools\coverlet.collector.6.0.4.zip">
125+
<Link>ZippedTools\coverlet.collector.6.0.4.zip</Link>
126+
<IncludeInVSIX>true</IncludeInVSIX>
127+
</Content>
128128
<!--
129129
<None Include="Key.snk" />
130130
-->

FineCodeCoverage2022/FineCodeCoverage2022.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,6 @@
8989
<Link>Resources\LICENSE</Link>
9090
<IncludeInVSIX>true</IncludeInVSIX>
9191
</Content>
92-
<Content Include="..\Shared Files\ZippedTools\coverlet.collector.3.2.0.zip">
93-
<Link>ZippedTools\coverlet.collector.3.2.0.zip</Link>
94-
<IncludeInVSIX>true</IncludeInVSIX>
95-
</Content>
9692
<Content Include="..\Shared Files\ZippedTools\coverlet.console.3.2.0.zip">
9793
<Link>ZippedTools\coverlet.console.3.2.0.zip</Link>
9894
<IncludeInVSIX>true</IncludeInVSIX>
@@ -109,6 +105,10 @@
109105
<Link>ZippedTools\microsoft.codecoverage.17.13.0.zip</Link>
110106
<IncludeInVSIX>true</IncludeInVSIX>
111107
</Content>
108+
<Content Include="..\Shared Files\ZippedTools\coverlet.collector.6.0.4.zip">
109+
<Link>ZippedTools\coverlet.collector.6.0.4.zip</Link>
110+
<IncludeInVSIX>true</IncludeInVSIX>
111+
</Content>
112112
<None Include="source.extension.vsixmanifest">
113113
<SubType>Designer</SubType>
114114
<Generator>VsixManifestGenerator</Generator>
Binary file not shown.
Binary file not shown.

SharedProject/Core/Coverlet/DataCollector/CoverletDataCollectorUtil.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ private void LogRun(string coverletSettings)
282282
public void Initialize(string appDataFolder,CancellationToken cancellationToken)
283283
{
284284
var zipDestination = toolUnzipper.EnsureUnzipped(appDataFolder, zipDirectoryName, zipPrefix, cancellationToken);
285-
var testAdapterPath = Path.Combine(zipDestination, "build", "netstandard1.0");
285+
var testAdapterPath = Path.Combine(zipDestination, "build", "netstandard2.0");
286286
TestAdapterPathArg = $@"""{testAdapterPath}""";
287287
}
288288
}

0 commit comments

Comments
 (0)