Skip to content

Commit 1ec32f4

Browse files
authored
Update maintenance-packages pruning versions (#49092)
1 parent 08fc440 commit 1ec32f4

7 files changed

+14
-14
lines changed

src/Tasks/Microsoft.NET.Build.Tasks/FrameworkPackages/FrameworkPackages.net5.0.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ internal static class NETCoreApp50
2020
{ "System.Formats.Asn1", "5.0.0" },
2121
{ "System.IO.FileSystem.AccessControl", "5.0.0" },
2222
{ "System.Net.Http.Json", "5.0.0" },
23-
{ "System.Reflection.DispatchProxy", "4.7.1" },
23+
{ "System.Reflection.DispatchProxy", "4.8.2" },
2424
{ "System.Reflection.Metadata", "5.0.0" },
2525
{ "System.Runtime.CompilerServices.Unsafe", "5.0.0" },
2626
{ "System.Security.AccessControl", "5.0.0" },

src/Tasks/Microsoft.NET.Build.Tasks/FrameworkPackages/FrameworkPackages.net6.0.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ internal static class NETCoreApp60
1818
{ "System.Formats.Asn1", "6.0.0" },
1919
{ "System.Net.Http.Json", "6.0.0" },
2020
{ "System.Reflection.Metadata", "6.0.0" },
21-
{ "System.Runtime.CompilerServices.Unsafe", "6.0.0" },
21+
{ "System.Runtime.CompilerServices.Unsafe", "6.1.2" },
2222
{ "System.Security.AccessControl", "6.0.0" },
2323
{ "System.Text.Encoding.CodePages", "6.0.0" },
2424
{ "System.Text.Encodings.Web", "6.0.0" },

src/Tasks/Microsoft.NET.Build.Tasks/FrameworkPackages/FrameworkPackages.netcoreapp2.1.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,23 +17,23 @@ internal static class NETCoreApp21
1717
{ "Microsoft.NETCore.App", "2.1.0" },
1818
{ "Microsoft.VisualBasic", "10.3.0" },
1919
{ "Microsoft.Win32.Registry", "4.5.0" },
20-
{ "System.Buffers", "4.5.0" },
20+
{ "System.Buffers", "4.6.1" },
2121
{ "System.Collections.Immutable", "1.5.0" },
2222
{ "System.ComponentModel.Annotations", "4.5.0" },
2323
{ "System.Diagnostics.DiagnosticSource", "4.5.0" },
2424
{ "System.IO.FileSystem.AccessControl", "4.5.0" },
2525
{ "System.IO.Pipes.AccessControl", "4.5.0" },
26-
{ "System.Memory", "4.5.5" },
27-
{ "System.Numerics.Vectors", "4.5.0" },
26+
{ "System.Memory", "4.6.3" },
27+
{ "System.Numerics.Vectors", "4.6.1" },
2828
{ "System.Reflection.DispatchProxy", "4.5.0" },
2929
{ "System.Reflection.Metadata", "1.6.0" },
3030
{ "System.Security.AccessControl", "4.5.0" },
3131
{ "System.Security.Cryptography.Cng", "4.5.2" },
3232
{ "System.Security.Cryptography.OpenSsl", "4.5.0" },
3333
{ "System.Security.Principal.Windows", "4.5.0" },
3434
{ "System.Threading.Tasks.Dataflow", "4.9.0" },
35-
{ "System.Threading.Tasks.Extensions", "4.5.4" },
36-
{ "System.ValueTuple", "4.5.0" },
35+
{ "System.Threading.Tasks.Extensions", "4.6.3" },
36+
{ "System.ValueTuple", "4.6.1" },
3737
};
3838

3939
internal static void Register() => FrameworkPackages.Register(Instance);

src/Tasks/Microsoft.NET.Build.Tasks/FrameworkPackages/FrameworkPackages.netcoreapp3.0.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ internal static class NETCoreApp30
1515
{
1616
{ "Microsoft.CSharp", "4.6.0" },
1717
{ "Microsoft.Win32.Registry", "4.6.0" },
18-
{ "System.Buffers", "4.5.1" },
18+
{ "System.Buffers", "4.6.1" },
1919
{ "System.Collections.Immutable", "1.6.0" },
2020
{ "System.ComponentModel.Annotations", "4.6.0" },
2121
{ "System.Data.DataSetExtensions", "4.5.0" },

src/Tasks/Microsoft.NET.Build.Tasks/FrameworkPackages/FrameworkPackages.netcoreapp3.1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ internal static class NETCoreApp31
1919
{ "System.ComponentModel.Annotations", "4.7.0" },
2020
{ "System.Diagnostics.DiagnosticSource", "4.7.0" },
2121
{ "System.IO.FileSystem.AccessControl", "4.7.0" },
22-
{ "System.Reflection.DispatchProxy", "4.7.0" },
22+
{ "System.Reflection.DispatchProxy", "4.8.2" },
2323
{ "System.Reflection.Metadata", "1.8.0" },
2424
{ "System.Runtime.CompilerServices.Unsafe", "4.7.1" },
2525
{ "System.Runtime.WindowsRuntime", "4.7.0" },

src/Tasks/Microsoft.NET.Build.Tasks/FrameworkPackages/FrameworkPackages.netstandard2.0.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ internal static class NETStandard20
9898
{ "System.Threading.Thread", "4.3.0" },
9999
{ "System.Threading.ThreadPool", "4.3.0" },
100100
{ "System.Threading.Timer", "4.3.0" },
101-
{ "System.ValueTuple", "4.4.0" },
101+
{ "System.ValueTuple", "4.6.1" },
102102
{ "System.Xml.ReaderWriter", "4.3.1" },
103103
{ "System.Xml.XDocument", "4.0.11" },
104104
{ "System.Xml.XmlDocument", "4.3.0" },

src/Tasks/Microsoft.NET.Build.Tasks/FrameworkPackages/FrameworkPackages.netstandard2.1.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ internal static class NETStandard21
1313
{
1414
internal static FrameworkPackages Instance { get; } = new(NetStandard21, FrameworkNames.NetStandardLibrary, NETStandard20.Instance)
1515
{
16-
{ "System.Buffers", "4.5.1" },
16+
{ "System.Buffers", "4.6.1" },
1717
{ "System.Collections.Concurrent", "4.3.0" },
1818
{ "System.Collections.Immutable", "1.4.0" },
1919
{ "System.ComponentModel", "4.3.0" },
@@ -22,10 +22,10 @@ internal static class NETStandard21
2222
{ "System.Diagnostics.Contracts", "4.3.0" },
2323
{ "System.Dynamic.Runtime", "4.3.0" },
2424
{ "System.Linq.Queryable", "4.3.0" },
25-
{ "System.Memory", "4.5.5" },
25+
{ "System.Memory", "4.6.3" },
2626
{ "System.Net.Requests", "4.3.0" },
2727
{ "System.Net.WebHeaderCollection", "4.3.0" },
28-
{ "System.Numerics.Vectors", "4.5.0" },
28+
{ "System.Numerics.Vectors", "4.6.1" },
2929
{ "System.ObjectModel", "4.3.0" },
3030
{ "System.Private.DataContractSerialization", "4.3.0" },
3131
{ "System.Reflection.DispatchProxy", "4.5.1" },
@@ -42,7 +42,7 @@ internal static class NETStandard21
4242
{ "System.Security.Principal", "4.3.0" },
4343
{ "System.Security.Principal.Windows", "4.4.0" },
4444
{ "System.Threading", "4.3.0" },
45-
{ "System.Threading.Tasks.Extensions", "4.5.4" },
45+
{ "System.Threading.Tasks.Extensions", "4.6.3" },
4646
{ "System.Threading.Tasks.Parallel", "4.3.0" },
4747
{ "System.Xml.XDocument", "4.3.0" },
4848
{ "System.Xml.XmlSerializer", "4.3.0" },

0 commit comments

Comments
 (0)