Skip to content
This repository has been archived by the owner on Apr 20, 2023. It is now read-only.

Exclude stale copy of NuGet.Frameworks.dll from vstest insertion #2296

Merged
merged 1 commit into from
Aug 20, 2019
Merged
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
2 changes: 2 additions & 0 deletions src/redist/targets/GenerateLayout.targets
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,13 @@
<TestCliNuGetDirectory>$(NuGetPackagesDir)/microsoft.testplatform.cli/$(MicrosoftTestPlatformCLIPackageVersion)/contentFiles/any/netcoreapp2.1/</TestCliNuGetDirectory>
</PropertyGroup>
<ItemGroup>
<!-- https://github.com/microsoft/vstest/issues/1886 -->
<TestCliBitsToExclude Include="$(TestCliNuGetDirectory)NewtonSoft.Json.dll" />
<TestCliBitsToExclude Include="$(TestCliNuGetDirectory)Microsoft.DotNet.PlatformAbstractions.dll" />
<TestCliBitsToExclude Include="$(TestCliNuGetDirectory)Microsoft.Extensions.DependencyModel.dll" />
<TestCliBitsToExclude Include="$(TestCliNuGetDirectory)System.Memory.dll" />
<TestCliBitsToExclude Include="$(TestCliNuGetDirectory)System.Runtime.CompilerServices.Unsafe.dll" />
<TestCliBitsToExclude Include="$(TestCliNuGetDirectory)NuGet.Frameworks.dll" />
<TestCliBits Include="$(TestCliNuGetDirectory)**/*"
Exclude="@(TestCliBitsToExclude)" />
</ItemGroup>
Expand Down