Skip to content

Commit 69fae65

Browse files
committed
Drop dependency to System.ValueTuple (#4398)
1 parent 87e17f2 commit 69fae65

File tree

4 files changed

+1
-9
lines changed

4 files changed

+1
-9
lines changed

Directory.Packages.props

-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
<SystemNetWebSocketsClientVersion>4.3.1</SystemNetWebSocketsClientVersion>
2222
<SystemTextRegularExpressionsVersion>4.3.1</SystemTextRegularExpressionsVersion>
2323
<SystemThreadingTasksExtensionsVersion>4.5.4</SystemThreadingTasksExtensionsVersion>
24-
<SystemValueTupleVersion>4.5.0</SystemValueTupleVersion>
2524
</PropertyGroup>
2625
<PropertyGroup Label="Test dependencies">
2726
<MicrosoftCodeAnalysisAnalyzerTestingVersion>1.1.3-beta1.24423.1</MicrosoftCodeAnalysisAnalyzerTestingVersion>
@@ -53,7 +52,6 @@
5352
<PackageVersion Include="System.Diagnostics.TextWriterTraceListener" Version="4.3.0" />
5453
<!-- CVE-2019-0981, CVE-2019-0980, CVE-2019-0657 -->
5554
<PackageVersion Include="System.Private.Uri" Version="4.3.2" />
56-
<PackageVersion Include="System.ValueTuple" Version="$(SystemValueTupleVersion)" />
5755
</ItemGroup>
5856
<ItemGroup Label="Test dependencies">
5957
<PackageVersion Include="Codecov" Version="1.12.3" />

src/Adapter/MSTest.TestAdapter/MSTest.TestAdapter.csproj

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project>
1+
<Project>
22

33
<!-- SDK top import -->
44
<Import Project="Sdk.props" Sdk="MSBuild.Sdk.Extras" Condition=" '$(OS)' == 'Windows_NT' " />
@@ -59,7 +59,6 @@
5959
<ItemGroup>
6060
<PackageReference Include="Microsoft.TestPlatform.AdapterUtilities" />
6161
<PackageReference Include="System.Threading.Tasks.Extensions" Condition=" '$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == '$(NetFrameworkMinimum)' OR '$(TargetFramework)' == '$(UwpMinimum)' " />
62-
<PackageReference Include="System.ValueTuple" Condition=" '$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == '$(NetFrameworkMinimum)' OR '$(TargetFramework)' == '$(UwpMinimum)' " />
6362
</ItemGroup>
6463

6564
<ItemGroup>
@@ -87,7 +86,6 @@
8786
<NuspecProperty Include="Configuration=$(Configuration)" />
8887
<NuspecProperty Include="RepoRoot=$(RepoRoot)" />
8988
<NuspecProperty Include="SystemThreadingTasksExtensionsVersion=$(SystemThreadingTasksExtensionsVersion)" />
90-
<NuspecProperty Include="SystemValueTupleVersion=$(SystemValueTupleVersion)" />
9189
<NuspecProperty Include="TestingPlatformVersion=$(Version.Replace('$(VersionPrefix)', '$(TestingPlatformVersionPrefix)'))" />
9290
</ItemGroup>
9391

src/Adapter/MSTest.TestAdapter/MSTest.TestAdapter.nuspec

-3
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,14 @@
77
<dependency id="Microsoft.Testing.Extensions.VSTestBridge" version="$TestingPlatformVersion$" />
88
<dependency id="Microsoft.Testing.Platform.MSBuild" version="$TestingPlatformVersion$" />
99
<dependency id="System.Threading.Tasks.Extensions" version="$SystemThreadingTasksExtensionsVersion$" />
10-
<dependency id="System.ValueTuple" version="$SystemValueTupleVersion$" />
1110
</group>
1211
<group targetFramework="net462">
1312
<dependency id="Microsoft.Testing.Extensions.VSTestBridge" version="$TestingPlatformVersion$" />
1413
<dependency id="Microsoft.Testing.Platform.MSBuild" version="$TestingPlatformVersion$" />
1514
<dependency id="System.Threading.Tasks.Extensions" version="$SystemThreadingTasksExtensionsVersion$" />
16-
<dependency id="System.ValueTuple" version="$SystemValueTupleVersion$" />
1715
</group>
1816
<group targetFramework="uap10.0">
1917
<dependency id="System.Threading.Tasks.Extensions" version="$SystemThreadingTasksExtensionsVersion$" />
20-
<dependency id="System.ValueTuple" version="$SystemValueTupleVersion$" />
2118
</group>
2219
<group targetFramework="netcoreapp3.1">
2320
<dependency id="Microsoft.Testing.Extensions.VSTestBridge" version="$TestingPlatformVersion$" />

test/UnitTests/MSTestAdapter.PlatformServices.UnitTests/MSTestAdapter.PlatformServices.UnitTests.csproj

-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
<ItemGroup>
4040
<PackageReference Include="Moq" />
4141
<PackageReference Include="StrongNamer" />
42-
<PackageReference Include="System.ValueTuple" />
4342
</ItemGroup>
4443

4544
<ItemGroup Condition=" '$(TargetFramework)' != 'net462' ">

0 commit comments

Comments
 (0)