Skip to content

Commit 112bdcc

Browse files
committed
Add 2019/2022 TestWindow.Interfaces.dll
1 parent f7f01ad commit 112bdcc

File tree

5 files changed

+12
-18
lines changed

5 files changed

+12
-18
lines changed

FineCodeCoverage/FineCodeCoverage.csproj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -174,9 +174,6 @@
174174
<PackageReference Include="Microsoft.VisualStudio.SDK" Version="16.0.206" ExcludeAssets="runtime">
175175
<IncludeAssets>compile; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
176176
</PackageReference>
177-
<PackageReference Include="Microsoft.VisualStudio.TestWindow.Interfaces">
178-
<Version>11.0.61030</Version>
179-
</PackageReference>
180177
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers">
181178
<Version>17.9.28</Version>
182179
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
@@ -210,6 +207,10 @@
210207
</ItemGroup>
211208
<ItemGroup>
212209
<Reference Include="Microsoft.CSharp" />
210+
<Reference Include="Microsoft.VisualStudio.TestWindow.Interfaces, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
211+
<SpecificVersion>False</SpecificVersion>
212+
<HintPath>..\..\..\..\..\..\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE\CommonExtensions\Microsoft\TestWindow\Microsoft.VisualStudio.TestWindow.Interfaces.dll</HintPath>
213+
</Reference>
213214
<Reference Include="PresentationCore" />
214215
<Reference Include="PresentationFramework" />
215216
<Reference Include="System" />

FineCodeCoverage2022/FineCodeCoverage2022.csproj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,10 @@
117117
</ItemGroup>
118118
<ItemGroup>
119119
<Reference Include="Microsoft.CSharp" />
120+
<Reference Include="Microsoft.VisualStudio.TestWindow.Interfaces, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
121+
<SpecificVersion>False</SpecificVersion>
122+
<HintPath>..\..\..\..\..\..\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\TestWindow\Microsoft.VisualStudio.TestWindow.Interfaces.dll</HintPath>
123+
</Reference>
120124
<Reference Include="PresentationCore" />
121125
<Reference Include="PresentationFramework" />
122126
<Reference Include="System" />
@@ -169,9 +173,6 @@
169173
<PackageReference Include="Microsoft.VisualStudio.SDK" Version="17.10.40171" ExcludeAssets="runtime">
170174
<IncludeAssets>compile; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
171175
</PackageReference>
172-
<PackageReference Include="Microsoft.VisualStudio.TestWindow.Interfaces">
173-
<Version>11.0.61030</Version>
174-
</PackageReference>
175176
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers">
176177
<Version>17.10.48</Version>
177178
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

FineCodeCoverageTests/FineCodeCoverageTests.csproj

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@
3535
<WarningLevel>4</WarningLevel>
3636
</PropertyGroup>
3737
<ItemGroup>
38+
<Reference Include="Microsoft.VisualStudio.TestWindow.Interfaces, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
39+
<SpecificVersion>False</SpecificVersion>
40+
<HintPath>..\..\..\..\..\..\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\TestWindow\Microsoft.VisualStudio.TestWindow.Interfaces.dll</HintPath>
41+
</Reference>
3842
<Reference Include="netstandard" />
3943
<Reference Include="PresentationCore" />
4044
<Reference Include="PresentationFramework" />
@@ -208,21 +212,12 @@
208212
<PackageReference Include="Microsoft.CodeAnalysis.VisualBasic">
209213
<Version>4.10.0</Version>
210214
</PackageReference>
211-
<PackageReference Include="Microsoft.TestPlatform.ObjectModel">
212-
<Version>11.0.0</Version>
213-
</PackageReference>
214215
<PackageReference Include="Microsoft.VisualStudio.SDK">
215216
<Version>17.10.40171</Version>
216217
</PackageReference>
217-
<PackageReference Include="Microsoft.VisualStudio.TestWindow.Interfaces">
218-
<Version>11.0.61030</Version>
219-
</PackageReference>
220218
<PackageReference Include="Moq">
221219
<Version>4.16.0</Version>
222220
</PackageReference>
223-
<PackageReference Include="NuGet.Frameworks">
224-
<Version>5.11.0</Version>
225-
</PackageReference>
226221
<PackageReference Include="NUnit">
227222
<Version>3.13.1</Version>
228223
</PackageReference>

FineCodeCoverageTests/MsCodeCoverage/MsCodeCoverageRunSettingsService_IRunSettingsService_Tests.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,10 @@
44
using System.IO;
55
using System.Xml.XPath;
66
using System.Collections.Generic;
7-
using Microsoft.VisualStudio.TestPlatform.ObjectModel;
87
using AutoMoq;
98
using System.Threading;
109
using FineCodeCoverage.Core.Utilities;
1110
using FineCodeCoverage.Engine.MsTestPlatform.CodeCoverage;
12-
using System;
1311

1412
namespace FineCodeCoverageTests.MsCodeCoverage
1513
{

FineCodeCoverageTests/MsCodeCoverage/UserRunSettingsService_Analysis_Tests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using NUnit.Framework;
2-
using Microsoft.VisualStudio.TestPlatform.ObjectModel;
32
using FineCodeCoverage.Engine.MsTestPlatform.CodeCoverage;
43
using FineCodeCoverage.Core.Utilities;
54
using Moq;

0 commit comments

Comments
 (0)