Skip to content

Commit 94aa9d3

Browse files
committed
update zip version and paths in MsCodeCoverageRunSettingsService
1 parent e4ffb5d commit 94aa9d3

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

FineCodeCoverage/FineCodeCoverage.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,6 @@
101101
<Link>Resources\OutputToolWindowCommand.png</Link>
102102
<IncludeInVSIX>true</IncludeInVSIX>
103103
</Content>
104-
<Content Include="..\Shared Files\ZippedTools\microsoft.codecoverage.17.1.0.zip">
105-
<Link>ZippedTools\microsoft.codecoverage.17.1.0.zip</Link>
106-
<IncludeInVSIX>true</IncludeInVSIX>
107-
</Content>
108104
<Content Include="..\Shared Files\ZippedTools\microsoft.testplatform.16.9.1.zip">
109105
<Link>ZippedTools\microsoft.testplatform.16.9.1.zip</Link>
110106
<IncludeInVSIX>true</IncludeInVSIX>
@@ -125,6 +121,10 @@
125121
<Link>ZippedTools\reportGenerator.4.7.4.zip</Link>
126122
<IncludeInVSIX>true</IncludeInVSIX>
127123
</Content>
124+
<Content Include="..\Shared Files\ZippedTools\microsoft.codecoverage.17.9.0.zip">
125+
<Link>ZippedTools\microsoft.codecoverage.17.9.0.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
@@ -93,10 +93,6 @@
9393
<Link>Resources\LICENSE</Link>
9494
<IncludeInVSIX>true</IncludeInVSIX>
9595
</Content>
96-
<Content Include="..\Shared Files\ZippedTools\microsoft.codecoverage.17.1.0.zip">
97-
<Link>ZippedTools\microsoft.codecoverage.17.1.0.zip</Link>
98-
<IncludeInVSIX>true</IncludeInVSIX>
99-
</Content>
10096
<Content Include="..\Shared Files\ZippedTools\coverlet.collector.3.2.0.zip">
10197
<Link>ZippedTools\coverlet.collector.3.2.0.zip</Link>
10298
<IncludeInVSIX>true</IncludeInVSIX>
@@ -109,6 +105,10 @@
109105
<Link>ZippedTools\reportGenerator.4.7.4.zip</Link>
110106
<IncludeInVSIX>true</IncludeInVSIX>
111107
</Content>
108+
<Content Include="..\Shared Files\ZippedTools\microsoft.codecoverage.17.9.0.zip">
109+
<Link>ZippedTools\microsoft.codecoverage.17.9.0.zip</Link>
110+
<IncludeInVSIX>true</IncludeInVSIX>
111+
</Content>
112112
<None Include="source.extension.vsixmanifest">
113113
<SubType>Designer</SubType>
114114
<Generator>VsixManifestGenerator</Generator>
-6.98 MB
Binary file not shown.
8.75 MB
Binary file not shown.

SharedProject/Core/MsTestPlatform/CodeCoverage/MsCodeCoverageRunSettingsService.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,8 @@ public void Initialize(string appDataFolder, IFCCEngine fccEngine, CancellationT
112112
{
113113
this.fccEngine = fccEngine;
114114
var zipDestination = toolUnzipper.EnsureUnzipped(appDataFolder, zipDirectoryName,zipPrefix, cancellationToken);
115-
fccMsTestAdapterPath = Path.Combine(zipDestination, "build", "netstandard1.0");
116-
shimPath = Path.Combine(zipDestination, "build", "netstandard1.0", "CodeCoverage", "coreclr", "Microsoft.VisualStudio.CodeCoverage.Shim.dll");
115+
fccMsTestAdapterPath = Path.Combine(zipDestination, "build", "netstandard2.0");
116+
shimPath = Path.Combine(zipDestination, "build", "netstandard2.0", "CodeCoverage", "coreclr", "Microsoft.VisualStudio.CodeCoverage.Shim.dll");
117117
}
118118

119119
#region set up for collection

0 commit comments

Comments
 (0)