Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unnecessary EOL package references #76073

Merged
merged 6 commits into from
Nov 29, 2024
Merged
Show file tree
Hide file tree
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
15 changes: 0 additions & 15 deletions eng/Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -197,13 +197,10 @@
<PackageVersion Include="System.Memory" Version="$(SystemMemoryVersion)" />
<PackageVersion Include="System.Numerics.Vectors" Version="$(SystemNumericsVectorsVersion)" />
<PackageVersion Include="System.Runtime.CompilerServices.Unsafe" Version="$(SystemRuntimeCompilerServicesUnsafeVersion)" />
<PackageVersion Include="System.Runtime.Loader" Version="4.3.0" />
<PackageVersion Include="System.Resources.Extensions" Version="$(SystemResourcesExtensionsVersion)" />
<PackageVersion Include="System.Security.Cryptography.ProtectedData" Version="$(SystemSecurityCryptographyProtectedDataVersion)" />
<PackageVersion Include="System.Security.Permissions" Version="$(SystemSecurityPermissionsVersion)" />
<PackageVersion Include="System.Security.Principal" Version="4.3.0" />
<PackageVersion Include="System.Text.Encoding.CodePages" Version="7.0.0" />
<PackageVersion Include="System.Text.Encoding.Extensions" Version="4.3.0" />
<PackageVersion Include="System.Threading.Tasks.Dataflow" Version="$(SystemThreadingTasksDataflowVersion)" />
<PackageVersion Include="System.Threading.Tasks.Extensions" Version="$(SystemThreadingTasksExtensionsVersion)" />
<PackageVersion Include="System.Windows.Extensions" Version="$(SystemWindowsExtensionsVersion)" />
Expand All @@ -221,18 +218,8 @@
<PackageVersion Include="System.Text.Encodings.Web" Version="$(SystemTextEncodingsWebVersion)" />
<!-- Note: When updating SystemTextJsonVersion ensure that the version is no higher than what is used by MSBuild. -->
<PackageVersion Include="System.Text.Json" Version="$(SystemTextJsonVersion)" />

<!-- Note: When updating SystemTextJsonVersion ensure that the version is no higher than what is used by MSBuild. -->
<PackageVersion Include="System.Threading.Channels" Version="7.0.0" />

<!--
Packages that are pinned to avoid component governance alerts.
Tracked issues:
https://github.com/xunit/xunit/issues/2778
https://devdiv.visualstudio.com/DevDiv/_workitems/edit/1886496
-->
<PackageVersion Include="System.Net.Http" Version="4.3.4" />
<PackageVersion Include="System.Private.Uri" Version="4.3.2" />
<PackageVersion Include="Microsoft.IO.Redist" Version="$(MicrosoftIORedistVersion)" />

<PackageVersion Include="SQLitePCLRaw.core" Version="$(SqliteVersion)" />
Expand Down Expand Up @@ -266,8 +253,6 @@
<PackageVersion Include="Microsoft.VisualStudio.Diagnostics.PerformanceProvider" Version="17.8.36726" />
<PackageVersion Include="Microsoft.VisualStudio.Extensibility.Testing.SourceGenerator" Version="$(MicrosoftVisualStudioExtensibilityTestingVersion)" />
<PackageVersion Include="Microsoft.VisualStudio.Extensibility.Testing.Xunit" Version="$(MicrosoftVisualStudioExtensibilityTestingVersion)" />
<PackageVersion Include="System.IO.FileSystem.Primitives" Version="4.3.0" />
<PackageVersion Include="System.IO.FileSystem" Version="4.3.0" />
<PackageVersion Include="System.Management" Version="7.0.0" />
<PackageVersion Include="System.Drawing.Common" Version="8.0.0" />
<PackageVersion Include="NuGet.SolutionRestoreManager.Interop" Version="4.8.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@
<PackageReference Include="xunit.assert" />
<PackageReference Include="xunit.extensibility.core" />
<PackageReference Include="Xunit.Combinatorial" />
<PackageReference Include="System.Private.Uri" />
<PackageReference Include="ICSharpCode.Decompiler" />
<PackageReference Include="Newtonsoft.Json" />
<PackageReference Include="Microsoft.CodeAnalysis.AnalyzerUtilities" />
Expand Down
9 changes: 0 additions & 9 deletions src/Test/PdbUtilities/Roslyn.Test.PdbUtilities.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,6 @@
<PackageReference Include="System.Reflection.Metadata" />
<PackageReference Include="xunit.assert" />
</ItemGroup>
<ItemGroup>
<!--
Package references needed due to Microsoft.DiaSymReader.Converter dependency on Newtonsoft.Json 9.0.1,
which doesn't have netstandard 2.0 binaries.
-->
<PackageReference Include="System.IO.FileSystem" />
<PackageReference Include="System.IO.FileSystem.Primitives" />
<PackageReference Include="System.Text.Encoding.Extensions" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Compilers\Core\Portable\Microsoft.CodeAnalysis.csproj" />
<ProjectReference Include="..\..\Compilers\Test\Core\Microsoft.CodeAnalysis.Test.Utilities.csproj" />
Expand Down
2 changes: 0 additions & 2 deletions src/Tools/Source/RunTests/RunTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,9 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Collections.Immutable" />
<PackageReference Include="System.Security.Principal" />
<PackageReference Include="System.Reflection.Metadata" />
<PackageReference Include="System.Management" />
<PackageReference Include="Mono.Options" />
<PackageReference Include="Microsoft.Win32.Registry" />
<PackageReference Include="Newtonsoft.Json" />
<PackageReference Include="Microsoft.TeamFoundationServer.Client" />
<ProjectReference Include="..\..\..\Compilers\Test\Core\Microsoft.CodeAnalysis.Test.Utilities.csproj" />
Expand Down
2 changes: 0 additions & 2 deletions src/Tools/TestDiscoveryWorker/TestDiscoveryWorker.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@
<PackageReference Include="xunit.abstractions" />
<PackageReference Include="xunit.runner.utility" />
<PackageReference Include="xunit.extensibility.execution" />
<PackageReference Include="System.Private.Uri" />
<PackageReference Include="System.Net.Http" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)'=='net472'">
Expand Down