From 7b007b12061dcaccf3d81dbea62890d589fd52c2 Mon Sep 17 00:00:00 2001 From: max-ieremenko <> Date: Sat, 20 Dec 2025 13:09:14 +0100 Subject: [PATCH 1/8] update version to 1.21.0 --- Sources/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Versions.props b/Sources/Versions.props index 12ba4410..d892b9d2 100644 --- a/Sources/Versions.props +++ b/Sources/Versions.props @@ -1,6 +1,6 @@ - 1.20.0 + 1.21.0 $(ServiceModelGrpcVersion)-pre1 \ No newline at end of file From 5e031ea83f3d5a280a09f94c200e1269d4b4c78b Mon Sep 17 00:00:00 2001 From: max-ieremenko <> Date: Sat, 20 Dec 2025 13:39:20 +0100 Subject: [PATCH 2/8] cleanup dependencies --- .../configuration/appsettings.json | 2 +- Sources/Directory.Packages.props | 2 - ...rpc.Client.DependencyInjection.Test.csproj | 4 - .../Configuration/MessageMarshallingTest.cs | 145 ------------------ .../ServiceModel.Grpc.Emit.Test.csproj | 1 - .../NerdbankMessagePackMarshallerFactory.cs | 1 - .../ProtobufMarshallerFactoryTest.Domain.cs | 95 ++++++++++++ .../ProtobufMarshallerFactoryTest.cs | 91 +++++++++++ ...eModel.Grpc.ProtoBufMarshaller.Test.csproj | 13 ++ .../DataContractMarshallerTest.Domain.cs} | 38 +---- .../DataContractMarshallerTest.cs | 65 ++++++-- .../ServiceModel.Grpc.TestApi.csproj | 3 + Sources/ServiceModel.Grpc.slnx | 1 + Sources/Test.csproj.props | 1 - 14 files changed, 260 insertions(+), 202 deletions(-) delete mode 100644 Sources/ServiceModel.Grpc.Emit.Test/Configuration/MessageMarshallingTest.cs create mode 100644 Sources/ServiceModel.Grpc.ProtoBufMarshaller.Test/Configuration/ProtobufMarshallerFactoryTest.Domain.cs create mode 100644 Sources/ServiceModel.Grpc.ProtoBufMarshaller.Test/Configuration/ProtobufMarshallerFactoryTest.cs create mode 100644 Sources/ServiceModel.Grpc.ProtoBufMarshaller.Test/ServiceModel.Grpc.ProtoBufMarshaller.Test.csproj rename Sources/{ServiceModel.Grpc.Emit.Test/Configuration/MessageMarshallingTest.Domain.cs => ServiceModel.Grpc.Test/Configuration/DataContractMarshallerTest.Domain.cs} (64%) diff --git a/Build/third-party-libraries/configuration/appsettings.json b/Build/third-party-libraries/configuration/appsettings.json index 66001f43..12a20993 100644 --- a/Build/third-party-libraries/configuration/appsettings.json +++ b/Build/third-party-libraries/configuration/appsettings.json @@ -4,7 +4,7 @@ "allowToUseLocalCache": true, "downloadPackageIntoRepository": false, "ignorePackages": { - "byName": ["ServiceModel\\.Grpc"], + "byName": ["ServiceModel\\.Grpc", "Microsoft\\.NET\\.ILLink\\.Tasks"], "byProjectName": [] }, "internalPackages": { diff --git a/Sources/Directory.Packages.props b/Sources/Directory.Packages.props index a8066454..af4b5b2a 100644 --- a/Sources/Directory.Packages.props +++ b/Sources/Directory.Packages.props @@ -23,7 +23,6 @@ - @@ -33,7 +32,6 @@ - diff --git a/Sources/ServiceModel.Grpc.Client.DependencyInjection.Test/ServiceModel.Grpc.Client.DependencyInjection.Test.csproj b/Sources/ServiceModel.Grpc.Client.DependencyInjection.Test/ServiceModel.Grpc.Client.DependencyInjection.Test.csproj index 91e26cd9..ba6ff854 100644 --- a/Sources/ServiceModel.Grpc.Client.DependencyInjection.Test/ServiceModel.Grpc.Client.DependencyInjection.Test.csproj +++ b/Sources/ServiceModel.Grpc.Client.DependencyInjection.Test/ServiceModel.Grpc.Client.DependencyInjection.Test.csproj @@ -6,10 +6,6 @@ ServiceModel.Grpc.Client.DependencyInjection - - - - diff --git a/Sources/ServiceModel.Grpc.Emit.Test/Configuration/MessageMarshallingTest.cs b/Sources/ServiceModel.Grpc.Emit.Test/Configuration/MessageMarshallingTest.cs deleted file mode 100644 index 4752236e..00000000 --- a/Sources/ServiceModel.Grpc.Emit.Test/Configuration/MessageMarshallingTest.cs +++ /dev/null @@ -1,145 +0,0 @@ -// -// Copyright Max Ieremenko -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// - -using System.Reflection; -using System.Runtime.Serialization; -using Grpc.Core; -using NUnit.Framework; -using ServiceModel.Grpc.Channel; -using ServiceModel.Grpc.Configuration; -using ServiceModel.Grpc.Emit.CodeGenerators; -using ServiceModel.Grpc.TestApi; - -namespace ServiceModel.Grpc.Emit.Configuration; - -[TestFixture] -public partial class MessageMarshallingTest -{ - [Test] - [TestCaseSource(nameof(GetAllMessages))] - public void DataContractTest(object value) => RunTest(value, nameof(DataContractClone)); - - [Test] - [TestCaseSource(nameof(GetDefaultMessages))] - public void ProtobufTest(object value) => RunTest(value, nameof(ProtobufClone)); - - [Test] - [TestCaseSource(nameof(GetAllMessages))] - public void JsonTest(object value) => RunTest(value, nameof(JsonClone)); - - private static void RunTest(object expected, string cloneMethodName) - { - var clone = typeof(MessageMarshallingTest) - .StaticMethod(cloneMethodName) - .MakeGenericMethod(expected.GetType()) - .CreateDelegate(typeof(Func<,>).MakeGenericType(expected.GetType(), expected.GetType())); - - var actual = clone.DynamicInvoke(expected); - - actual.ShouldNotBeNull(); - Compare(expected, actual); - } - - private static void Compare(object expected, object actual) - { - expected.GetType().ShouldBe(actual.GetType()); - - foreach (var property in expected.GetType().GetProperties(BindingFlags.Instance | BindingFlags.Public)) - { - var expectedValue = property.GetValue(expected); - var actualValue = property.GetValue(actual); - actualValue.ShouldBe(expectedValue, property.Name); - } - } - - private static T DataContractClone(T value) - { - var marshaller = DataContractMarshaller.Default; - return ContextualClone(value, marshaller); - } - - private static T ProtobufClone(T value) - { - var marshaller = ProtobufMarshallerFactory.Default.CreateMarshaller(); - return ContextualClone(value, marshaller); - } - - private static T JsonClone(T value) - { - var marshaller = JsonMarshaller.Default; - var content = marshaller.Serializer(value); - TestOutput.WriteLine("Size: {0}", content.Length); - return marshaller.Deserializer(content); - } - - private static T ContextualClone(T value, Marshaller marshaller) - { - var payload = MarshallerExtensions.Serialize(marshaller, value); - - TestOutput.WriteLine("Size: {0}", payload.Length); - return MarshallerExtensions.Deserialize(marshaller, payload); - } - - private static IEnumerable GetDefaultMessages() - { - yield return new Message(); - yield return new Message(1); - yield return new Message(1, "ab"); - - yield return new Message( - 1, - "ab", - new Person - { - Name = "person name", - Address = new PersonAddress { Street = "the street" } - }); - - yield return new Message( - new Person { Name = "person name" }, - new Knife { HitDamage = 1 }, - new Sword { HitDamage = 3, Length = 5 }); - - yield return new Message( - new Person { Name = "person name" }, - new Knife { HitDamage = 1 }); - - yield return new Message>(new Dictionary - { - { "value1", new Knife { HitDamage = 1 } }, - { "value2", new Sword { HitDamage = 3, Length = 5 } } - }); - - var bigMessageType = MessageBuilder.GetMessageType(Enumerable.Range(0, 1000).Select(_ => typeof(Person)).ToArray()); - var bigMessage = Activator.CreateInstance( - bigMessageType, - Enumerable.Range(0, 1000).Select(i => new Person { Name = "name " + i }).Cast().ToArray()); - yield return bigMessage!; - } - - private static IEnumerable GetAllMessages() - { - foreach (var i in GetDefaultMessages()) - { - yield return i; - } - - yield return new Message(new DynamicObject { Values = { new DynamicObject() } }); - yield return new Message>(new TheContainer(10)); - yield return new Message>(new TheContainer("abc")); - yield return new Message>(new TheContainer()); - } -} \ No newline at end of file diff --git a/Sources/ServiceModel.Grpc.Emit.Test/ServiceModel.Grpc.Emit.Test.csproj b/Sources/ServiceModel.Grpc.Emit.Test/ServiceModel.Grpc.Emit.Test.csproj index cec1a790..ead45aea 100644 --- a/Sources/ServiceModel.Grpc.Emit.Test/ServiceModel.Grpc.Emit.Test.csproj +++ b/Sources/ServiceModel.Grpc.Emit.Test/ServiceModel.Grpc.Emit.Test.csproj @@ -10,7 +10,6 @@ - diff --git a/Sources/ServiceModel.Grpc.Nerdbank.MessagePackMarshaller/Configuration/NerdbankMessagePackMarshallerFactory.cs b/Sources/ServiceModel.Grpc.Nerdbank.MessagePackMarshaller/Configuration/NerdbankMessagePackMarshallerFactory.cs index 1732dfa1..a18675e0 100644 --- a/Sources/ServiceModel.Grpc.Nerdbank.MessagePackMarshaller/Configuration/NerdbankMessagePackMarshallerFactory.cs +++ b/Sources/ServiceModel.Grpc.Nerdbank.MessagePackMarshaller/Configuration/NerdbankMessagePackMarshallerFactory.cs @@ -18,7 +18,6 @@ using Grpc.Core.Utils; using Nerdbank.MessagePack; using PolyType; -using PolyType.Abstractions; using ServiceModel.Grpc.Configuration.Internal; using SerializationContext = Grpc.Core.SerializationContext; diff --git a/Sources/ServiceModel.Grpc.ProtoBufMarshaller.Test/Configuration/ProtobufMarshallerFactoryTest.Domain.cs b/Sources/ServiceModel.Grpc.ProtoBufMarshaller.Test/Configuration/ProtobufMarshallerFactoryTest.Domain.cs new file mode 100644 index 00000000..cbe3c6c5 --- /dev/null +++ b/Sources/ServiceModel.Grpc.ProtoBufMarshaller.Test/Configuration/ProtobufMarshallerFactoryTest.Domain.cs @@ -0,0 +1,95 @@ +// +// Copyright Max Ieremenko +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +using System.Runtime.Serialization; +using ProtoBuf; + +namespace ServiceModel.Grpc.ProtoBufMarshaller.Configuration; + +public partial class ProtobufMarshallerFactoryTest +{ + [DataContract] + public record Person + { + [DataMember(Order = 1)] + public string? Name { get; set; } + + [DataMember(Order = 2)] + public PersonAddress? Address { get; set; } + } + + [DataContract] + public record PersonAddress + { + [DataMember(Order = 1)] + public string? Street { get; set; } + } + + [DataContract] + [ProtoInclude(3, typeof(Sword))] + [ProtoInclude(4, typeof(Knife))] + public abstract record Weapon + { + [DataMember(Order = 1)] + public int HitDamage { get; set; } + } + + [DataContract] + public record Sword : Weapon + { + [DataMember(Order = 1)] + public int Length { get; set; } + } + + [DataContract] + public record Knife : Weapon; + + [DataContract] + public class DynamicObject + { + [DataMember(Order = 1)] + public List Values { get; private set; } = new(); + + public override bool Equals(object? other) => other is DynamicObject obj && Values.SequenceEqual(obj.Values); + + public override int GetHashCode() => 0; + } + + [Serializable] + public record TheContainer : ISerializable + { + public TheContainer() + { + } + + public TheContainer(T value) + { + Value = value; + } + + private TheContainer(SerializationInfo info, StreamingContext context) + { + Value = (T)info.GetValue(nameof(Value), typeof(T))!; + } + + public T Value { get; set; } = default!; + + public void GetObjectData(SerializationInfo info, StreamingContext context) + { + info.AddValue(nameof(Value), Value); + } + } +} \ No newline at end of file diff --git a/Sources/ServiceModel.Grpc.ProtoBufMarshaller.Test/Configuration/ProtobufMarshallerFactoryTest.cs b/Sources/ServiceModel.Grpc.ProtoBufMarshaller.Test/Configuration/ProtobufMarshallerFactoryTest.cs new file mode 100644 index 00000000..6be4b097 --- /dev/null +++ b/Sources/ServiceModel.Grpc.ProtoBufMarshaller.Test/Configuration/ProtobufMarshallerFactoryTest.cs @@ -0,0 +1,91 @@ +// +// Copyright Max Ieremenko +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +using System.Reflection; +using NUnit.Framework; +using ServiceModel.Grpc.Channel; +using ServiceModel.Grpc.Configuration; + +namespace ServiceModel.Grpc.ProtoBufMarshaller.Configuration; + +[TestFixture] +public partial class ProtobufMarshallerFactoryTest +{ + [Test] + [TestCaseSource(nameof(GetMarshallTestCases))] + public void Marshall(object expected) + { + var payload = MarshallerExtensions.SerializeObject(ProtobufMarshallerFactory.Default, expected); + var actual = MarshallerExtensions.DeserializeObject(ProtobufMarshallerFactory.Default, expected.GetType(), payload); + + actual.ShouldNotBeNull(); + Compare(expected, actual); + } + + [Test] + public void MarshallNull() + { + var marshaller = ProtobufMarshallerFactory.Default.CreateMarshaller(); + var payload = MarshallerExtensions.Serialize(marshaller, null!); + + var actual = MarshallerExtensions.Deserialize(marshaller, payload); + + actual.ShouldBeEmpty(); + } + + private static void Compare(object expected, object actual) + { + expected.GetType().ShouldBe(actual.GetType()); + + foreach (var property in expected.GetType().GetProperties(BindingFlags.Instance | BindingFlags.Public)) + { + var expectedValue = property.GetValue(expected); + var actualValue = property.GetValue(actual); + actualValue.ShouldBe(expectedValue, property.Name); + } + } + + private static IEnumerable GetMarshallTestCases() + { + yield return new Message(); + yield return new Message(1); + yield return new Message(1, "ab"); + + yield return new Message( + 1, + "ab", + new Person + { + Name = "person name", + Address = new PersonAddress { Street = "the street" } + }); + + yield return new Message( + new Person { Name = "person name" }, + new Knife { HitDamage = 1 }, + new Sword { HitDamage = 3, Length = 5 }); + + yield return new Message( + new Person { Name = "person name" }, + new Knife { HitDamage = 1 }); + + yield return new Message>(new Dictionary + { + { "value1", new Knife { HitDamage = 1 } }, + { "value2", new Sword { HitDamage = 3, Length = 5 } } + }); + } +} \ No newline at end of file diff --git a/Sources/ServiceModel.Grpc.ProtoBufMarshaller.Test/ServiceModel.Grpc.ProtoBufMarshaller.Test.csproj b/Sources/ServiceModel.Grpc.ProtoBufMarshaller.Test/ServiceModel.Grpc.ProtoBufMarshaller.Test.csproj new file mode 100644 index 00000000..7d77a57d --- /dev/null +++ b/Sources/ServiceModel.Grpc.ProtoBufMarshaller.Test/ServiceModel.Grpc.ProtoBufMarshaller.Test.csproj @@ -0,0 +1,13 @@ + + + + + $(SupportedFrameworks) + ServiceModel.Grpc.ProtoBufMarshaller + + + + + + + diff --git a/Sources/ServiceModel.Grpc.Emit.Test/Configuration/MessageMarshallingTest.Domain.cs b/Sources/ServiceModel.Grpc.Test/Configuration/DataContractMarshallerTest.Domain.cs similarity index 64% rename from Sources/ServiceModel.Grpc.Emit.Test/Configuration/MessageMarshallingTest.Domain.cs rename to Sources/ServiceModel.Grpc.Test/Configuration/DataContractMarshallerTest.Domain.cs index d2c203b6..665ddb5e 100644 --- a/Sources/ServiceModel.Grpc.Emit.Test/Configuration/MessageMarshallingTest.Domain.cs +++ b/Sources/ServiceModel.Grpc.Test/Configuration/DataContractMarshallerTest.Domain.cs @@ -15,13 +15,10 @@ // using System.Runtime.Serialization; -using Grpc.Core; -using Newtonsoft.Json; -using ProtoBuf; -namespace ServiceModel.Grpc.Emit.Configuration; +namespace ServiceModel.Grpc.Configuration; -public partial class MessageMarshallingTest +public partial class DataContractMarshallerTest { [DataContract] public record Person @@ -43,8 +40,6 @@ public record PersonAddress [DataContract] [KnownType(typeof(Sword))] [KnownType(typeof(Knife))] - [ProtoInclude(3, typeof(Sword))] - [ProtoInclude(4, typeof(Knife))] public abstract record Weapon { [DataMember(Order = 1)] @@ -97,33 +92,4 @@ public void GetObjectData(SerializationInfo info, StreamingContext context) info.AddValue(nameof(Value), Value); } } - - public sealed class JsonMarshaller - { - public static readonly Marshaller Default = new(Serialize, Deserialize); - - private static byte[] Serialize(T value) - { - using (var buffer = new MemoryStream()) - { - using (var writer = new StreamWriter(buffer, Encoding.Unicode, 1024, true)) - { - var serializer = JsonSerializer.CreateDefault(new JsonSerializerSettings { TypeNameHandling = TypeNameHandling.All }); - serializer.Serialize(writer, value); - } - - return buffer.ToArray(); - } - } - - private static T Deserialize(byte[] value) - { - using (var buffer = new MemoryStream(value)) - using (var reader = new JsonTextReader(new StreamReader(buffer))) - { - var serializer = JsonSerializer.CreateDefault(new JsonSerializerSettings { TypeNameHandling = TypeNameHandling.All }); - return serializer.Deserialize(reader)!; - } - } - } } \ No newline at end of file diff --git a/Sources/ServiceModel.Grpc.Test/Configuration/DataContractMarshallerTest.cs b/Sources/ServiceModel.Grpc.Test/Configuration/DataContractMarshallerTest.cs index 8675b589..7426c34b 100644 --- a/Sources/ServiceModel.Grpc.Test/Configuration/DataContractMarshallerTest.cs +++ b/Sources/ServiceModel.Grpc.Test/Configuration/DataContractMarshallerTest.cs @@ -14,22 +14,24 @@ // limitations under the License. // +using System.Reflection; using NUnit.Framework; +using ServiceModel.Grpc.Channel; namespace ServiceModel.Grpc.Configuration; [TestFixture] -public class DataContractMarshallerTest +public partial class DataContractMarshallerTest { [Test] [TestCaseSource(nameof(GetMarshallTestCases))] - public void Marshall(object value) + public void Marshall(object expected) { - var payload = MarshallerExtensions.SerializeObject(DataContractMarshallerFactory.Default, value); + var payload = MarshallerExtensions.SerializeObject(DataContractMarshallerFactory.Default, expected); + var actual = MarshallerExtensions.DeserializeObject(DataContractMarshallerFactory.Default, expected.GetType(), payload); - var actual = MarshallerExtensions.DeserializeObject(DataContractMarshallerFactory.Default, value.GetType(), payload); - - actual.ShouldBe(value); + actual.ShouldNotBeNull(); + Compare(expected, actual); } [Test] @@ -42,11 +44,52 @@ public void MarshallNull() actual.ShouldBeNull(); } - private static IEnumerable GetMarshallTestCases() + private static void Compare(object expected, object actual) + { + expected.GetType().ShouldBe(actual.GetType()); + + foreach (var property in expected.GetType().GetProperties(BindingFlags.Instance | BindingFlags.Public)) + { + var expectedValue = property.GetValue(expected); + var actualValue = property.GetValue(actual); + actualValue.ShouldBe(expectedValue, property.Name); + } + } + + private static IEnumerable GetMarshallTestCases() { - yield return new TestCaseData("abc"); - yield return new TestCaseData(1); - yield return new TestCaseData(1.1); - yield return new TestCaseData(new Tuple>(new Tuple("data"))); + yield return new Message(); + yield return new Message(1); + yield return new Message(1, "ab"); + yield return new Message(1); + yield return new Message>>(new Tuple>(new Tuple("data"))); + + yield return new Message( + 1, + "ab", + new Person + { + Name = "person name", + Address = new PersonAddress { Street = "the street" } + }); + + yield return new Message( + new Person { Name = "person name" }, + new Knife { HitDamage = 1 }, + new Sword { HitDamage = 3, Length = 5 }); + + yield return new Message( + new Person { Name = "person name" }, + new Knife { HitDamage = 1 }); + + yield return new Message>(new Dictionary + { + { "value1", new Knife { HitDamage = 1 } }, + { "value2", new Sword { HitDamage = 3, Length = 5 } } + }); + + yield return new Message(new DynamicObject { Values = { new DynamicObject() } }); + yield return new Message>(new TheContainer(10)); + yield return new Message>(new TheContainer("abc")); } } \ No newline at end of file diff --git a/Sources/ServiceModel.Grpc.TestApi/ServiceModel.Grpc.TestApi.csproj b/Sources/ServiceModel.Grpc.TestApi/ServiceModel.Grpc.TestApi.csproj index 4e733409..1fc22617 100644 --- a/Sources/ServiceModel.Grpc.TestApi/ServiceModel.Grpc.TestApi.csproj +++ b/Sources/ServiceModel.Grpc.TestApi/ServiceModel.Grpc.TestApi.csproj @@ -10,6 +10,9 @@ + + + diff --git a/Sources/ServiceModel.Grpc.slnx b/Sources/ServiceModel.Grpc.slnx index fe0e4ba1..6971ba45 100644 --- a/Sources/ServiceModel.Grpc.slnx +++ b/Sources/ServiceModel.Grpc.slnx @@ -22,6 +22,7 @@ + diff --git a/Sources/Test.csproj.props b/Sources/Test.csproj.props index f336df9a..9edcd155 100644 --- a/Sources/Test.csproj.props +++ b/Sources/Test.csproj.props @@ -6,7 +6,6 @@ - From 7d0e01382ebfbfcca97ef2524b62ae42e4c428c3 Mon Sep 17 00:00:00 2001 From: max-ieremenko <> Date: Sat, 20 Dec 2025 13:39:39 +0100 Subject: [PATCH 3/8] update third-party-notices --- .../microsoft.bcl.hashcode/6.0.0/index.json | 10 -- .../microsoft.bcl.hashcode/6.0.0/readme.md | 4 +- .../10.0.0/index.json | 100 -------------- .../10.0.0/package.nuspec | 21 --- .../10.0.0/readme.md | 18 --- .../10.0.0/repository-LICENSE.TXT | 23 ---- .../8.0.22/index.json | 100 -------------- .../8.0.22/package-LICENSE.TXT | 23 ---- .../8.0.22/package.nuspec | 21 --- .../8.0.22/readme.md | 18 --- .../8.0.22/repository-LICENSE.TXT | 23 ---- .../9.0.11/index.json | 100 -------------- .../9.0.11/package-LICENSE.TXT | 23 ---- .../9.0.11/package.nuspec | 21 --- .../9.0.11/readme.md | 18 --- .../9.0.11/repository-LICENSE.TXT | 23 ---- .../18.0.1/index.json | 22 +-- .../18.0.1/readme.md | 2 +- .../newtonsoft.json/13.0.3/index.json | 95 +++++++++++++ .../newtonsoft.json/13.0.3/readme.md | 4 +- .../newtonsoft.json/13.0.4/index.json | 130 ------------------ .../newtonsoft.json/13.0.4/package-LICENSE.md | 20 --- .../newtonsoft.json/13.0.4/package.nuspec | 41 ------ .../newtonsoft.json/13.0.4/readme.md | 18 --- .../13.0.4/repository-LICENSE.md | 20 --- .../nuget.org/system.buffers/4.5.1/index.json | 1 + .../nuget.org/system.buffers/4.6.1/index.json | 37 ----- .../system.buffers/4.6.1/package.nuspec | 24 ---- .../system.buffers/4.6.1/project-LICENSE | 23 ---- .../nuget.org/system.buffers/4.6.1/readme.md | 18 --- .../system.buffers/4.6.1/repository-LICENSE | 23 ---- .../1.5.0/index.json | 10 ++ .../1.5.0/readme.md | 2 +- .../7.0.0/index.json | 20 --- .../7.0.0/readme.md | 7 +- .../6.0.1/index.json | 2 +- .../6.0.1/readme.md | 3 +- .../nuget.org/system.memory/4.5.5/index.json | 24 ++++ .../nuget.org/system.memory/4.5.5/readme.md | 2 +- .../nuget.org/system.memory/4.6.3/index.json | 51 ------- .../system.memory/4.6.3/package.nuspec | 32 ----- .../system.memory/4.6.3/project-LICENSE | 23 ---- .../nuget.org/system.memory/4.6.3/readme.md | 27 ---- .../system.memory/4.6.3/repository-LICENSE | 23 ---- .../10.0.0/index.json | 36 ----- .../10.0.0/package.nuspec | 35 ----- .../10.0.0/readme.md | 21 --- .../10.0.0/repository-LICENSE.TXT | 23 ---- .../system.numerics.vectors/4.5.0/index.json | 10 ++ .../system.numerics.vectors/4.5.0/readme.md | 2 +- .../system.numerics.vectors/4.6.1/index.json | 37 ----- .../4.6.1/package.nuspec | 27 ---- .../4.6.1/project-LICENSE | 23 ---- .../system.numerics.vectors/4.6.1/readme.md | 18 --- .../4.6.1/repository-LICENSE | 23 ---- .../1.6.0/index.json | 2 +- .../1.6.0/readme.md | 3 +- .../10.0.0/index.json | 10 ++ .../10.0.0/readme.md | 8 ++ Build/third-party-libraries/readme.md | 24 ++-- 60 files changed, 192 insertions(+), 1360 deletions(-) delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/10.0.0/index.json delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/10.0.0/package.nuspec delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/10.0.0/readme.md delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/10.0.0/repository-LICENSE.TXT delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/8.0.22/index.json delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/8.0.22/package-LICENSE.TXT delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/8.0.22/package.nuspec delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/8.0.22/readme.md delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/8.0.22/repository-LICENSE.TXT delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/9.0.11/index.json delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/9.0.11/package-LICENSE.TXT delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/9.0.11/package.nuspec delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/9.0.11/readme.md delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/9.0.11/repository-LICENSE.TXT delete mode 100644 Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.4/index.json delete mode 100644 Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.4/package-LICENSE.md delete mode 100644 Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.4/package.nuspec delete mode 100644 Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.4/readme.md delete mode 100644 Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.4/repository-LICENSE.md delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.buffers/4.6.1/index.json delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.buffers/4.6.1/package.nuspec delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.buffers/4.6.1/project-LICENSE delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.buffers/4.6.1/readme.md delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.buffers/4.6.1/repository-LICENSE delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.memory/4.6.3/index.json delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.memory/4.6.3/package.nuspec delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.memory/4.6.3/project-LICENSE delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.memory/4.6.3/readme.md delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.memory/4.6.3/repository-LICENSE delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/10.0.0/index.json delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/10.0.0/package.nuspec delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/10.0.0/readme.md delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/10.0.0/repository-LICENSE.TXT delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.6.1/index.json delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.6.1/package.nuspec delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.6.1/project-LICENSE delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.6.1/readme.md delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.6.1/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.hashcode/6.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.hashcode/6.0.0/index.json index c8fc73e4..de7a937a 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.hashcode/6.0.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.hashcode/6.0.0/index.json @@ -6,16 +6,6 @@ "Status": "AutomaticallyApproved" }, "UsedBy": [ - { - "Name": "ClientDI", - "InternalOnly": true, - "TargetFrameworks": [ - "net10.0", - "net481", - "net8.0", - "net9.0" - ] - }, { "Name": "NerdbankMessagePack", "InternalOnly": false, diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.hashcode/6.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.hashcode/6.0.0/readme.md index 1b535108..a5245ff8 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.hashcode/6.0.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.hashcode/6.0.0/readme.md @@ -1,9 +1,9 @@ Microsoft.Bcl.HashCode [6.0.0](https://www.nuget.org/packages/Microsoft.Bcl.HashCode/6.0.0) -------------------- -Used by: ClientDI internal, NerdbankMessagePack +Used by: NerdbankMessagePack -Target frameworks: net10.0, net481, net8.0, net9.0, netstandard2.0 +Target frameworks: net10.0, net8.0, net9.0, netstandard2.0 License: [MIT](../../../../licenses/mit) diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/10.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/10.0.0/index.json deleted file mode 100644 index 991e6080..00000000 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/10.0.0/index.json +++ /dev/null @@ -1,100 +0,0 @@ -{ - "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", - "Source": "https://api.nuget.org/v3/index.json", - "License": { - "Code": "MIT", - "Status": "AutomaticallyApproved" - }, - "UsedBy": [ - { - "Name": "AspNetCore", - "InternalOnly": false, - "TargetFrameworks": [ - "net10.0", - "net8.0", - "net9.0" - ] - }, - { - "Name": "ClientDI", - "InternalOnly": false, - "TargetFrameworks": [ - "net10.0", - "net8.0", - "net9.0", - "netstandard2.0", - "netstandard2.1" - ] - }, - { - "Name": "Core", - "InternalOnly": false, - "TargetFrameworks": [ - "net10.0", - "net462", - "net8.0", - "net9.0", - "netstandard2.0", - "netstandard2.1" - ] - }, - { - "Name": "Emit", - "InternalOnly": false, - "TargetFrameworks": [ - "net10.0", - "net462", - "net8.0", - "net9.0", - "netstandard2.0", - "netstandard2.1" - ] - }, - { - "Name": "MemoryPack", - "InternalOnly": false, - "TargetFrameworks": [ - "net10.0", - "net8.0", - "net9.0", - "netstandard2.1" - ] - }, - { - "Name": "MessagePack", - "InternalOnly": false, - "TargetFrameworks": [ - "net10.0", - "net8.0", - "net9.0", - "netstandard2.0" - ] - }, - { - "Name": "NerdbankMessagePack", - "InternalOnly": false, - "TargetFrameworks": [ - "net10.0", - "net8.0", - "net9.0", - "netstandard2.0" - ] - } - ], - "Licenses": [ - { - "Subject": "package", - "Code": "MIT", - "HRef": "https://licenses.nuget.org/MIT" - }, - { - "Subject": "repository", - "Code": "MIT", - "HRef": "https://github.com/dotnet/dotnet" - }, - { - "Subject": "project", - "HRef": "https://dot.net/" - } - ] -} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/10.0.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/10.0.0/package.nuspec deleted file mode 100644 index 65100b86..00000000 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/10.0.0/package.nuspec +++ /dev/null @@ -1,21 +0,0 @@ - - - - Microsoft.NET.ILLink.Tasks - 10.0.0 - Microsoft - MIT - https://licenses.nuget.org/MIT - Icon.png - https://dot.net/ - MSBuild tasks for running the IL Linker - https://go.microsoft.com/fwlink/?LinkID=799421 - © Microsoft Corporation. All rights reserved. - true - - - - - - - \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/10.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/10.0.0/readme.md deleted file mode 100644 index f27b322c..00000000 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/10.0.0/readme.md +++ /dev/null @@ -1,18 +0,0 @@ -Microsoft.NET.ILLink.Tasks [10.0.0](https://www.nuget.org/packages/Microsoft.NET.ILLink.Tasks/10.0.0) --------------------- - -Used by: AspNetCore, ClientDI, Core, Emit, MemoryPack, MessagePack, NerdbankMessagePack - -Target frameworks: net10.0, net462, net8.0, net9.0, netstandard2.0, netstandard2.1 - -License: [MIT](../../../../licenses/mit) - -- package license: [MIT](https://licenses.nuget.org/MIT) -- repository license: [MIT](https://github.com/dotnet/dotnet) -- project license: [Unknown](https://dot.net/) - -Description ------------ -MSBuild tasks for running the IL Linker - -*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/10.0.0/repository-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/10.0.0/repository-LICENSE.TXT deleted file mode 100644 index a616ed18..00000000 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/10.0.0/repository-LICENSE.TXT +++ /dev/null @@ -1,23 +0,0 @@ -The MIT License (MIT) - -Copyright (c) .NET Foundation and Contributors - -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/8.0.22/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/8.0.22/index.json deleted file mode 100644 index 0d5685fb..00000000 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/8.0.22/index.json +++ /dev/null @@ -1,100 +0,0 @@ -{ - "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", - "Source": "https://api.nuget.org/v3/index.json", - "License": { - "Code": "MIT", - "Status": "AutomaticallyApproved" - }, - "UsedBy": [ - { - "Name": "AspNetCore", - "InternalOnly": false, - "TargetFrameworks": [ - "net10.0", - "net8.0", - "net9.0" - ] - }, - { - "Name": "ClientDI", - "InternalOnly": false, - "TargetFrameworks": [ - "net10.0", - "net8.0", - "net9.0", - "netstandard2.0", - "netstandard2.1" - ] - }, - { - "Name": "Core", - "InternalOnly": false, - "TargetFrameworks": [ - "net10.0", - "net462", - "net8.0", - "net9.0", - "netstandard2.0", - "netstandard2.1" - ] - }, - { - "Name": "Emit", - "InternalOnly": false, - "TargetFrameworks": [ - "net10.0", - "net462", - "net8.0", - "net9.0", - "netstandard2.0", - "netstandard2.1" - ] - }, - { - "Name": "MemoryPack", - "InternalOnly": false, - "TargetFrameworks": [ - "net10.0", - "net8.0", - "net9.0", - "netstandard2.1" - ] - }, - { - "Name": "MessagePack", - "InternalOnly": false, - "TargetFrameworks": [ - "net10.0", - "net8.0", - "net9.0", - "netstandard2.0" - ] - }, - { - "Name": "NerdbankMessagePack", - "InternalOnly": false, - "TargetFrameworks": [ - "net10.0", - "net8.0", - "net9.0", - "netstandard2.0" - ] - } - ], - "Licenses": [ - { - "Subject": "package", - "Code": "MIT", - "HRef": "https://licenses.nuget.org/MIT" - }, - { - "Subject": "repository", - "Code": "MIT", - "HRef": "https://github.com/dotnet/runtime" - }, - { - "Subject": "project", - "HRef": "https://dot.net/" - } - ] -} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/8.0.22/package-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/8.0.22/package-LICENSE.TXT deleted file mode 100644 index 984713a4..00000000 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/8.0.22/package-LICENSE.TXT +++ /dev/null @@ -1,23 +0,0 @@ -The MIT License (MIT) - -Copyright (c) .NET Foundation and Contributors - -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/8.0.22/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/8.0.22/package.nuspec deleted file mode 100644 index 514947a6..00000000 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/8.0.22/package.nuspec +++ /dev/null @@ -1,21 +0,0 @@ - - - - Microsoft.NET.ILLink.Tasks - 8.0.22 - Microsoft - MIT - https://licenses.nuget.org/MIT - Icon.png - https://dot.net/ - MSBuild tasks for running the IL Linker - https://go.microsoft.com/fwlink/?LinkID=799421 - © Microsoft Corporation. All rights reserved. - true - - - - - - - \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/8.0.22/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/8.0.22/readme.md deleted file mode 100644 index cf550152..00000000 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/8.0.22/readme.md +++ /dev/null @@ -1,18 +0,0 @@ -Microsoft.NET.ILLink.Tasks [8.0.22](https://www.nuget.org/packages/Microsoft.NET.ILLink.Tasks/8.0.22) --------------------- - -Used by: AspNetCore, ClientDI, Core, Emit, MemoryPack, MessagePack, NerdbankMessagePack - -Target frameworks: net10.0, net462, net8.0, net9.0, netstandard2.0, netstandard2.1 - -License: [MIT](../../../../licenses/mit) - -- package license: [MIT](https://licenses.nuget.org/MIT) -- repository license: [MIT](https://github.com/dotnet/runtime) -- project license: [Unknown](https://dot.net/) - -Description ------------ -MSBuild tasks for running the IL Linker - -*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/8.0.22/repository-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/8.0.22/repository-LICENSE.TXT deleted file mode 100644 index 984713a4..00000000 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/8.0.22/repository-LICENSE.TXT +++ /dev/null @@ -1,23 +0,0 @@ -The MIT License (MIT) - -Copyright (c) .NET Foundation and Contributors - -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/9.0.11/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/9.0.11/index.json deleted file mode 100644 index 0d5685fb..00000000 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/9.0.11/index.json +++ /dev/null @@ -1,100 +0,0 @@ -{ - "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", - "Source": "https://api.nuget.org/v3/index.json", - "License": { - "Code": "MIT", - "Status": "AutomaticallyApproved" - }, - "UsedBy": [ - { - "Name": "AspNetCore", - "InternalOnly": false, - "TargetFrameworks": [ - "net10.0", - "net8.0", - "net9.0" - ] - }, - { - "Name": "ClientDI", - "InternalOnly": false, - "TargetFrameworks": [ - "net10.0", - "net8.0", - "net9.0", - "netstandard2.0", - "netstandard2.1" - ] - }, - { - "Name": "Core", - "InternalOnly": false, - "TargetFrameworks": [ - "net10.0", - "net462", - "net8.0", - "net9.0", - "netstandard2.0", - "netstandard2.1" - ] - }, - { - "Name": "Emit", - "InternalOnly": false, - "TargetFrameworks": [ - "net10.0", - "net462", - "net8.0", - "net9.0", - "netstandard2.0", - "netstandard2.1" - ] - }, - { - "Name": "MemoryPack", - "InternalOnly": false, - "TargetFrameworks": [ - "net10.0", - "net8.0", - "net9.0", - "netstandard2.1" - ] - }, - { - "Name": "MessagePack", - "InternalOnly": false, - "TargetFrameworks": [ - "net10.0", - "net8.0", - "net9.0", - "netstandard2.0" - ] - }, - { - "Name": "NerdbankMessagePack", - "InternalOnly": false, - "TargetFrameworks": [ - "net10.0", - "net8.0", - "net9.0", - "netstandard2.0" - ] - } - ], - "Licenses": [ - { - "Subject": "package", - "Code": "MIT", - "HRef": "https://licenses.nuget.org/MIT" - }, - { - "Subject": "repository", - "Code": "MIT", - "HRef": "https://github.com/dotnet/runtime" - }, - { - "Subject": "project", - "HRef": "https://dot.net/" - } - ] -} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/9.0.11/package-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/9.0.11/package-LICENSE.TXT deleted file mode 100644 index 984713a4..00000000 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/9.0.11/package-LICENSE.TXT +++ /dev/null @@ -1,23 +0,0 @@ -The MIT License (MIT) - -Copyright (c) .NET Foundation and Contributors - -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/9.0.11/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/9.0.11/package.nuspec deleted file mode 100644 index 9f918b4f..00000000 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/9.0.11/package.nuspec +++ /dev/null @@ -1,21 +0,0 @@ - - - - Microsoft.NET.ILLink.Tasks - 9.0.11 - Microsoft - MIT - https://licenses.nuget.org/MIT - Icon.png - https://dot.net/ - MSBuild tasks for running the IL Linker - https://go.microsoft.com/fwlink/?LinkID=799421 - © Microsoft Corporation. All rights reserved. - true - - - - - - - \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/9.0.11/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/9.0.11/readme.md deleted file mode 100644 index 67169565..00000000 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/9.0.11/readme.md +++ /dev/null @@ -1,18 +0,0 @@ -Microsoft.NET.ILLink.Tasks [9.0.11](https://www.nuget.org/packages/Microsoft.NET.ILLink.Tasks/9.0.11) --------------------- - -Used by: AspNetCore, ClientDI, Core, Emit, MemoryPack, MessagePack, NerdbankMessagePack - -Target frameworks: net10.0, net462, net8.0, net9.0, netstandard2.0, netstandard2.1 - -License: [MIT](../../../../licenses/mit) - -- package license: [MIT](https://licenses.nuget.org/MIT) -- repository license: [MIT](https://github.com/dotnet/runtime) -- project license: [Unknown](https://dot.net/) - -Description ------------ -MSBuild tasks for running the IL Linker - -*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/9.0.11/repository-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/9.0.11/repository-LICENSE.TXT deleted file mode 100644 index 984713a4..00000000 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.net.illink.tasks/9.0.11/repository-LICENSE.TXT +++ /dev/null @@ -1,23 +0,0 @@ -The MIT License (MIT) - -Copyright (c) .NET Foundation and Contributors - -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.0.1/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.0.1/index.json index 386ea9b0..2ee3927f 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.0.1/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.0.1/index.json @@ -21,7 +21,7 @@ }, { "Name": "Newtonsoft.Json", - "Version": "13.0.4" + "Version": "13.0.3" } ] }, @@ -40,7 +40,7 @@ }, { "Name": "Newtonsoft.Json", - "Version": "13.0.4" + "Version": "13.0.3" } ] }, @@ -59,7 +59,7 @@ }, { "Name": "Newtonsoft.Json", - "Version": "13.0.4" + "Version": "13.0.3" } ] }, @@ -79,7 +79,7 @@ }, { "Name": "Newtonsoft.Json", - "Version": "13.0.4" + "Version": "13.0.3" } ] }, @@ -99,7 +99,7 @@ }, { "Name": "Newtonsoft.Json", - "Version": "13.0.4" + "Version": "13.0.3" } ] }, @@ -119,7 +119,7 @@ }, { "Name": "Newtonsoft.Json", - "Version": "13.0.4" + "Version": "13.0.3" } ] }, @@ -139,7 +139,7 @@ }, { "Name": "Newtonsoft.Json", - "Version": "13.0.4" + "Version": "13.0.3" } ] }, @@ -158,7 +158,7 @@ }, { "Name": "Newtonsoft.Json", - "Version": "13.0.4" + "Version": "13.0.3" } ] }, @@ -177,7 +177,7 @@ }, { "Name": "Newtonsoft.Json", - "Version": "13.0.4" + "Version": "13.0.3" } ] }, @@ -196,7 +196,7 @@ }, { "Name": "Newtonsoft.Json", - "Version": "13.0.4" + "Version": "13.0.3" } ] }, @@ -216,7 +216,7 @@ }, { "Name": "Newtonsoft.Json", - "Version": "13.0.4" + "Version": "13.0.3" } ] } diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.0.1/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.0.1/readme.md index 6e58022c..12569e1d 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.0.1/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.0.1/readme.md @@ -21,6 +21,6 @@ Dependencies 2 |Name|Version| |----------|:----| |[Microsoft.TestPlatform.ObjectModel](../../../../packages/nuget.org/microsoft.testplatform.objectmodel/18.0.1)|18.0.1| -|[Newtonsoft.Json](../../../../packages/nuget.org/newtonsoft.json/13.0.4)|13.0.4| +|[Newtonsoft.Json](../../../../packages/nuget.org/newtonsoft.json/13.0.3)|13.0.3| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.3/index.json b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.3/index.json index 69f5f44b..f5d2ae16 100644 --- a/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.3/index.json +++ b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.3/index.json @@ -6,6 +6,15 @@ "Status": "AutomaticallyApproved" }, "UsedBy": [ + { + "Name": "AspNetCore", + "InternalOnly": true, + "TargetFrameworks": [ + "net10.0", + "net8.0", + "net9.0" + ] + }, { "Name": "AspNetCoreNSwag", "InternalOnly": false, @@ -14,6 +23,92 @@ "net8.0", "net9.0" ] + }, + { + "Name": "AspNetCoreSwashbuckle", + "InternalOnly": true, + "TargetFrameworks": [ + "net10.0", + "net8.0", + "net9.0" + ] + }, + { + "Name": "ClientDI", + "InternalOnly": true, + "TargetFrameworks": [ + "net10.0", + "net481", + "net8.0", + "net9.0" + ] + }, + { + "Name": "Core", + "InternalOnly": true, + "TargetFrameworks": [ + "net10.0", + "net481", + "net8.0", + "net9.0" + ] + }, + { + "Name": "DesignTime", + "InternalOnly": true, + "TargetFrameworks": [ + "net10.0", + "net481", + "net8.0", + "net9.0" + ] + }, + { + "Name": "Emit", + "InternalOnly": true, + "TargetFrameworks": [ + "net10.0", + "net481", + "net8.0", + "net9.0" + ] + }, + { + "Name": "MemoryPack", + "InternalOnly": true, + "TargetFrameworks": [ + "net10.0", + "net8.0", + "net9.0" + ] + }, + { + "Name": "MessagePack", + "InternalOnly": true, + "TargetFrameworks": [ + "net10.0", + "net8.0", + "net9.0" + ] + }, + { + "Name": "NerdbankMessagePack", + "InternalOnly": true, + "TargetFrameworks": [ + "net10.0", + "net8.0", + "net9.0" + ] + }, + { + "Name": "SelfHost", + "InternalOnly": true, + "TargetFrameworks": [ + "net10.0", + "net481", + "net8.0", + "net9.0" + ] } ], "Licenses": [ diff --git a/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.3/readme.md b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.3/readme.md index 5d27c74c..cf3d49f0 100644 --- a/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.3/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.3/readme.md @@ -1,9 +1,9 @@ Newtonsoft.Json [13.0.3](https://www.nuget.org/packages/Newtonsoft.Json/13.0.3) -------------------- -Used by: AspNetCoreNSwag +Used by: AspNetCore internal, AspNetCoreNSwag, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal -Target frameworks: net10.0, net8.0, net9.0 +Target frameworks: net10.0, net481, net8.0, net9.0 License: [MIT](../../../../licenses/mit) diff --git a/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.4/index.json b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.4/index.json deleted file mode 100644 index a501f7ae..00000000 --- a/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.4/index.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", - "Source": "https://api.nuget.org/v3/index.json", - "License": { - "Code": "MIT", - "Status": "AutomaticallyApproved" - }, - "UsedBy": [ - { - "Name": "AspNetCore", - "InternalOnly": true, - "TargetFrameworks": [ - "net10.0", - "net8.0", - "net9.0" - ] - }, - { - "Name": "AspNetCoreNSwag", - "InternalOnly": true, - "TargetFrameworks": [ - "net10.0", - "net8.0", - "net9.0" - ] - }, - { - "Name": "AspNetCoreSwashbuckle", - "InternalOnly": true, - "TargetFrameworks": [ - "net10.0", - "net8.0", - "net9.0" - ] - }, - { - "Name": "ClientDI", - "InternalOnly": true, - "TargetFrameworks": [ - "net10.0", - "net481", - "net8.0", - "net9.0" - ] - }, - { - "Name": "Core", - "InternalOnly": true, - "TargetFrameworks": [ - "net10.0", - "net481", - "net8.0", - "net9.0" - ] - }, - { - "Name": "DesignTime", - "InternalOnly": true, - "TargetFrameworks": [ - "net10.0", - "net481", - "net8.0", - "net9.0" - ] - }, - { - "Name": "Emit", - "InternalOnly": true, - "TargetFrameworks": [ - "net10.0", - "net481", - "net8.0", - "net9.0" - ] - }, - { - "Name": "MemoryPack", - "InternalOnly": true, - "TargetFrameworks": [ - "net10.0", - "net8.0", - "net9.0" - ] - }, - { - "Name": "MessagePack", - "InternalOnly": true, - "TargetFrameworks": [ - "net10.0", - "net8.0", - "net9.0" - ] - }, - { - "Name": "NerdbankMessagePack", - "InternalOnly": true, - "TargetFrameworks": [ - "net10.0", - "net8.0", - "net9.0" - ] - }, - { - "Name": "SelfHost", - "InternalOnly": true, - "TargetFrameworks": [ - "net10.0", - "net481", - "net8.0", - "net9.0" - ] - } - ], - "Licenses": [ - { - "Subject": "package", - "Code": "MIT", - "HRef": "https://licenses.nuget.org/MIT" - }, - { - "Subject": "repository", - "Code": "MIT", - "HRef": "https://github.com/JamesNK/Newtonsoft.Json" - }, - { - "Subject": "project", - "HRef": "https://www.newtonsoft.com/json" - } - ] -} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.4/package-LICENSE.md b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.4/package-LICENSE.md deleted file mode 100644 index dfaadbe4..00000000 --- a/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.4/package-LICENSE.md +++ /dev/null @@ -1,20 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2007 James Newton-King - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.4/package.nuspec b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.4/package.nuspec deleted file mode 100644 index 0567aba4..00000000 --- a/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.4/package.nuspec +++ /dev/null @@ -1,41 +0,0 @@ - - - - Newtonsoft.Json - 13.0.4 - Json.NET - James Newton-King - MIT - https://licenses.nuget.org/MIT - packageIcon.png - README.md - https://www.newtonsoft.com/json - https://www.newtonsoft.com/content/images/nugeticon.png - Json.NET is a popular high-performance JSON framework for .NET - Copyright © James Newton-King 2008 - json - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.4/readme.md b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.4/readme.md deleted file mode 100644 index bd0095ff..00000000 --- a/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.4/readme.md +++ /dev/null @@ -1,18 +0,0 @@ -Newtonsoft.Json [13.0.4](https://www.nuget.org/packages/Newtonsoft.Json/13.0.4) --------------------- - -Used by: AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal - -Target frameworks: net10.0, net481, net8.0, net9.0 - -License: [MIT](../../../../licenses/mit) - -- package license: [MIT](https://licenses.nuget.org/MIT) -- repository license: [MIT](https://github.com/JamesNK/Newtonsoft.Json) -- project license: [Unknown](https://www.newtonsoft.com/json) - -Description ------------ -Json.NET is a popular high-performance JSON framework for .NET - -*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.4/repository-LICENSE.md b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.4/repository-LICENSE.md deleted file mode 100644 index dfaadbe4..00000000 --- a/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.4/repository-LICENSE.md +++ /dev/null @@ -1,20 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2007 James Newton-King - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/index.json b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/index.json index 9e3c9f6f..97dc0e85 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/index.json @@ -11,6 +11,7 @@ "InternalOnly": false, "TargetFrameworks": [ "net10.0", + "net481", "net8.0", "net9.0", "netstandard2.0", diff --git a/Build/third-party-libraries/packages/nuget.org/system.buffers/4.6.1/index.json b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.6.1/index.json deleted file mode 100644 index 2a9e43f1..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.buffers/4.6.1/index.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", - "Source": "https://api.nuget.org/v3/index.json", - "License": { - "Code": "MIT", - "Status": "AutomaticallyApproved" - }, - "UsedBy": [ - { - "Name": "ClientDI", - "InternalOnly": true, - "TargetFrameworks": [ - "net10.0", - "net481", - "net8.0", - "net9.0" - ] - } - ], - "Licenses": [ - { - "Subject": "package", - "Code": "MIT", - "HRef": "https://licenses.nuget.org/MIT" - }, - { - "Subject": "repository", - "Code": "MIT", - "HRef": "https://github.com/dotnet/maintenance-packages" - }, - { - "Subject": "project", - "Code": "MIT", - "HRef": "https://github.com/dotnet/maintenance-packages" - } - ] -} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.buffers/4.6.1/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.6.1/package.nuspec deleted file mode 100644 index 8030a6e8..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.buffers/4.6.1/package.nuspec +++ /dev/null @@ -1,24 +0,0 @@ - - - - System.Buffers - 4.6.1 - Microsoft - true - MIT - https://licenses.nuget.org/MIT - Icon.png - PACKAGE.md - https://github.com/dotnet/maintenance-packages - System.Buffers - © Microsoft Corporation. All rights reserved. - true - - - - - - - - - \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.buffers/4.6.1/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.6.1/project-LICENSE deleted file mode 100644 index 984713a4..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.buffers/4.6.1/project-LICENSE +++ /dev/null @@ -1,23 +0,0 @@ -The MIT License (MIT) - -Copyright (c) .NET Foundation and Contributors - -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.buffers/4.6.1/readme.md b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.6.1/readme.md deleted file mode 100644 index 1bdbe2d9..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.buffers/4.6.1/readme.md +++ /dev/null @@ -1,18 +0,0 @@ -System.Buffers [4.6.1](https://www.nuget.org/packages/System.Buffers/4.6.1) --------------------- - -Used by: ClientDI internal - -Target frameworks: net10.0, net481, net8.0, net9.0 - -License: [MIT](../../../../licenses/mit) - -- package license: [MIT](https://licenses.nuget.org/MIT) -- repository license: [MIT](https://github.com/dotnet/maintenance-packages) -- project license: [MIT](https://github.com/dotnet/maintenance-packages) - -Description ------------ -System.Buffers - -*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.buffers/4.6.1/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.6.1/repository-LICENSE deleted file mode 100644 index 984713a4..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.buffers/4.6.1/repository-LICENSE +++ /dev/null @@ -1,23 +0,0 @@ -The MIT License (MIT) - -Copyright (c) .NET Foundation and Contributors - -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/1.5.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/1.5.0/index.json index 1c1b4d32..30918850 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/1.5.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/1.5.0/index.json @@ -26,6 +26,16 @@ "net9.0" ] }, + { + "Name": "Emit", + "InternalOnly": true, + "TargetFrameworks": [ + "net10.0", + "net481", + "net8.0", + "net9.0" + ] + }, { "Name": "SelfHost", "InternalOnly": true, diff --git a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/1.5.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/1.5.0/readme.md index a7982624..70d300d9 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/1.5.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/1.5.0/readme.md @@ -1,7 +1,7 @@ System.Collections.Immutable [1.5.0](https://www.nuget.org/packages/System.Collections.Immutable/1.5.0) -------------------- -Used by: ClientDI internal, Core internal, SelfHost internal +Used by: ClientDI internal, Core internal, Emit internal, SelfHost internal Target frameworks: net10.0, net481, net8.0, net9.0 diff --git a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/7.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/7.0.0/index.json index 40c745b7..0fb34d50 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/7.0.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/7.0.0/index.json @@ -6,26 +6,6 @@ "Status": "AutomaticallyApproved" }, "UsedBy": [ - { - "Name": "Emit", - "InternalOnly": true, - "TargetFrameworks": [ - "net10.0", - "net481", - "net8.0", - "net9.0" - ], - "Dependencies": [ - { - "Name": "System.Memory", - "Version": "4.5.5" - }, - { - "Name": "System.Runtime.CompilerServices.Unsafe", - "Version": "6.1.2" - } - ] - }, { "Name": "ProtoBuf", "InternalOnly": false, diff --git a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/7.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/7.0.0/readme.md index 5fa07f92..fc21aa4c 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/7.0.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/7.0.0/readme.md @@ -1,9 +1,9 @@ System.Collections.Immutable [7.0.0](https://www.nuget.org/packages/System.Collections.Immutable/7.0.0) -------------------- -Used by: Emit internal, ProtoBuf +Used by: ProtoBuf -Target frameworks: net10.0, net462, net481, net8.0, net9.0, netstandard2.0, netstandard2.1 +Target frameworks: net10.0, net462, net8.0, net9.0, netstandard2.0, netstandard2.1 License: [MIT](../../../../licenses/mit) @@ -17,13 +17,12 @@ This package provides collections that are thread safe and guaranteed to never c The System.Collections.Immutable library is built-in as part of the shared framework in .NET Runtime. The package can be installed when you need to use it in other target frameworks. -Dependencies 3 +Dependencies 2 ----------- |Name|Version| |----------|:----| |[System.Memory](../../../../packages/nuget.org/system.memory/4.5.5)|4.5.5| |[System.Runtime.CompilerServices.Unsafe](../../../../packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0)|6.0.0| -|[System.Runtime.CompilerServices.Unsafe](../../../../packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.2)|6.1.2| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/6.0.1/index.json b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/6.0.1/index.json index cdce69d5..18b592fe 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/6.0.1/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/6.0.1/index.json @@ -24,7 +24,7 @@ }, { "Name": "System.Memory", - "Version": "4.6.3" + "Version": "4.5.5" }, { "Name": "System.Runtime.CompilerServices.Unsafe", diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/6.0.1/readme.md b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/6.0.1/readme.md index 6584fc89..31beb678 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/6.0.1/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/6.0.1/readme.md @@ -19,14 +19,13 @@ Commonly Used Types: System.Diagnostics.DiagnosticListener System.Diagnostics.DiagnosticSource -Dependencies 5 +Dependencies 4 ----------- |Name|Version| |----------|:----| |[System.Memory](../../../../packages/nuget.org/system.memory/4.5.4)|4.5.4| |[System.Memory](../../../../packages/nuget.org/system.memory/4.5.5)|4.5.5| -|[System.Memory](../../../../packages/nuget.org/system.memory/4.6.3)|4.6.3| |[System.Runtime.CompilerServices.Unsafe](../../../../packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0)|6.0.0| |[System.Runtime.CompilerServices.Unsafe](../../../../packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.2)|6.1.2| diff --git a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.5/index.json b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.5/index.json index 49f2e299..8cb5eb24 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.5/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.5/index.json @@ -6,6 +6,30 @@ "Status": "AutomaticallyApproved" }, "UsedBy": [ + { + "Name": "ClientDI", + "InternalOnly": true, + "TargetFrameworks": [ + "net10.0", + "net481", + "net8.0", + "net9.0" + ], + "Dependencies": [ + { + "Name": "System.Buffers", + "Version": "4.5.1" + }, + { + "Name": "System.Numerics.Vectors", + "Version": "4.5.0" + }, + { + "Name": "System.Runtime.CompilerServices.Unsafe", + "Version": "6.1.2" + } + ] + }, { "Name": "Core", "InternalOnly": true, diff --git a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.5/readme.md b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.5/readme.md index affff2fc..a4b1e54f 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.5/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.5/readme.md @@ -1,7 +1,7 @@ System.Memory [4.5.5](https://www.nuget.org/packages/System.Memory/4.5.5) -------------------- -Used by: Core internal, DesignTime internal, Emit internal, MessagePack, ProtoBuf, SelfHost internal +Used by: ClientDI internal, Core internal, DesignTime internal, Emit internal, MessagePack, ProtoBuf, SelfHost internal Target frameworks: net10.0, net462, net481, net8.0, net9.0, netstandard2.0, netstandard2.1 diff --git a/Build/third-party-libraries/packages/nuget.org/system.memory/4.6.3/index.json b/Build/third-party-libraries/packages/nuget.org/system.memory/4.6.3/index.json deleted file mode 100644 index 7824204a..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.memory/4.6.3/index.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", - "Source": "https://api.nuget.org/v3/index.json", - "License": { - "Code": "MIT", - "Status": "AutomaticallyApproved" - }, - "UsedBy": [ - { - "Name": "ClientDI", - "InternalOnly": true, - "TargetFrameworks": [ - "net10.0", - "net481", - "net8.0", - "net9.0" - ], - "Dependencies": [ - { - "Name": "System.Buffers", - "Version": "4.6.1" - }, - { - "Name": "System.Numerics.Vectors", - "Version": "4.6.1" - }, - { - "Name": "System.Runtime.CompilerServices.Unsafe", - "Version": "6.1.2" - } - ] - } - ], - "Licenses": [ - { - "Subject": "package", - "Code": "MIT", - "HRef": "https://licenses.nuget.org/MIT" - }, - { - "Subject": "repository", - "Code": "MIT", - "HRef": "https://github.com/dotnet/maintenance-packages" - }, - { - "Subject": "project", - "Code": "MIT", - "HRef": "https://github.com/dotnet/maintenance-packages" - } - ] -} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.memory/4.6.3/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.memory/4.6.3/package.nuspec deleted file mode 100644 index 12c81970..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.memory/4.6.3/package.nuspec +++ /dev/null @@ -1,32 +0,0 @@ - - - - System.Memory - 4.6.3 - Microsoft - true - MIT - https://licenses.nuget.org/MIT - Icon.png - PACKAGE.md - https://github.com/dotnet/maintenance-packages - System.Memory - © Microsoft Corporation. All rights reserved. - true - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.memory/4.6.3/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/system.memory/4.6.3/project-LICENSE deleted file mode 100644 index 984713a4..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.memory/4.6.3/project-LICENSE +++ /dev/null @@ -1,23 +0,0 @@ -The MIT License (MIT) - -Copyright (c) .NET Foundation and Contributors - -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.memory/4.6.3/readme.md b/Build/third-party-libraries/packages/nuget.org/system.memory/4.6.3/readme.md deleted file mode 100644 index c515ccbc..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.memory/4.6.3/readme.md +++ /dev/null @@ -1,27 +0,0 @@ -System.Memory [4.6.3](https://www.nuget.org/packages/System.Memory/4.6.3) --------------------- - -Used by: ClientDI internal - -Target frameworks: net10.0, net481, net8.0, net9.0 - -License: [MIT](../../../../licenses/mit) - -- package license: [MIT](https://licenses.nuget.org/MIT) -- repository license: [MIT](https://github.com/dotnet/maintenance-packages) -- project license: [MIT](https://github.com/dotnet/maintenance-packages) - -Description ------------ -System.Memory - -Dependencies 3 ------------ - -|Name|Version| -|----------|:----| -|[System.Buffers](../../../../packages/nuget.org/system.buffers/4.6.1)|4.6.1| -|[System.Numerics.Vectors](../../../../packages/nuget.org/system.numerics.vectors/4.6.1)|4.6.1| -|[System.Runtime.CompilerServices.Unsafe](../../../../packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.2)|6.1.2| - -*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.memory/4.6.3/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/system.memory/4.6.3/repository-LICENSE deleted file mode 100644 index 984713a4..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.memory/4.6.3/repository-LICENSE +++ /dev/null @@ -1,23 +0,0 @@ -The MIT License (MIT) - -Copyright (c) .NET Foundation and Contributors - -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/10.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/10.0.0/index.json deleted file mode 100644 index 9f3574c9..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/10.0.0/index.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", - "Source": "https://api.nuget.org/v3/index.json", - "License": { - "Code": "MIT", - "Status": "AutomaticallyApproved" - }, - "UsedBy": [ - { - "Name": "ClientDI", - "InternalOnly": true, - "TargetFrameworks": [ - "net10.0", - "net481", - "net8.0", - "net9.0" - ] - } - ], - "Licenses": [ - { - "Subject": "package", - "Code": "MIT", - "HRef": "https://licenses.nuget.org/MIT" - }, - { - "Subject": "repository", - "Code": "MIT", - "HRef": "https://github.com/dotnet/dotnet" - }, - { - "Subject": "project", - "HRef": "https://dot.net/" - } - ] -} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/10.0.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/10.0.0/package.nuspec deleted file mode 100644 index 676baf80..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/10.0.0/package.nuspec +++ /dev/null @@ -1,35 +0,0 @@ - - - - System.Net.Http.WinHttpHandler - 10.0.0 - Microsoft - MIT - https://licenses.nuget.org/MIT - Icon.png - PACKAGE.md - https://dot.net/ - Provides a message handler for HttpClient based on the WinHTTP interface of Windows. While similar to HttpClientHandler, it provides developers more granular control over the application's HTTP communication than the HttpClientHandler. - -Commonly Used Types: -System.Net.Http.WinHttpHandler - https://go.microsoft.com/fwlink/?LinkID=799421 - © Microsoft Corporation. All rights reserved. - true - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/10.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/10.0.0/readme.md deleted file mode 100644 index 78bc3767..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/10.0.0/readme.md +++ /dev/null @@ -1,21 +0,0 @@ -System.Net.Http.WinHttpHandler [10.0.0](https://www.nuget.org/packages/System.Net.Http.WinHttpHandler/10.0.0) --------------------- - -Used by: ClientDI internal - -Target frameworks: net10.0, net481, net8.0, net9.0 - -License: [MIT](../../../../licenses/mit) - -- package license: [MIT](https://licenses.nuget.org/MIT) -- repository license: [MIT](https://github.com/dotnet/dotnet) -- project license: [Unknown](https://dot.net/) - -Description ------------ -Provides a message handler for HttpClient based on the WinHTTP interface of Windows. While similar to HttpClientHandler, it provides developers more granular control over the application's HTTP communication than the HttpClientHandler. - -Commonly Used Types: -System.Net.Http.WinHttpHandler - -*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/10.0.0/repository-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/10.0.0/repository-LICENSE.TXT deleted file mode 100644 index a616ed18..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/10.0.0/repository-LICENSE.TXT +++ /dev/null @@ -1,23 +0,0 @@ -The MIT License (MIT) - -Copyright (c) .NET Foundation and Contributors - -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/index.json index 237a880f..b59bdcd4 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/index.json @@ -6,6 +6,16 @@ "Status": "AutomaticallyApproved" }, "UsedBy": [ + { + "Name": "ClientDI", + "InternalOnly": true, + "TargetFrameworks": [ + "net10.0", + "net481", + "net8.0", + "net9.0" + ] + }, { "Name": "Core", "InternalOnly": true, diff --git a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/readme.md index 77d9027f..e49cd1c9 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/readme.md @@ -1,7 +1,7 @@ System.Numerics.Vectors [4.5.0](https://www.nuget.org/packages/System.Numerics.Vectors/4.5.0) -------------------- -Used by: Core internal, DesignTime internal, Emit internal, ProtoBuf, SelfHost internal +Used by: ClientDI internal, Core internal, DesignTime internal, Emit internal, ProtoBuf, SelfHost internal Target frameworks: net10.0, net462, net481, net8.0, net9.0, netstandard2.0, netstandard2.1 diff --git a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.6.1/index.json b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.6.1/index.json deleted file mode 100644 index 2a9e43f1..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.6.1/index.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", - "Source": "https://api.nuget.org/v3/index.json", - "License": { - "Code": "MIT", - "Status": "AutomaticallyApproved" - }, - "UsedBy": [ - { - "Name": "ClientDI", - "InternalOnly": true, - "TargetFrameworks": [ - "net10.0", - "net481", - "net8.0", - "net9.0" - ] - } - ], - "Licenses": [ - { - "Subject": "package", - "Code": "MIT", - "HRef": "https://licenses.nuget.org/MIT" - }, - { - "Subject": "repository", - "Code": "MIT", - "HRef": "https://github.com/dotnet/maintenance-packages" - }, - { - "Subject": "project", - "Code": "MIT", - "HRef": "https://github.com/dotnet/maintenance-packages" - } - ] -} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.6.1/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.6.1/package.nuspec deleted file mode 100644 index 29b726d9..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.6.1/package.nuspec +++ /dev/null @@ -1,27 +0,0 @@ - - - - System.Numerics.Vectors - 4.6.1 - Microsoft - true - MIT - https://licenses.nuget.org/MIT - Icon.png - PACKAGE.md - https://github.com/dotnet/maintenance-packages - System.Numerics.Vectors - © Microsoft Corporation. All rights reserved. - true - - - - - - - - - - - - \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.6.1/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.6.1/project-LICENSE deleted file mode 100644 index 984713a4..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.6.1/project-LICENSE +++ /dev/null @@ -1,23 +0,0 @@ -The MIT License (MIT) - -Copyright (c) .NET Foundation and Contributors - -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.6.1/readme.md b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.6.1/readme.md deleted file mode 100644 index 19815032..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.6.1/readme.md +++ /dev/null @@ -1,18 +0,0 @@ -System.Numerics.Vectors [4.6.1](https://www.nuget.org/packages/System.Numerics.Vectors/4.6.1) --------------------- - -Used by: ClientDI internal - -Target frameworks: net10.0, net481, net8.0, net9.0 - -License: [MIT](../../../../licenses/mit) - -- package license: [MIT](https://licenses.nuget.org/MIT) -- repository license: [MIT](https://github.com/dotnet/maintenance-packages) -- project license: [MIT](https://github.com/dotnet/maintenance-packages) - -Description ------------ -System.Numerics.Vectors - -*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.6.1/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.6.1/repository-LICENSE deleted file mode 100644 index 984713a4..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.6.1/repository-LICENSE +++ /dev/null @@ -1,23 +0,0 @@ -The MIT License (MIT) - -Copyright (c) .NET Foundation and Contributors - -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/index.json index f051df3d..0775fa7a 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/index.json @@ -50,7 +50,7 @@ "Dependencies": [ { "Name": "System.Collections.Immutable", - "Version": "7.0.0" + "Version": "1.5.0" } ] }, diff --git a/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/readme.md index 84b923c5..c39e3d3d 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/readme.md @@ -24,12 +24,11 @@ System.Reflection.PortableExecutable.ManagedPEBuilder 30ab651fcb4354552bd4891619a0bdd81e0ebdbf When using NuGet 3.x this package requires at least version 3.4. -Dependencies 2 +Dependencies 1 ----------- |Name|Version| |----------|:----| |[System.Collections.Immutable](../../../../packages/nuget.org/system.collections.immutable/1.5.0)|1.5.0| -|[System.Collections.Immutable](../../../../packages/nuget.org/system.collections.immutable/7.0.0)|7.0.0| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.0/index.json index 54564649..46a4faf0 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.0/index.json @@ -14,6 +14,16 @@ "net481", "net8.0", "net9.0" + ], + "Dependencies": [ + { + "Name": "Microsoft.Bcl.AsyncInterfaces", + "Version": "10.0.0" + }, + { + "Name": "System.Threading.Tasks.Extensions", + "Version": "4.6.3" + } ] } ], diff --git a/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.0/readme.md index 49ec2dae..b0bf1e4e 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.0/readme.md @@ -19,4 +19,12 @@ Commonly Used Types: System.Threading.Channel System.Threading.Channel +Dependencies 2 +----------- + +|Name|Version| +|----------|:----| +|[Microsoft.Bcl.AsyncInterfaces](../../../../packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.0)|10.0.0| +|[System.Threading.Tasks.Extensions](../../../../packages/nuget.org/system.threading.tasks.extensions/4.6.3)|4.6.3| + *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/readme.md b/Build/third-party-libraries/readme.md index ba26af10..c45e002f 100644 --- a/Build/third-party-libraries/readme.md +++ b/Build/third-party-libraries/readme.md @@ -7,13 +7,13 @@ Licenses |[BSD-2-Clause](licenses/bsd-2-clause)|no|no|0| |[BSD-3-Clause](licenses/bsd-3-clause)|no|no|3| |[Google.Protobuf](licenses/google.protobuf)|yes|no|0| -|[MIT](licenses/mit)|no|no|120| +|[MIT](licenses/mit)|no|no|112| |[ms-net-library](licenses/ms-net-library)|no|no|0| |[MS-PL](licenses/ms-pl)|no|no|0| -Packages 133 +Packages 125 -------- |Name|Version|Source|License|Used by| @@ -39,7 +39,7 @@ Packages 133 |[Microsoft.Bcl.AsyncInterfaces](packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.0)|10.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/10.0.0)|[MIT](licenses/mit)|Core internal| |[Microsoft.Bcl.AsyncInterfaces](packages/nuget.org/microsoft.bcl.asyncinterfaces/6.0.0)|6.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/6.0.0)|[MIT](licenses/mit)|ClientDI| |[Microsoft.Bcl.AsyncInterfaces](packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/8.0.0)|[MIT](licenses/mit)|MessagePack, NerdbankMessagePack| -|[Microsoft.Bcl.HashCode](packages/nuget.org/microsoft.bcl.hashcode/6.0.0)|6.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Bcl.HashCode/6.0.0)|[MIT](licenses/mit)|ClientDI internal, NerdbankMessagePack| +|[Microsoft.Bcl.HashCode](packages/nuget.org/microsoft.bcl.hashcode/6.0.0)|6.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Bcl.HashCode/6.0.0)|[MIT](licenses/mit)|NerdbankMessagePack| |[Microsoft.CodeAnalysis.Common](packages/nuget.org/microsoft.codeanalysis.common/4.0.1)|4.0.1|[nuget.org](https://www.nuget.org/packages/Microsoft.CodeAnalysis.Common/4.0.1)|[MIT](licenses/mit)|DesignTime| |[Microsoft.CodeAnalysis.CSharp](packages/nuget.org/microsoft.codeanalysis.csharp/4.0.1)|4.0.1|[nuget.org](https://www.nuget.org/packages/Microsoft.CodeAnalysis.CSharp/4.0.1)|[MIT](licenses/mit)|DesignTime| |[Microsoft.CodeCoverage](packages/nuget.org/microsoft.codecoverage/18.0.1)|18.0.1|[nuget.org](https://www.nuget.org/packages/Microsoft.CodeCoverage/18.0.1)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal| @@ -56,9 +56,6 @@ Packages 133 |[Microsoft.IdentityModel.Protocols](packages/nuget.org/microsoft.identitymodel.protocols/7.1.2)|7.1.2|[nuget.org](https://www.nuget.org/packages/Microsoft.IdentityModel.Protocols/7.1.2)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal| |[Microsoft.IdentityModel.Protocols.OpenIdConnect](packages/nuget.org/microsoft.identitymodel.protocols.openidconnect/7.1.2)|7.1.2|[nuget.org](https://www.nuget.org/packages/Microsoft.IdentityModel.Protocols.OpenIdConnect/7.1.2)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal| |[Microsoft.IdentityModel.Tokens](packages/nuget.org/microsoft.identitymodel.tokens/7.1.2)|7.1.2|[nuget.org](https://www.nuget.org/packages/Microsoft.IdentityModel.Tokens/7.1.2)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal| -|[Microsoft.NET.ILLink.Tasks](packages/nuget.org/microsoft.net.illink.tasks/10.0.0)|10.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.NET.ILLink.Tasks/10.0.0)|[MIT](licenses/mit)|AspNetCore, ClientDI, Core, Emit, MemoryPack, MessagePack, NerdbankMessagePack| -|[Microsoft.NET.ILLink.Tasks](packages/nuget.org/microsoft.net.illink.tasks/8.0.22)|8.0.22|[nuget.org](https://www.nuget.org/packages/Microsoft.NET.ILLink.Tasks/8.0.22)|[MIT](licenses/mit)|AspNetCore, ClientDI, Core, Emit, MemoryPack, MessagePack, NerdbankMessagePack| -|[Microsoft.NET.ILLink.Tasks](packages/nuget.org/microsoft.net.illink.tasks/9.0.11)|9.0.11|[nuget.org](https://www.nuget.org/packages/Microsoft.NET.ILLink.Tasks/9.0.11)|[MIT](licenses/mit)|AspNetCore, ClientDI, Core, Emit, MemoryPack, MessagePack, NerdbankMessagePack| |[Microsoft.NET.StringTools](packages/nuget.org/microsoft.net.stringtools/17.11.4)|17.11.4|[nuget.org](https://www.nuget.org/packages/Microsoft.NET.StringTools/17.11.4)|[MIT](licenses/mit)|MessagePack| |[Microsoft.NET.StringTools](packages/nuget.org/microsoft.net.stringtools/18.0.2)|18.0.2|[nuget.org](https://www.nuget.org/packages/Microsoft.NET.StringTools/18.0.2)|[MIT](licenses/mit)|NerdbankMessagePack| |[Microsoft.NET.Test.Sdk](packages/nuget.org/microsoft.net.test.sdk/18.0.1)|18.0.1|[nuget.org](https://www.nuget.org/packages/Microsoft.NET.Test.Sdk/18.0.1)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal| @@ -80,8 +77,7 @@ Packages 133 |[Namotion.Reflection](packages/nuget.org/namotion.reflection/3.4.3)|3.4.3|[nuget.org](https://www.nuget.org/packages/Namotion.Reflection/3.4.3)|[MIT](licenses/mit)|AspNetCoreNSwag| |[Nerdbank.MessagePack](packages/nuget.org/nerdbank.messagepack/0.12.4-rc)|0.12.4-rc|[nuget.org](https://www.nuget.org/packages/Nerdbank.MessagePack/0.12.4-rc)|[MIT](licenses/mit)|NerdbankMessagePack| |[NETStandard.Library](packages/nuget.org/netstandard.library/2.0.3)|2.0.3|[nuget.org](https://www.nuget.org/packages/NETStandard.Library/2.0.3)|[MIT](licenses/mit)|ClientDI, Core, DesignTime, Emit, MessagePack, NerdbankMessagePack, ProtoBuf, SelfHost| -|[Newtonsoft.Json](packages/nuget.org/newtonsoft.json/13.0.3)|13.0.3|[nuget.org](https://www.nuget.org/packages/Newtonsoft.Json/13.0.3)|[MIT](licenses/mit)|AspNetCoreNSwag| -|[Newtonsoft.Json](packages/nuget.org/newtonsoft.json/13.0.4)|13.0.4|[nuget.org](https://www.nuget.org/packages/Newtonsoft.Json/13.0.4)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal| +|[Newtonsoft.Json](packages/nuget.org/newtonsoft.json/13.0.3)|13.0.3|[nuget.org](https://www.nuget.org/packages/Newtonsoft.Json/13.0.3)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal| |[NJsonSchema](packages/nuget.org/njsonschema/11.5.2)|11.5.2|[nuget.org](https://www.nuget.org/packages/NJsonSchema/11.5.2)|[MIT](licenses/mit)|AspNetCoreNSwag| |[NJsonSchema.Annotations](packages/nuget.org/njsonschema.annotations/11.5.2)|11.5.2|[nuget.org](https://www.nuget.org/packages/NJsonSchema.Annotations/11.5.2)|[MIT](licenses/mit)|AspNetCoreNSwag| |[NJsonSchema.NewtonsoftJson](packages/nuget.org/njsonschema.newtonsoftjson/11.5.2)|11.5.2|[nuget.org](https://www.nuget.org/packages/NJsonSchema.NewtonsoftJson/11.5.2)|[MIT](licenses/mit)|AspNetCoreNSwag| @@ -106,12 +102,11 @@ Packages 133 |[System.Buffers](packages/nuget.org/system.buffers/4.4.0)|4.4.0|[nuget.org](https://www.nuget.org/packages/System.Buffers/4.4.0)|[MIT](licenses/mit)|Core, DesignTime, SelfHost| |[System.Buffers](packages/nuget.org/system.buffers/4.5.1)|4.5.1|[nuget.org](https://www.nuget.org/packages/System.Buffers/4.5.1)|[MIT](licenses/mit)|ClientDI, Core internal, DesignTime, Emit internal, MessagePack, ProtoBuf, SelfHost internal| |[System.Buffers](packages/nuget.org/system.buffers/4.6.0)|4.6.0|[nuget.org](https://www.nuget.org/packages/System.Buffers/4.6.0)|[MIT](licenses/mit)|NerdbankMessagePack| -|[System.Buffers](packages/nuget.org/system.buffers/4.6.1)|4.6.1|[nuget.org](https://www.nuget.org/packages/System.Buffers/4.6.1)|[MIT](licenses/mit)|ClientDI internal| |[System.CodeDom](packages/nuget.org/system.codedom/6.0.0)|6.0.0|[nuget.org](https://www.nuget.org/packages/System.CodeDom/6.0.0)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal| -|[System.Collections.Immutable](packages/nuget.org/system.collections.immutable/1.5.0)|1.5.0|[nuget.org](https://www.nuget.org/packages/System.Collections.Immutable/1.5.0)|[MIT](licenses/mit)|ClientDI internal, Core internal, SelfHost internal| +|[System.Collections.Immutable](packages/nuget.org/system.collections.immutable/1.5.0)|1.5.0|[nuget.org](https://www.nuget.org/packages/System.Collections.Immutable/1.5.0)|[MIT](licenses/mit)|ClientDI internal, Core internal, Emit internal, SelfHost internal| |[System.Collections.Immutable](packages/nuget.org/system.collections.immutable/5.0.0)|5.0.0|[nuget.org](https://www.nuget.org/packages/System.Collections.Immutable/5.0.0)|[MIT](licenses/mit)|DesignTime| |[System.Collections.Immutable](packages/nuget.org/system.collections.immutable/6.0.0)|6.0.0|[nuget.org](https://www.nuget.org/packages/System.Collections.Immutable/6.0.0)|[MIT](licenses/mit)|MemoryPack| -|[System.Collections.Immutable](packages/nuget.org/system.collections.immutable/7.0.0)|7.0.0|[nuget.org](https://www.nuget.org/packages/System.Collections.Immutable/7.0.0)|[MIT](licenses/mit)|Emit internal, ProtoBuf| +|[System.Collections.Immutable](packages/nuget.org/system.collections.immutable/7.0.0)|7.0.0|[nuget.org](https://www.nuget.org/packages/System.Collections.Immutable/7.0.0)|[MIT](licenses/mit)|ProtoBuf| |[System.Collections.Immutable](packages/nuget.org/system.collections.immutable/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/System.Collections.Immutable/8.0.0)|[MIT](licenses/mit)|DesignTime internal, MessagePack, NerdbankMessagePack| |[System.ComponentModel.Annotations](packages/nuget.org/system.componentmodel.annotations/5.0.0)|5.0.0|[nuget.org](https://www.nuget.org/packages/System.ComponentModel.Annotations/5.0.0)|[MIT](licenses/mit)|ClientDI| |[System.Diagnostics.DiagnosticSource](packages/nuget.org/system.diagnostics.diagnosticsource/6.0.0)|6.0.0|[nuget.org](https://www.nuget.org/packages/System.Diagnostics.DiagnosticSource/6.0.0)|[MIT](licenses/mit)|Core internal, DesignTime internal| @@ -122,15 +117,12 @@ Packages 133 |[System.Management](packages/nuget.org/system.management/6.0.1)|6.0.1|[nuget.org](https://www.nuget.org/packages/System.Management/6.0.1)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal| |[System.Memory](packages/nuget.org/system.memory/4.5.3)|4.5.3|[nuget.org](https://www.nuget.org/packages/System.Memory/4.5.3)|[MIT](licenses/mit)|Core, DesignTime, SelfHost| |[System.Memory](packages/nuget.org/system.memory/4.5.4)|4.5.4|[nuget.org](https://www.nuget.org/packages/System.Memory/4.5.4)|[MIT](licenses/mit)|ClientDI, DesignTime| -|[System.Memory](packages/nuget.org/system.memory/4.5.5)|4.5.5|[nuget.org](https://www.nuget.org/packages/System.Memory/4.5.5)|[MIT](licenses/mit)|Core internal, DesignTime internal, Emit internal, MessagePack, ProtoBuf, SelfHost internal| +|[System.Memory](packages/nuget.org/system.memory/4.5.5)|4.5.5|[nuget.org](https://www.nuget.org/packages/System.Memory/4.5.5)|[MIT](licenses/mit)|ClientDI internal, Core internal, DesignTime internal, Emit internal, MessagePack, ProtoBuf, SelfHost internal| |[System.Memory](packages/nuget.org/system.memory/4.6.0)|4.6.0|[nuget.org](https://www.nuget.org/packages/System.Memory/4.6.0)|[MIT](licenses/mit)|NerdbankMessagePack| -|[System.Memory](packages/nuget.org/system.memory/4.6.3)|4.6.3|[nuget.org](https://www.nuget.org/packages/System.Memory/4.6.3)|[MIT](licenses/mit)|ClientDI internal| -|[System.Net.Http.WinHttpHandler](packages/nuget.org/system.net.http.winhttphandler/10.0.0)|10.0.0|[nuget.org](https://www.nuget.org/packages/System.Net.Http.WinHttpHandler/10.0.0)|[MIT](licenses/mit)|ClientDI internal| |[System.Net.Http.WinHttpHandler](packages/nuget.org/system.net.http.winhttphandler/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/System.Net.Http.WinHttpHandler/8.0.0)|[MIT](licenses/mit)|Core internal| |[System.Numerics.Vectors](packages/nuget.org/system.numerics.vectors/4.4.0)|4.4.0|[nuget.org](https://www.nuget.org/packages/System.Numerics.Vectors/4.4.0)|[MIT](licenses/mit)|ClientDI, Core, DesignTime, MessagePack, ProtoBuf, SelfHost| -|[System.Numerics.Vectors](packages/nuget.org/system.numerics.vectors/4.5.0)|4.5.0|[nuget.org](https://www.nuget.org/packages/System.Numerics.Vectors/4.5.0)|[MIT](licenses/mit)|Core internal, DesignTime internal, Emit internal, ProtoBuf, SelfHost internal| +|[System.Numerics.Vectors](packages/nuget.org/system.numerics.vectors/4.5.0)|4.5.0|[nuget.org](https://www.nuget.org/packages/System.Numerics.Vectors/4.5.0)|[MIT](licenses/mit)|ClientDI internal, Core internal, DesignTime internal, Emit internal, ProtoBuf, SelfHost internal| |[System.Numerics.Vectors](packages/nuget.org/system.numerics.vectors/4.6.0)|4.6.0|[nuget.org](https://www.nuget.org/packages/System.Numerics.Vectors/4.6.0)|[MIT](licenses/mit)|NerdbankMessagePack| -|[System.Numerics.Vectors](packages/nuget.org/system.numerics.vectors/4.6.1)|4.6.1|[nuget.org](https://www.nuget.org/packages/System.Numerics.Vectors/4.6.1)|[MIT](licenses/mit)|ClientDI internal| |[System.Reflection.Emit](packages/nuget.org/system.reflection.emit/4.7.0)|4.7.0|[nuget.org](https://www.nuget.org/packages/System.Reflection.Emit/4.7.0)|[MIT](licenses/mit)|Emit, MessagePack, ProtoBuf| |[System.Reflection.Emit.ILGeneration](packages/nuget.org/system.reflection.emit.ilgeneration/4.7.0)|4.7.0|[nuget.org](https://www.nuget.org/packages/System.Reflection.Emit.ILGeneration/4.7.0)|[MIT](licenses/mit)|Emit, MessagePack, NerdbankMessagePack, ProtoBuf| |[System.Reflection.Emit.Lightweight](packages/nuget.org/system.reflection.emit.lightweight/4.7.0)|4.7.0|[nuget.org](https://www.nuget.org/packages/System.Reflection.Emit.Lightweight/4.7.0)|[MIT](licenses/mit)|MessagePack, NerdbankMessagePack, ProtoBuf| From c96a808b0b95d9e2f7bc19b23b704bad4bbb14a6 Mon Sep 17 00:00:00 2001 From: max-ieremenko <> Date: Sat, 20 Dec 2025 14:09:46 +0100 Subject: [PATCH 4/8] update Nerdbank.MessagePack --- Examples/Directory.Packages.props | 4 ++-- Sources/Directory.Packages.props | 2 +- .../ServiceModel.Grpc.Nerdbank.MessagePackMarshaller.csproj | 2 -- Sources/Versions.props | 1 - 4 files changed, 3 insertions(+), 6 deletions(-) diff --git a/Examples/Directory.Packages.props b/Examples/Directory.Packages.props index c4d6be35..87d240c1 100644 --- a/Examples/Directory.Packages.props +++ b/Examples/Directory.Packages.props @@ -13,7 +13,7 @@ - + @@ -52,7 +52,7 @@ - + diff --git a/Sources/Directory.Packages.props b/Sources/Directory.Packages.props index af4b5b2a..931ae816 100644 --- a/Sources/Directory.Packages.props +++ b/Sources/Directory.Packages.props @@ -22,7 +22,7 @@ - + diff --git a/Sources/ServiceModel.Grpc.Nerdbank.MessagePackMarshaller/ServiceModel.Grpc.Nerdbank.MessagePackMarshaller.csproj b/Sources/ServiceModel.Grpc.Nerdbank.MessagePackMarshaller/ServiceModel.Grpc.Nerdbank.MessagePackMarshaller.csproj index 9fde96e6..04c35448 100644 --- a/Sources/ServiceModel.Grpc.Nerdbank.MessagePackMarshaller/ServiceModel.Grpc.Nerdbank.MessagePackMarshaller.csproj +++ b/Sources/ServiceModel.Grpc.Nerdbank.MessagePackMarshaller/ServiceModel.Grpc.Nerdbank.MessagePackMarshaller.csproj @@ -7,8 +7,6 @@ true true true - - $(NerdbankMessagePackMarshallerVersion) diff --git a/Sources/Versions.props b/Sources/Versions.props index d892b9d2..da562489 100644 --- a/Sources/Versions.props +++ b/Sources/Versions.props @@ -1,6 +1,5 @@ 1.21.0 - $(ServiceModelGrpcVersion)-pre1 \ No newline at end of file From add3473154a50529a9bcfe6322017a3b7149d679 Mon Sep 17 00:00:00 2001 From: max-ieremenko <> Date: Sat, 20 Dec 2025 14:55:00 +0100 Subject: [PATCH 5/8] update Grpc.Net --- Examples/Directory.Packages.props | 10 +++++----- Sources/Directory.Packages.props | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Examples/Directory.Packages.props b/Examples/Directory.Packages.props index 87d240c1..f80c0fb4 100644 --- a/Examples/Directory.Packages.props +++ b/Examples/Directory.Packages.props @@ -17,14 +17,14 @@ - - - - + + + + - + diff --git a/Sources/Directory.Packages.props b/Sources/Directory.Packages.props index 931ae816..857683a6 100644 --- a/Sources/Directory.Packages.props +++ b/Sources/Directory.Packages.props @@ -5,12 +5,12 @@ - - + + - - - + + + From b8f6cc3bca87a88c3c03d12df7b4e27d74d75e95 Mon Sep 17 00:00:00 2001 From: max-ieremenko <> Date: Sat, 20 Dec 2025 17:38:43 +0100 Subject: [PATCH 6/8] update Swashbuckle.AspNetCore --- Examples/Directory.Packages.props | 4 ++-- Sources/Directory.Packages.props | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Examples/Directory.Packages.props b/Examples/Directory.Packages.props index f80c0fb4..cd2b9c79 100644 --- a/Examples/Directory.Packages.props +++ b/Examples/Directory.Packages.props @@ -45,8 +45,8 @@ - - + + diff --git a/Sources/Directory.Packages.props b/Sources/Directory.Packages.props index 857683a6..96263de6 100644 --- a/Sources/Directory.Packages.props +++ b/Sources/Directory.Packages.props @@ -29,9 +29,9 @@ - - - + + + From 65ce1d3962130128fbd8d83f01dc174619555416 Mon Sep 17 00:00:00 2001 From: max-ieremenko <> Date: Sun, 21 Dec 2025 11:29:48 +0100 Subject: [PATCH 7/8] update dependencies --- Benchmarks/Directory.Packages.props | 8 +++--- .../Combined/MagicOnionCombinedCallTest.cs | 2 +- .../Server/MagicOnionServerCallTest.cs | 2 +- Examples/Directory.Packages.props | 28 +++++++++---------- Sources/Directory.Packages.props | 4 +-- 5 files changed, 22 insertions(+), 22 deletions(-) diff --git a/Benchmarks/Directory.Packages.props b/Benchmarks/Directory.Packages.props index 998230cc..fc9f19d8 100644 --- a/Benchmarks/Directory.Packages.props +++ b/Benchmarks/Directory.Packages.props @@ -7,10 +7,10 @@ - - - - + + + + diff --git a/Benchmarks/ServiceModel.Grpc.Benchmarks/UnaryCallTest/Combined/MagicOnionCombinedCallTest.cs b/Benchmarks/ServiceModel.Grpc.Benchmarks/UnaryCallTest/Combined/MagicOnionCombinedCallTest.cs index 2fa9d002..2da6d956 100644 --- a/Benchmarks/ServiceModel.Grpc.Benchmarks/UnaryCallTest/Combined/MagicOnionCombinedCallTest.cs +++ b/Benchmarks/ServiceModel.Grpc.Benchmarks/UnaryCallTest/Combined/MagicOnionCombinedCallTest.cs @@ -38,7 +38,7 @@ public MagicOnionCombinedCallTest(SomeObject payload) }) .ConfigureEndpoints(endpoints => { - endpoints.MapMagicOnionService(); + endpoints.MapMagicOnionService(); }); } diff --git a/Benchmarks/ServiceModel.Grpc.Benchmarks/UnaryCallTest/Server/MagicOnionServerCallTest.cs b/Benchmarks/ServiceModel.Grpc.Benchmarks/UnaryCallTest/Server/MagicOnionServerCallTest.cs index bf3e45c6..cd3f56d7 100644 --- a/Benchmarks/ServiceModel.Grpc.Benchmarks/UnaryCallTest/Server/MagicOnionServerCallTest.cs +++ b/Benchmarks/ServiceModel.Grpc.Benchmarks/UnaryCallTest/Server/MagicOnionServerCallTest.cs @@ -39,7 +39,7 @@ public MagicOnionServerCallTest(SomeObject payload) }) .ConfigureEndpoints(endpoints => { - endpoints.MapMagicOnionService(); + endpoints.MapMagicOnionService(); }); } diff --git a/Examples/Directory.Packages.props b/Examples/Directory.Packages.props index cd2b9c79..6b5bc6d1 100644 --- a/Examples/Directory.Packages.props +++ b/Examples/Directory.Packages.props @@ -26,23 +26,23 @@ - - - - - - - - + + + + + + + + - - - - + + + + - + @@ -54,6 +54,6 @@ - + \ No newline at end of file diff --git a/Sources/Directory.Packages.props b/Sources/Directory.Packages.props index 96263de6..4f158a38 100644 --- a/Sources/Directory.Packages.props +++ b/Sources/Directory.Packages.props @@ -25,7 +25,7 @@ - + @@ -33,6 +33,6 @@ - + \ No newline at end of file From 68c6d3659a71e296c0f36910b18716217c4b625e Mon Sep 17 00:00:00 2001 From: max-ieremenko <> Date: Sun, 21 Dec 2025 11:30:05 +0100 Subject: [PATCH 8/8] update third-party-notices --- .../{3.33.1 => 3.33.2}/index.json | 0 .../{3.33.1 => 3.33.2}/package.nuspec | 4 +- .../{3.33.1 => 3.33.2}/project-LICENSE | 0 .../{3.33.1 => 3.33.2}/readme.md | 2 +- .../{3.33.1 => 3.33.2}/repository-LICENSE | 0 .../{2.71.0 => 2.76.0}/index.json | 2 +- .../{2.71.0 => 2.76.0}/package.nuspec | 26 ++--- .../{2.71.0 => 2.76.0}/project-LICENSE | 0 .../{2.71.0 => 2.76.0}/readme.md | 4 +- .../{2.71.0 => 2.76.0}/repository-LICENSE | 0 .../{2.71.0 => 2.76.0}/index.json | 0 .../{2.71.0 => 2.76.0}/package.nuspec | 4 +- .../{2.71.0 => 2.76.0}/project-LICENSE | 0 .../{2.71.0 => 2.76.0}/readme.md | 2 +- .../{2.71.0 => 2.76.0}/repository-LICENSE | 0 .../nuget.org/grpc.core/2.46.6/index.json | 4 +- .../nuget.org/grpc.core/2.46.6/readme.md | 2 +- .../{2.71.0 => 2.76.0}/index.json | 8 +- .../{2.71.0 => 2.76.0}/package.nuspec | 36 +++--- .../{2.71.0 => 2.76.0}/project-LICENSE | 0 .../{2.71.0 => 2.76.0}/readme.md | 6 +- .../{2.71.0 => 2.76.0}/repository-LICENSE | 0 .../{2.71.0 => 2.76.0}/index.json | 4 +- .../{2.71.0 => 2.76.0}/package.nuspec | 30 ++--- .../{2.71.0 => 2.76.0}/project-LICENSE | 0 .../{2.71.0 => 2.76.0}/readme.md | 6 +- .../{2.71.0 => 2.76.0}/repository-LICENSE | 0 .../{2.71.0 => 2.76.0}/index.json | 6 +- .../{2.71.0 => 2.76.0}/package.nuspec | 22 ++-- .../{2.71.0 => 2.76.0}/project-LICENSE | 0 .../{2.71.0 => 2.76.0}/readme.md | 4 +- .../{2.71.0 => 2.76.0}/repository-LICENSE | 0 .../{10.0.0 => 10.0.1}/index.json | 0 .../{10.0.0 => 10.0.1}/package.nuspec | 4 +- .../{10.0.0 => 10.0.1}/readme.md | 2 +- .../{10.0.0 => 10.0.1}/repository-LICENSE.TXT | 0 .../6.0.0/package.nuspec | 31 ----- .../6.0.0/readme.md | 30 ----- .../8.0.0/index.json | 17 +++ .../8.0.0/readme.md | 4 +- .../4.0.1/index.json | 8 ++ .../4.0.1/readme.md | 4 +- .../8.0.0}/index.json | 15 ++- .../8.0.0}/package-LICENSE.TXT | 0 .../8.0.0/package.nuspec | 36 ++++++ .../8.0.0/readme.md | 25 ++++ .../8.0.0}/repository-LICENSE.TXT | 0 .../8.0.0/index.json | 43 +++++++ .../8.0.0}/package-LICENSE.TXT | 0 .../8.0.0/package.nuspec | 35 ++++++ .../8.0.0/readme.md | 25 ++++ .../8.0.0}/repository-LICENSE.TXT | 0 .../8.0.0/index.json | 47 ++++++++ .../8.0.0}/package-LICENSE.TXT | 0 .../8.0.0/package.nuspec | 40 +++++++ .../8.0.0/readme.md | 26 +++++ .../8.0.0}/repository-LICENSE.TXT | 0 .../6.0.0/readme.md | 21 ---- .../8.0.0}/index.json | 0 .../8.0.0}/package-LICENSE.TXT | 0 .../{6.0.0 => 8.0.0}/package.nuspec | 13 ++- .../8.0.0/readme.md | 21 ++++ .../8.0.0}/repository-LICENSE.TXT | 0 .../{6.0.0 => 8.0.0}/index.json | 2 +- .../8.0.0}/package-LICENSE.TXT | 0 .../{6.0.0 => 8.0.0}/package.nuspec | 29 ++--- .../{6.0.0 => 8.0.0}/readme.md | 4 +- .../8.0.0}/repository-LICENSE.TXT | 0 .../8.0.0/index.json | 47 ++++++++ .../8.0.0/package-LICENSE.TXT | 0 .../8.0.0/package.nuspec | 56 +++++++++ .../8.0.0/readme.md | 34 ++++++ .../8.0.0}/repository-LICENSE.TXT | 0 .../8.0.0/index.json | 51 +++++++++ .../8.0.0/package-LICENSE.TXT} | 0 .../8.0.0/package.nuspec | 44 +++++++ .../8.0.0/readme.md | 27 +++++ .../8.0.0}/repository-LICENSE.TXT | 0 .../6.0.0/package.nuspec | 37 ------ .../{6.0.0 => 8.0.0}/index.json | 16 ++- .../8.0.0/package-LICENSE.TXT} | 0 .../8.0.0/package.nuspec | 62 ++++++++++ .../{6.0.0 => 8.0.0}/readme.md | 14 ++- .../8.0.0}/repository-LICENSE.TXT | 0 .../8.0.0}/index.json | 27 +++-- .../8.0.0/package-LICENSE.TXT} | 0 .../{6.0.0 => 8.0.0}/package.nuspec | 23 +++- .../{6.0.0 => 8.0.0}/readme.md | 9 +- .../8.0.0/repository-LICENSE.TXT | 0 .../{6.0.0 => 8.0.0}/index.json | 10 +- .../8.0.0/package-LICENSE.TXT} | 0 .../{6.0.0 => 8.0.0}/package.nuspec | 53 +++++---- .../{6.0.0 => 8.0.0}/readme.md | 11 +- .../8.0.0/repository-LICENSE.TXT} | 0 .../8.0.0/index.json | 59 ++++++++++ .../8.0.0/package-LICENSE.TXT} | 2 +- .../8.0.0/package.nuspec | 55 +++++++++ .../8.0.0/readme.md | 29 +++++ .../8.0.0/repository-LICENSE.TXT} | 2 +- .../8.0.0}/index.json | 11 +- .../8.0.0/package-LICENSE.TXT | 23 ++++ .../{6.0.0 => 8.0.0}/package.nuspec | 35 ++++-- .../{6.0.0 => 8.0.0}/readme.md | 10 +- .../8.0.0/repository-LICENSE.TXT | 23 ++++ .../8.0.0}/index.json | 7 +- .../8.0.0/package-LICENSE.TXT | 23 ++++ .../{6.0.0 => 8.0.0}/package.nuspec | 16 +-- .../{6.0.0 => 8.0.0}/readme.md | 6 +- .../8.0.0/repository-LICENSE.TXT | 23 ++++ .../{1.9.0 => 2.0.2}/index.json | 22 ++-- .../{1.9.0 => 2.0.2}/package.nuspec | 18 +-- .../{1.9.0 => 2.0.2}/project-LICENSE | 0 .../{1.9.0 => 2.0.2}/readme.md | 4 +- .../{1.9.0 => 2.0.2}/repository-LICENSE | 0 .../{1.9.0 => 2.0.2}/index.json | 22 ++-- .../{1.9.0 => 2.0.2}/package.nuspec | 16 +-- .../{1.9.0 => 2.0.2}/project-LICENSE | 0 .../{1.9.0 => 2.0.2}/readme.md | 4 +- .../{1.9.0 => 2.0.2}/repository-LICENSE | 0 .../1.9.0/package.nuspec | 58 ---------- .../{1.9.0 => 2.0.2}/index.json | 88 +++++++------- .../2.0.2/package.nuspec | 44 +++++++ .../{1.9.0 => 2.0.2}/project-LICENSE | 0 .../{1.9.0 => 2.0.2}/readme.md | 10 +- .../{1.9.0 => 2.0.2}/repository-LICENSE | 0 .../{1.9.0 => 2.0.2}/index.json | 22 ++-- .../{1.9.0 => 2.0.2}/package.nuspec | 16 +-- .../{1.9.0 => 2.0.2}/project-LICENSE | 0 .../{1.9.0 => 2.0.2}/readme.md | 4 +- .../{1.9.0 => 2.0.2}/repository-LICENSE | 0 .../{1.9.0 => 2.0.2}/index.json | 0 .../{1.9.0 => 2.0.2}/package.nuspec | 6 +- .../{1.9.0 => 2.0.2}/project-LICENSE | 0 .../{1.9.0 => 2.0.2}/readme.md | 2 +- .../{1.9.0 => 2.0.2}/repository-LICENSE | 0 .../{17.13.0 => 18.0.1}/index.json | 0 .../{17.13.0 => 18.0.1}/package.nuspec | 5 +- .../{17.13.0 => 18.0.1}/project-LICENSE | 0 .../{17.13.0 => 18.0.1}/readme.md | 2 +- .../{17.13.0 => 18.0.1}/repository-LICENSE | 0 .../17.13.0/index.json | 107 ------------------ .../17.13.0/package.nuspec | 39 ------- .../17.13.0/readme.md | 26 ----- .../{0.12.4-rc => 1.0.11}/index.json | 2 +- .../{0.12.4-rc => 1.0.11}/package.nuspec | 14 +-- .../{0.12.4-rc => 1.0.11}/readme.md | 4 +- .../{0.12.4-rc => 1.0.11}/repository-LICENSE | 0 .../{5.2.0 => 6.0.1}/index.json | 44 +++---- .../{5.2.0 => 6.0.1}/package.nuspec | 18 +-- .../{5.2.0 => 6.0.1}/readme.md | 8 +- .../{5.2.0 => 6.0.1}/repository-LICENSE | 0 .../polytype/{1.0.0-rc.9 => 1.0.0}/index.json | 0 .../{1.0.0-rc.9 => 1.0.0}/package.nuspec | 6 +- .../polytype/{1.0.0-rc.9 => 1.0.0}/readme.md | 2 +- .../{1.0.0-rc.9 => 1.0.0}/repository-LICENSE | 0 .../{10.0.1 => 10.1.0}/index.json | 2 +- .../{10.0.1 => 10.1.0}/package.nuspec | 10 +- .../{10.0.1 => 10.1.0}/project-LICENSE | 0 .../{10.0.1 => 10.1.0}/readme.md | 4 +- .../{10.0.1 => 10.1.0}/repository-LICENSE | 0 .../{10.0.1 => 10.1.0}/index.json | 0 .../{10.0.1 => 10.1.0}/package.nuspec | 4 +- .../{10.0.1 => 10.1.0}/project-LICENSE | 0 .../{10.0.1 => 10.1.0}/readme.md | 2 +- .../{10.0.1 => 10.1.0}/repository-LICENSE | 0 .../{10.0.1 => 10.1.0}/index.json | 2 +- .../{10.0.1 => 10.1.0}/package.nuspec | 10 +- .../{10.0.1 => 10.1.0}/project-LICENSE | 0 .../{10.0.1 => 10.1.0}/readme.md | 4 +- .../{10.0.1 => 10.1.0}/repository-LICENSE | 0 .../{10.0.1 => 10.1.0}/index.json | 0 .../{10.0.1 => 10.1.0}/package.nuspec | 4 +- .../{10.0.1 => 10.1.0}/project-LICENSE | 0 .../{10.0.1 => 10.1.0}/readme.md | 2 +- .../{10.0.1 => 10.1.0}/repository-LICENSE | 0 .../1.5.0/index.json | 61 ---------- .../1.5.0/package.nuspec | 52 --------- .../1.5.0/readme.md | 37 ------ .../5.0.0/index.json | 8 -- .../5.0.0/readme.md | 5 +- .../8.0.0/index.json | 95 +++++++++++++++- .../8.0.0/readme.md | 7 +- .../6.0.0/index.json | 13 --- .../6.0.0/readme.md | 2 +- .../6.0.1/index.json | 30 ----- .../6.0.1/readme.md | 8 +- .../8.0.0/index.json | 59 ++++++++++ .../8.0.0/package-LICENSE.TXT | 23 ++++ .../8.0.0/package.nuspec | 36 ++++++ .../8.0.0/readme.md | 31 +++++ .../8.0.0/repository-LICENSE.TXT | 23 ++++ .../nuget.org/system.memory/4.5.4/index.json | 25 ---- .../nuget.org/system.memory/4.5.4/readme.md | 7 +- .../nuget.org/system.memory/4.5.5/index.json | 14 ++- .../nuget.org/system.memory/4.5.5/readme.md | 2 +- .../{8.0.0 => 8.0.3}/index.json | 0 .../8.0.3/package-LICENSE.TXT | 23 ++++ .../{8.0.0 => 8.0.3}/package.nuspec | 4 +- .../{8.0.0 => 8.0.3}/readme.md | 2 +- .../8.0.3/repository-LICENSE.TXT | 23 ++++ .../1.6.0/index.json | 86 -------------- .../1.6.0/package.nuspec | 51 --------- .../1.6.0/readme.md | 34 ------ .../5.0.0/index.json | 4 - .../5.0.0/readme.md | 2 +- .../8.0.0/index.json | 89 ++++++++++++++- .../8.0.0/readme.md | 7 +- .../6.0.0/index.json | 7 -- .../6.0.0/readme.md | 2 +- .../{10.0.0 => 10.0.1}/index.json | 2 +- .../{10.0.0 => 10.0.1}/package.nuspec | 8 +- .../{10.0.0 => 10.0.1}/readme.md | 4 +- .../{10.0.0 => 10.0.1}/repository-LICENSE.TXT | 0 Build/third-party-libraries/readme.md | 89 ++++++++------- 214 files changed, 1877 insertions(+), 1254 deletions(-) rename Build/third-party-libraries/packages/nuget.org/google.protobuf/{3.33.1 => 3.33.2}/index.json (100%) rename Build/third-party-libraries/packages/nuget.org/google.protobuf/{3.33.1 => 3.33.2}/package.nuspec (93%) rename Build/third-party-libraries/packages/nuget.org/google.protobuf/{3.33.1 => 3.33.2}/project-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/google.protobuf/{3.33.1 => 3.33.2}/readme.md (88%) rename Build/third-party-libraries/packages/nuget.org/google.protobuf/{3.33.1 => 3.33.2}/repository-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/{2.71.0 => 2.76.0}/index.json (96%) rename Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/{2.71.0 => 2.76.0}/package.nuspec (67%) rename Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/{2.71.0 => 2.76.0}/project-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/{2.71.0 => 2.76.0}/readme.md (83%) rename Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/{2.71.0 => 2.76.0}/repository-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/grpc.core.api/{2.71.0 => 2.76.0}/index.json (100%) rename Build/third-party-libraries/packages/nuget.org/grpc.core.api/{2.71.0 => 2.76.0}/package.nuspec (93%) rename Build/third-party-libraries/packages/nuget.org/grpc.core.api/{2.71.0 => 2.76.0}/project-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/grpc.core.api/{2.71.0 => 2.76.0}/readme.md (90%) rename Build/third-party-libraries/packages/nuget.org/grpc.core.api/{2.71.0 => 2.76.0}/repository-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/grpc.net.client/{2.71.0 => 2.76.0}/index.json (92%) rename Build/third-party-libraries/packages/nuget.org/grpc.net.client/{2.71.0 => 2.76.0}/package.nuspec (68%) rename Build/third-party-libraries/packages/nuget.org/grpc.net.client/{2.71.0 => 2.76.0}/project-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/grpc.net.client/{2.71.0 => 2.76.0}/readme.md (80%) rename Build/third-party-libraries/packages/nuget.org/grpc.net.client/{2.71.0 => 2.76.0}/repository-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/{2.71.0 => 2.76.0}/index.json (94%) rename Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/{2.71.0 => 2.76.0}/package.nuspec (59%) rename Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/{2.71.0 => 2.76.0}/project-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/{2.71.0 => 2.76.0}/readme.md (82%) rename Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/{2.71.0 => 2.76.0}/repository-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/grpc.net.common/{2.71.0 => 2.76.0}/index.json (94%) rename Build/third-party-libraries/packages/nuget.org/grpc.net.common/{2.71.0 => 2.76.0}/package.nuspec (67%) rename Build/third-party-libraries/packages/nuget.org/grpc.net.common/{2.71.0 => 2.76.0}/project-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/grpc.net.common/{2.71.0 => 2.76.0}/readme.md (87%) rename Build/third-party-libraries/packages/nuget.org/grpc.net.common/{2.71.0 => 2.76.0}/repository-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/{10.0.0 => 10.0.1}/index.json (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/{10.0.0 => 10.0.1}/package.nuspec (94%) rename Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/{10.0.0 => 10.0.1}/readme.md (86%) rename Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/{10.0.0 => 10.0.1}/repository-LICENSE.TXT (100%) delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/6.0.0/package.nuspec delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/6.0.0/readme.md rename Build/third-party-libraries/packages/nuget.org/{microsoft.extensions.primitives/6.0.0 => microsoft.extensions.configuration.abstractions/8.0.0}/index.json (65%) rename Build/third-party-libraries/packages/nuget.org/{microsoft.extensions.dependencyinjection/6.0.0 => microsoft.extensions.configuration.abstractions/8.0.0}/package-LICENSE.TXT (100%) create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/readme.md rename Build/third-party-libraries/packages/nuget.org/{microsoft.bcl.asyncinterfaces/6.0.0 => microsoft.extensions.configuration.abstractions/8.0.0}/repository-LICENSE.TXT (100%) create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.0/index.json rename Build/third-party-libraries/packages/nuget.org/{microsoft.extensions.http/6.0.0 => microsoft.extensions.configuration.binder/8.0.0}/package-LICENSE.TXT (100%) create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.0/readme.md rename Build/third-party-libraries/packages/nuget.org/{microsoft.extensions.dependencyinjection.abstractions/6.0.0 => microsoft.extensions.configuration.binder/8.0.0}/repository-LICENSE.TXT (100%) create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/index.json rename Build/third-party-libraries/packages/nuget.org/{microsoft.extensions.logging.abstractions/6.0.0 => microsoft.extensions.configuration/8.0.0}/package-LICENSE.TXT (100%) create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/readme.md rename Build/third-party-libraries/packages/nuget.org/{microsoft.extensions.dependencyinjection/6.0.0 => microsoft.extensions.configuration/8.0.0}/repository-LICENSE.TXT (100%) delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/6.0.0/readme.md rename Build/third-party-libraries/packages/nuget.org/{microsoft.extensions.logging.abstractions/6.0.0 => microsoft.extensions.dependencyinjection.abstractions/8.0.0}/index.json (100%) rename Build/third-party-libraries/packages/nuget.org/{microsoft.extensions.logging/6.0.0 => microsoft.extensions.dependencyinjection.abstractions/8.0.0}/package-LICENSE.TXT (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/{6.0.0 => 8.0.0}/package.nuspec (81%) create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.0/readme.md rename Build/third-party-libraries/packages/nuget.org/{microsoft.extensions.http/6.0.0 => microsoft.extensions.dependencyinjection.abstractions/8.0.0}/repository-LICENSE.TXT (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection/{6.0.0 => 8.0.0}/index.json (96%) rename Build/third-party-libraries/packages/nuget.org/{system.collections.immutable/1.5.0 => microsoft.extensions.dependencyinjection/8.0.0}/package-LICENSE.TXT (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection/{6.0.0 => 8.0.0}/package.nuspec (64%) rename Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection/{6.0.0 => 8.0.0}/readme.md (81%) rename Build/third-party-libraries/packages/nuget.org/{microsoft.extensions.logging.abstractions/6.0.0 => microsoft.extensions.dependencyinjection/8.0.0}/repository-LICENSE.TXT (100%) create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.extensions.diagnostics.abstractions/8.0.0/index.json rename Build/third-party-libraries/packages/nuget.org/{system.net.http.winhttphandler => microsoft.extensions.diagnostics.abstractions}/8.0.0/package-LICENSE.TXT (100%) create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.extensions.diagnostics.abstractions/8.0.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.extensions.diagnostics.abstractions/8.0.0/readme.md rename Build/third-party-libraries/packages/nuget.org/{microsoft.extensions.logging/6.0.0 => microsoft.extensions.diagnostics.abstractions/8.0.0}/repository-LICENSE.TXT (100%) create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.extensions.diagnostics/8.0.0/index.json rename Build/third-party-libraries/packages/nuget.org/{microsoft.bcl.asyncinterfaces/6.0.0/package-LICENSE.txt => microsoft.extensions.diagnostics/8.0.0/package-LICENSE.TXT} (100%) create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.extensions.diagnostics/8.0.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.extensions.diagnostics/8.0.0/readme.md rename Build/third-party-libraries/packages/nuget.org/{microsoft.extensions.options/6.0.0 => microsoft.extensions.diagnostics/8.0.0}/repository-LICENSE.TXT (100%) delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.extensions.http/6.0.0/package.nuspec rename Build/third-party-libraries/packages/nuget.org/microsoft.extensions.http/{6.0.0 => 8.0.0}/index.json (77%) rename Build/third-party-libraries/packages/nuget.org/{microsoft.extensions.dependencyinjection.abstractions/6.0.0/package-LICENSE.txt => microsoft.extensions.http/8.0.0/package-LICENSE.TXT} (100%) create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.extensions.http/8.0.0/package.nuspec rename Build/third-party-libraries/packages/nuget.org/microsoft.extensions.http/{6.0.0 => 8.0.0}/readme.md (69%) rename Build/third-party-libraries/packages/nuget.org/{microsoft.extensions.primitives/6.0.0 => microsoft.extensions.http/8.0.0}/repository-LICENSE.TXT (100%) rename Build/third-party-libraries/packages/nuget.org/{microsoft.extensions.options/6.0.0 => microsoft.extensions.logging.abstractions/8.0.0}/index.json (65%) rename Build/third-party-libraries/packages/nuget.org/{microsoft.extensions.options/6.0.0/package-LICENSE.txt => microsoft.extensions.logging.abstractions/8.0.0/package-LICENSE.TXT} (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/{6.0.0 => 8.0.0}/package.nuspec (56%) rename Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/{6.0.0 => 8.0.0}/readme.md (69%) rename Build/third-party-libraries/packages/nuget.org/{system.net.http.winhttphandler => microsoft.extensions.logging.abstractions}/8.0.0/repository-LICENSE.TXT (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging/{6.0.0 => 8.0.0}/index.json (83%) rename Build/third-party-libraries/packages/nuget.org/{microsoft.extensions.primitives/6.0.0/package-LICENSE.txt => microsoft.extensions.logging/8.0.0/package-LICENSE.TXT} (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging/{6.0.0 => 8.0.0}/package.nuspec (53%) rename Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging/{6.0.0 => 8.0.0}/readme.md (61%) rename Build/third-party-libraries/packages/nuget.org/{system.reflection.metadata/1.6.0/package-LICENSE.txt => microsoft.extensions.logging/8.0.0/repository-LICENSE.TXT} (100%) create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/index.json rename Build/third-party-libraries/packages/nuget.org/{microsoft.testplatform.objectmodel/17.13.0/project-LICENSE => microsoft.extensions.options.configurationextensions/8.0.0/package-LICENSE.TXT} (95%) create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/readme.md rename Build/third-party-libraries/packages/nuget.org/{microsoft.testplatform.objectmodel/17.13.0/repository-LICENSE => microsoft.extensions.options.configurationextensions/8.0.0/repository-LICENSE.TXT} (95%) rename Build/third-party-libraries/packages/nuget.org/{microsoft.bcl.asyncinterfaces/6.0.0 => microsoft.extensions.options/8.0.0}/index.json (77%) create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options/8.0.0/package-LICENSE.TXT rename Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options/{6.0.0 => 8.0.0}/package.nuspec (50%) rename Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options/{6.0.0 => 8.0.0}/readme.md (60%) create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options/8.0.0/repository-LICENSE.TXT rename Build/third-party-libraries/packages/nuget.org/{microsoft.extensions.dependencyinjection.abstractions/6.0.0 => microsoft.extensions.primitives/8.0.0}/index.json (74%) create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/package-LICENSE.TXT rename Build/third-party-libraries/packages/nuget.org/microsoft.extensions.primitives/{6.0.0 => 8.0.0}/package.nuspec (77%) rename Build/third-party-libraries/packages/nuget.org/microsoft.extensions.primitives/{6.0.0 => 8.0.0}/readme.md (59%) create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/repository-LICENSE.TXT rename Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/{1.9.0 => 2.0.2}/index.json (93%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/{1.9.0 => 2.0.2}/package.nuspec (64%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/{1.9.0 => 2.0.2}/project-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/{1.9.0 => 2.0.2}/readme.md (86%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/{1.9.0 => 2.0.2}/repository-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/{1.9.0 => 2.0.2}/index.json (91%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/{1.9.0 => 2.0.2}/package.nuspec (60%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/{1.9.0 => 2.0.2}/project-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/{1.9.0 => 2.0.2}/readme.md (86%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/{1.9.0 => 2.0.2}/repository-LICENSE (100%) delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.9.0/package.nuspec rename Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/{1.9.0 => 2.0.2}/index.json (85%) create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.0.2/package.nuspec rename Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/{1.9.0 => 2.0.2}/project-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/{1.9.0 => 2.0.2}/readme.md (81%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/{1.9.0 => 2.0.2}/repository-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/{1.9.0 => 2.0.2}/index.json (91%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/{1.9.0 => 2.0.2}/package.nuspec (64%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/{1.9.0 => 2.0.2}/project-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/{1.9.0 => 2.0.2}/readme.md (86%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/{1.9.0 => 2.0.2}/repository-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/{1.9.0 => 2.0.2}/index.json (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/{1.9.0 => 2.0.2}/package.nuspec (87%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/{1.9.0 => 2.0.2}/project-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/{1.9.0 => 2.0.2}/readme.md (89%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/{1.9.0 => 2.0.2}/repository-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/{17.13.0 => 18.0.1}/index.json (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/{17.13.0 => 18.0.1}/package.nuspec (89%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/{17.13.0 => 18.0.1}/project-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/{17.13.0 => 18.0.1}/readme.md (85%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/{17.13.0 => 18.0.1}/repository-LICENSE (100%) delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.13.0/index.json delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.13.0/package.nuspec delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.13.0/readme.md rename Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/{0.12.4-rc => 1.0.11}/index.json (97%) rename Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/{0.12.4-rc => 1.0.11}/package.nuspec (87%) rename Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/{0.12.4-rc => 1.0.11}/readme.md (88%) rename Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/{0.12.4-rc => 1.0.11}/repository-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/nunit3testadapter/{5.2.0 => 6.0.1}/index.json (87%) rename Build/third-party-libraries/packages/nuget.org/nunit3testadapter/{5.2.0 => 6.0.1}/package.nuspec (82%) rename Build/third-party-libraries/packages/nuget.org/nunit3testadapter/{5.2.0 => 6.0.1}/readme.md (82%) rename Build/third-party-libraries/packages/nuget.org/nunit3testadapter/{5.2.0 => 6.0.1}/repository-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/polytype/{1.0.0-rc.9 => 1.0.0}/index.json (100%) rename Build/third-party-libraries/packages/nuget.org/polytype/{1.0.0-rc.9 => 1.0.0}/package.nuspec (93%) rename Build/third-party-libraries/packages/nuget.org/polytype/{1.0.0-rc.9 => 1.0.0}/readme.md (85%) rename Build/third-party-libraries/packages/nuget.org/polytype/{1.0.0-rc.9 => 1.0.0}/repository-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.annotations/{10.0.1 => 10.1.0}/index.json (96%) rename Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.annotations/{10.0.1 => 10.1.0}/package.nuspec (85%) rename Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.annotations/{10.0.1 => 10.1.0}/project-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.annotations/{10.0.1 => 10.1.0}/readme.md (79%) rename Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.annotations/{10.0.1 => 10.1.0}/repository-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swagger/{10.0.1 => 10.1.0}/index.json (100%) rename Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swagger/{10.0.1 => 10.1.0}/package.nuspec (93%) rename Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swagger/{10.0.1 => 10.1.0}/project-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swagger/{10.0.1 => 10.1.0}/readme.md (85%) rename Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swagger/{10.0.1 => 10.1.0}/repository-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggergen/{10.0.1 => 10.1.0}/index.json (96%) rename Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggergen/{10.0.1 => 10.1.0}/package.nuspec (84%) rename Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggergen/{10.0.1 => 10.1.0}/project-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggergen/{10.0.1 => 10.1.0}/readme.md (78%) rename Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggergen/{10.0.1 => 10.1.0}/repository-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggerui/{10.0.1 => 10.1.0}/index.json (100%) rename Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggerui/{10.0.1 => 10.1.0}/package.nuspec (93%) rename Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggerui/{10.0.1 => 10.1.0}/project-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggerui/{10.0.1 => 10.1.0}/readme.md (82%) rename Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggerui/{10.0.1 => 10.1.0}/repository-LICENSE (100%) delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.collections.immutable/1.5.0/index.json delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.collections.immutable/1.5.0/package.nuspec delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.collections.immutable/1.5.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.0/package-LICENSE.TXT create mode 100644 Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.0/repository-LICENSE.TXT rename Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/{8.0.0 => 8.0.3}/index.json (100%) create mode 100644 Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/8.0.3/package-LICENSE.TXT rename Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/{8.0.0 => 8.0.3}/package.nuspec (94%) rename Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/{8.0.0 => 8.0.3}/readme.md (88%) create mode 100644 Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/8.0.3/repository-LICENSE.TXT delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/index.json delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/package.nuspec delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/readme.md rename Build/third-party-libraries/packages/nuget.org/system.threading.channels/{10.0.0 => 10.0.1}/index.json (97%) rename Build/third-party-libraries/packages/nuget.org/system.threading.channels/{10.0.0 => 10.0.1}/package.nuspec (90%) rename Build/third-party-libraries/packages/nuget.org/system.threading.channels/{10.0.0 => 10.0.1}/readme.md (83%) rename Build/third-party-libraries/packages/nuget.org/system.threading.channels/{10.0.0 => 10.0.1}/repository-LICENSE.TXT (100%) diff --git a/Build/third-party-libraries/packages/nuget.org/google.protobuf/3.33.1/index.json b/Build/third-party-libraries/packages/nuget.org/google.protobuf/3.33.2/index.json similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/google.protobuf/3.33.1/index.json rename to Build/third-party-libraries/packages/nuget.org/google.protobuf/3.33.2/index.json diff --git a/Build/third-party-libraries/packages/nuget.org/google.protobuf/3.33.1/package.nuspec b/Build/third-party-libraries/packages/nuget.org/google.protobuf/3.33.2/package.nuspec similarity index 93% rename from Build/third-party-libraries/packages/nuget.org/google.protobuf/3.33.1/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/google.protobuf/3.33.2/package.nuspec index febbbb3e..c7bd4d52 100644 --- a/Build/third-party-libraries/packages/nuget.org/google.protobuf/3.33.1/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/google.protobuf/3.33.2/package.nuspec @@ -2,7 +2,7 @@ Google.Protobuf - 3.33.1 + 3.33.2 Google Inc. BSD-3-Clause https://licenses.nuget.org/BSD-3-Clause @@ -11,7 +11,7 @@ C# proto3 support Copyright 2015, Google Inc. Protocol Buffers Binary Serialization Format Google proto proto3 - + diff --git a/Build/third-party-libraries/packages/nuget.org/google.protobuf/3.33.1/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/google.protobuf/3.33.2/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/google.protobuf/3.33.1/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/google.protobuf/3.33.2/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/google.protobuf/3.33.1/readme.md b/Build/third-party-libraries/packages/nuget.org/google.protobuf/3.33.2/readme.md similarity index 88% rename from Build/third-party-libraries/packages/nuget.org/google.protobuf/3.33.1/readme.md rename to Build/third-party-libraries/packages/nuget.org/google.protobuf/3.33.2/readme.md index e075212b..61fe084c 100644 --- a/Build/third-party-libraries/packages/nuget.org/google.protobuf/3.33.1/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/google.protobuf/3.33.2/readme.md @@ -1,4 +1,4 @@ -Google.Protobuf [3.33.1](https://www.nuget.org/packages/Google.Protobuf/3.33.1) +Google.Protobuf [3.33.2](https://www.nuget.org/packages/Google.Protobuf/3.33.2) -------------------- Used by: AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal diff --git a/Build/third-party-libraries/packages/nuget.org/google.protobuf/3.33.1/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/google.protobuf/3.33.2/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/google.protobuf/3.33.1/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/google.protobuf/3.33.2/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.71.0/index.json b/Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.76.0/index.json similarity index 96% rename from Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.71.0/index.json rename to Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.76.0/index.json index ead1cbaf..49ca6ab4 100644 --- a/Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.71.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.76.0/index.json @@ -17,7 +17,7 @@ "Dependencies": [ { "Name": "Grpc.Net.Common", - "Version": "2.71.0" + "Version": "2.76.0" } ] } diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.71.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.76.0/package.nuspec similarity index 67% rename from Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.71.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.76.0/package.nuspec index a65239a4..03b1e49c 100644 --- a/Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.71.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.76.0/package.nuspec @@ -2,7 +2,7 @@ Grpc.AspNetCore.Server - 2.71.0 + 2.76.0 The gRPC Authors Apache-2.0 https://licenses.nuget.org/Apache-2.0 @@ -12,34 +12,28 @@ gRPC support for ASP.NET Core Copyright 2019 The gRPC Authors gRPC RPC HTTP/2 aspnetcore - + - - - - - - - + - + + + + - - - - - - + + + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.71.0/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.76.0/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.71.0/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.76.0/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.71.0/readme.md b/Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.76.0/readme.md similarity index 83% rename from Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.71.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.76.0/readme.md index a7113f64..f38ecfd6 100644 --- a/Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.71.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.76.0/readme.md @@ -1,4 +1,4 @@ -Grpc.AspNetCore.Server [2.71.0](https://www.nuget.org/packages/Grpc.AspNetCore.Server/2.71.0) +Grpc.AspNetCore.Server [2.76.0](https://www.nuget.org/packages/Grpc.AspNetCore.Server/2.76.0) -------------------- Used by: AspNetCore @@ -20,6 +20,6 @@ Dependencies 1 |Name|Version| |----------|:----| -|[Grpc.Net.Common](../../../../packages/nuget.org/grpc.net.common/2.71.0)|2.71.0| +|[Grpc.Net.Common](../../../../packages/nuget.org/grpc.net.common/2.76.0)|2.76.0| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.71.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.76.0/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.71.0/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.76.0/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.71.0/index.json b/Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.76.0/index.json similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.71.0/index.json rename to Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.76.0/index.json diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.71.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.76.0/package.nuspec similarity index 93% rename from Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.71.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.76.0/package.nuspec index 08b2acab..fc2a85bb 100644 --- a/Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.71.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.76.0/package.nuspec @@ -2,7 +2,7 @@ Grpc.Core.Api - 2.71.0 + 2.76.0 The gRPC Authors Apache-2.0 https://licenses.nuget.org/Apache-2.0 @@ -12,7 +12,7 @@ gRPC C# Surface API Copyright 2019 The gRPC Authors gRPC RPC HTTP/2 - + diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.71.0/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.76.0/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.71.0/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.76.0/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.71.0/readme.md b/Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.76.0/readme.md similarity index 90% rename from Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.71.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.76.0/readme.md index 1d2bc23a..f2864e0a 100644 --- a/Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.71.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.76.0/readme.md @@ -1,4 +1,4 @@ -Grpc.Core.Api [2.71.0](https://www.nuget.org/packages/Grpc.Core.Api/2.71.0) +Grpc.Core.Api [2.76.0](https://www.nuget.org/packages/Grpc.Core.Api/2.76.0) -------------------- Used by: AspNetCore, ClientDI, Core, DesignTime, SelfHost diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.71.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.76.0/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.71.0/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.76.0/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.core/2.46.6/index.json b/Build/third-party-libraries/packages/nuget.org/grpc.core/2.46.6/index.json index e52b32fa..35f53bdd 100644 --- a/Build/third-party-libraries/packages/nuget.org/grpc.core/2.46.6/index.json +++ b/Build/third-party-libraries/packages/nuget.org/grpc.core/2.46.6/index.json @@ -18,7 +18,7 @@ "Dependencies": [ { "Name": "Grpc.Core.Api", - "Version": "2.71.0" + "Version": "2.76.0" } ] }, @@ -33,7 +33,7 @@ "Dependencies": [ { "Name": "Grpc.Core.Api", - "Version": "2.71.0" + "Version": "2.76.0" }, { "Name": "System.Memory", diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.core/2.46.6/readme.md b/Build/third-party-libraries/packages/nuget.org/grpc.core/2.46.6/readme.md index 65b46610..77447a84 100644 --- a/Build/third-party-libraries/packages/nuget.org/grpc.core/2.46.6/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/grpc.core/2.46.6/readme.md @@ -23,7 +23,7 @@ Dependencies 2 |Name|Version| |----------|:----| -|[Grpc.Core.Api](../../../../packages/nuget.org/grpc.core.api/2.71.0)|2.71.0| +|[Grpc.Core.Api](../../../../packages/nuget.org/grpc.core.api/2.76.0)|2.76.0| |[System.Memory](../../../../packages/nuget.org/system.memory/4.5.3)|4.5.3| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.71.0/index.json b/Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.76.0/index.json similarity index 92% rename from Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.71.0/index.json rename to Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.76.0/index.json index 4a12300c..5b9e4a10 100644 --- a/Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.71.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.76.0/index.json @@ -19,11 +19,11 @@ "Dependencies": [ { "Name": "Grpc.Net.Common", - "Version": "2.71.0" + "Version": "2.76.0" }, { "Name": "Microsoft.Extensions.Logging.Abstractions", - "Version": "6.0.0" + "Version": "8.0.0" } ] }, @@ -39,11 +39,11 @@ "Dependencies": [ { "Name": "Grpc.Net.Common", - "Version": "2.71.0" + "Version": "2.76.0" }, { "Name": "Microsoft.Extensions.Logging.Abstractions", - "Version": "6.0.0" + "Version": "8.0.0" } ] } diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.71.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.76.0/package.nuspec similarity index 68% rename from Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.71.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.76.0/package.nuspec index 2be827c9..78114855 100644 --- a/Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.71.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.76.0/package.nuspec @@ -2,7 +2,7 @@ Grpc.Net.Client - 2.71.0 + 2.76.0 The gRPC Authors Apache-2.0 https://licenses.nuget.org/Apache-2.0 @@ -12,34 +12,34 @@ .NET client for gRPC Copyright 2019 The gRPC Authors gRPC RPC HTTP/2 - + - - + + - + - - - + + + - - - + + + - - - + + + - - + + - - + + diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.71.0/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.76.0/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.71.0/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.76.0/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.71.0/readme.md b/Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.76.0/readme.md similarity index 80% rename from Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.71.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.76.0/readme.md index 57b1eabf..032a3cc6 100644 --- a/Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.71.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.76.0/readme.md @@ -1,4 +1,4 @@ -Grpc.Net.Client [2.71.0](https://www.nuget.org/packages/Grpc.Net.Client/2.71.0) +Grpc.Net.Client [2.76.0](https://www.nuget.org/packages/Grpc.Net.Client/2.76.0) -------------------- Used by: ClientDI, Core internal @@ -20,7 +20,7 @@ Dependencies 2 |Name|Version| |----------|:----| -|[Grpc.Net.Common](../../../../packages/nuget.org/grpc.net.common/2.71.0)|2.71.0| -|[Microsoft.Extensions.Logging.Abstractions](../../../../packages/nuget.org/microsoft.extensions.logging.abstractions/6.0.0)|6.0.0| +|[Grpc.Net.Common](../../../../packages/nuget.org/grpc.net.common/2.76.0)|2.76.0| +|[Microsoft.Extensions.Logging.Abstractions](../../../../packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.0)|8.0.0| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.71.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.76.0/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.71.0/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.76.0/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.71.0/index.json b/Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.76.0/index.json similarity index 94% rename from Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.71.0/index.json rename to Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.76.0/index.json index 44fe345d..aec5dd15 100644 --- a/Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.71.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.76.0/index.json @@ -19,11 +19,11 @@ "Dependencies": [ { "Name": "Grpc.Net.Client", - "Version": "2.71.0" + "Version": "2.76.0" }, { "Name": "Microsoft.Extensions.Http", - "Version": "6.0.0" + "Version": "8.0.0" } ] } diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.71.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.76.0/package.nuspec similarity index 59% rename from Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.71.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.76.0/package.nuspec index 93ce6cf6..408029fa 100644 --- a/Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.71.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.76.0/package.nuspec @@ -2,7 +2,7 @@ Grpc.Net.ClientFactory - 2.71.0 + 2.76.0 The gRPC Authors Apache-2.0 https://licenses.nuget.org/Apache-2.0 @@ -12,27 +12,27 @@ HttpClientFactory integration the for gRPC .NET client Copyright 2019 The gRPC Authors gRPC RPC HTTP/2 - + - - - + + + - - - + + + - - - + + + - - + + - - + + diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.71.0/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.76.0/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.71.0/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.76.0/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.71.0/readme.md b/Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.76.0/readme.md similarity index 82% rename from Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.71.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.76.0/readme.md index 1358ba7c..0d86ae32 100644 --- a/Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.71.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.76.0/readme.md @@ -1,4 +1,4 @@ -Grpc.Net.ClientFactory [2.71.0](https://www.nuget.org/packages/Grpc.Net.ClientFactory/2.71.0) +Grpc.Net.ClientFactory [2.76.0](https://www.nuget.org/packages/Grpc.Net.ClientFactory/2.76.0) -------------------- Used by: ClientDI @@ -20,7 +20,7 @@ Dependencies 2 |Name|Version| |----------|:----| -|[Grpc.Net.Client](../../../../packages/nuget.org/grpc.net.client/2.71.0)|2.71.0| -|[Microsoft.Extensions.Http](../../../../packages/nuget.org/microsoft.extensions.http/6.0.0)|6.0.0| +|[Grpc.Net.Client](../../../../packages/nuget.org/grpc.net.client/2.76.0)|2.76.0| +|[Microsoft.Extensions.Http](../../../../packages/nuget.org/microsoft.extensions.http/8.0.0)|8.0.0| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.71.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.76.0/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.71.0/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.76.0/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.71.0/index.json b/Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.76.0/index.json similarity index 94% rename from Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.71.0/index.json rename to Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.76.0/index.json index 0d59cc3f..861a876c 100644 --- a/Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.71.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.76.0/index.json @@ -17,7 +17,7 @@ "Dependencies": [ { "Name": "Grpc.Core.Api", - "Version": "2.71.0" + "Version": "2.76.0" } ] }, @@ -34,7 +34,7 @@ "Dependencies": [ { "Name": "Grpc.Core.Api", - "Version": "2.71.0" + "Version": "2.76.0" } ] }, @@ -50,7 +50,7 @@ "Dependencies": [ { "Name": "Grpc.Core.Api", - "Version": "2.71.0" + "Version": "2.76.0" } ] } diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.71.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.76.0/package.nuspec similarity index 67% rename from Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.71.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.76.0/package.nuspec index cc3c7b7d..06598140 100644 --- a/Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.71.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.76.0/package.nuspec @@ -2,7 +2,7 @@ Grpc.Net.Common - 2.71.0 + 2.76.0 The gRPC Authors Apache-2.0 https://licenses.nuget.org/Apache-2.0 @@ -11,23 +11,23 @@ Infrastructure for common functionality in gRPC Copyright 2019 The gRPC Authors gRPC RPC HTTP/2 - + - - + + - - + + - - + + - - + + - + diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.71.0/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.76.0/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.71.0/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.76.0/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.71.0/readme.md b/Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.76.0/readme.md similarity index 87% rename from Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.71.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.76.0/readme.md index 1e2ba890..abdb803f 100644 --- a/Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.71.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.76.0/readme.md @@ -1,4 +1,4 @@ -Grpc.Net.Common [2.71.0](https://www.nuget.org/packages/Grpc.Net.Common/2.71.0) +Grpc.Net.Common [2.76.0](https://www.nuget.org/packages/Grpc.Net.Common/2.76.0) -------------------- Used by: AspNetCore, ClientDI, Core internal @@ -20,6 +20,6 @@ Dependencies 1 |Name|Version| |----------|:----| -|[Grpc.Core.Api](../../../../packages/nuget.org/grpc.core.api/2.71.0)|2.71.0| +|[Grpc.Core.Api](../../../../packages/nuget.org/grpc.core.api/2.76.0)|2.76.0| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.71.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.76.0/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.71.0/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.76.0/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.1/index.json similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.0/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.1/index.json diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.1/package.nuspec similarity index 94% rename from Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.1/package.nuspec index c50aa27d..80850e42 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.1/package.nuspec @@ -2,7 +2,7 @@ Microsoft.Bcl.AsyncInterfaces - 10.0.0 + 10.0.1 Microsoft MIT https://licenses.nuget.org/MIT @@ -13,7 +13,7 @@ https://go.microsoft.com/fwlink/?LinkID=799421 © Microsoft Corporation. All rights reserved. true - + diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.1/readme.md similarity index 86% rename from Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.1/readme.md index 8e81057f..908d6b15 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.1/readme.md @@ -1,4 +1,4 @@ -Microsoft.Bcl.AsyncInterfaces [10.0.0](https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/10.0.0) +Microsoft.Bcl.AsyncInterfaces [10.0.1](https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/10.0.1) -------------------- Used by: Core internal diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.0/repository-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.1/repository-LICENSE.TXT similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.0/repository-LICENSE.TXT rename to Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.1/repository-LICENSE.TXT diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/6.0.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/6.0.0/package.nuspec deleted file mode 100644 index b132d7e8..00000000 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/6.0.0/package.nuspec +++ /dev/null @@ -1,31 +0,0 @@ - - - - Microsoft.Bcl.AsyncInterfaces - 6.0.0 - Microsoft - MIT - https://licenses.nuget.org/MIT - Icon.png - https://dot.net/ - Provides the IAsyncEnumerable<T> and IAsyncDisposable interfaces and helper types for .NET Standard 2.0. This package is not required starting with .NET Standard 2.1 and .NET Core 3.0. - -Commonly Used Types: -System.IAsyncDisposable -System.Collections.Generic.IAsyncEnumerable -System.Collections.Generic.IAsyncEnumerator - https://go.microsoft.com/fwlink/?LinkID=799421 - © Microsoft Corporation. All rights reserved. - true - - - - - - - - - - - - \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/6.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/6.0.0/readme.md deleted file mode 100644 index a75ff46c..00000000 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/6.0.0/readme.md +++ /dev/null @@ -1,30 +0,0 @@ -Microsoft.Bcl.AsyncInterfaces [6.0.0](https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/6.0.0) --------------------- - -Used by: ClientDI - -Target frameworks: net10.0, net8.0, net9.0, netstandard2.0, netstandard2.1 - -License: [MIT](../../../../licenses/mit) - -- package license: [MIT](https://licenses.nuget.org/MIT) -- repository license: [MIT](https://github.com/dotnet/runtime) -- project license: [Unknown](https://dot.net/) , License should be verified on https://dot.net/ - -Description ------------ -Provides the IAsyncEnumerable and IAsyncDisposable interfaces and helper types for .NET Standard 2.0. This package is not required starting with .NET Standard 2.1 and .NET Core 3.0. - -Commonly Used Types: -System.IAsyncDisposable -System.Collections.Generic.IAsyncEnumerable -System.Collections.Generic.IAsyncEnumerator - -Dependencies 1 ------------ - -|Name|Version| -|----------|:----| -|[System.Threading.Tasks.Extensions](../../../../packages/nuget.org/system.threading.tasks.extensions/4.5.4)|4.5.4| - -*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/index.json index 7594f300..6d22aac7 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/index.json @@ -6,6 +6,23 @@ "Status": "AutomaticallyApproved" }, "UsedBy": [ + { + "Name": "ClientDI", + "InternalOnly": false, + "TargetFrameworks": [ + "net10.0", + "net8.0", + "net9.0", + "netstandard2.0", + "netstandard2.1" + ], + "Dependencies": [ + { + "Name": "System.Threading.Tasks.Extensions", + "Version": "4.5.4" + } + ] + }, { "Name": "MessagePack", "InternalOnly": false, diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/readme.md index cb96e695..4d212628 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/readme.md @@ -1,9 +1,9 @@ Microsoft.Bcl.AsyncInterfaces [8.0.0](https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/8.0.0) -------------------- -Used by: MessagePack, NerdbankMessagePack +Used by: ClientDI, MessagePack, NerdbankMessagePack -Target frameworks: net10.0, net8.0, net9.0, netstandard2.0 +Target frameworks: net10.0, net8.0, net9.0, netstandard2.0, netstandard2.1 License: [MIT](../../../../licenses/mit) diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.codeanalysis.common/4.0.1/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.codeanalysis.common/4.0.1/index.json index 438eae99..2bd1c452 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.codeanalysis.common/4.0.1/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.codeanalysis.common/4.0.1/index.json @@ -21,6 +21,10 @@ "Name": "System.Collections.Immutable", "Version": "5.0.0" }, + { + "Name": "System.Collections.Immutable", + "Version": "8.0.0" + }, { "Name": "System.Memory", "Version": "4.5.4" @@ -33,6 +37,10 @@ "Name": "System.Reflection.Metadata", "Version": "5.0.0" }, + { + "Name": "System.Reflection.Metadata", + "Version": "8.0.0" + }, { "Name": "System.Runtime.CompilerServices.Unsafe", "Version": "5.0.0" diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.codeanalysis.common/4.0.1/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.codeanalysis.common/4.0.1/readme.md index d772d156..d10665d4 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.codeanalysis.common/4.0.1/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.codeanalysis.common/4.0.1/readme.md @@ -19,15 +19,17 @@ A shared package used by the Microsoft .NET Compiler Platform ("Roslyn"). More details at https://aka.ms/roslyn-packages This package was built from the source at https://github.com/dotnet/roslyn/commit/b3e69109341a1017423af7981b8b84b646f5bcce. -Dependencies 9 +Dependencies 11 ----------- |Name|Version| |----------|:----| |[System.Collections.Immutable](../../../../packages/nuget.org/system.collections.immutable/5.0.0)|5.0.0| +|[System.Collections.Immutable](../../../../packages/nuget.org/system.collections.immutable/8.0.0)|8.0.0| |[System.Memory](../../../../packages/nuget.org/system.memory/4.5.4)|4.5.4| |[System.Memory](../../../../packages/nuget.org/system.memory/4.5.5)|4.5.5| |[System.Reflection.Metadata](../../../../packages/nuget.org/system.reflection.metadata/5.0.0)|5.0.0| +|[System.Reflection.Metadata](../../../../packages/nuget.org/system.reflection.metadata/8.0.0)|8.0.0| |[System.Runtime.CompilerServices.Unsafe](../../../../packages/nuget.org/system.runtime.compilerservices.unsafe/5.0.0)|5.0.0| |[System.Runtime.CompilerServices.Unsafe](../../../../packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.2)|6.1.2| |[System.Text.Encoding.CodePages](../../../../packages/nuget.org/system.text.encoding.codepages/4.5.1)|4.5.1| diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.primitives/6.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/index.json similarity index 65% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.primitives/6.0.0/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/index.json index af5ec389..db1d2522 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.primitives/6.0.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/index.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", - "Source": "https://api.nuget.org/v3/index.json", + "Source": "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-public/nuget/v3/index.json", "License": { "Code": "MIT", "Status": "AutomaticallyApproved" @@ -15,6 +15,12 @@ "net9.0", "netstandard2.0", "netstandard2.1" + ], + "Dependencies": [ + { + "Name": "Microsoft.Extensions.Primitives", + "Version": "8.0.0" + } ] } ], @@ -26,13 +32,12 @@ }, { "Subject": "repository", - "HRef": "https://github.com/dotnet/runtime", - "Description": "License should be verified on https://github.com/dotnet/runtime" + "Code": "MIT", + "HRef": "https://github.com/dotnet/runtime" }, { "Subject": "project", - "HRef": "https://dot.net/", - "Description": "License should be verified on https://dot.net/" + "HRef": "https://dot.net/" } ] } \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection/6.0.0/package-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/package-LICENSE.TXT similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection/6.0.0/package-LICENSE.TXT rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/package-LICENSE.TXT diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/package.nuspec new file mode 100644 index 00000000..13f09806 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/package.nuspec @@ -0,0 +1,36 @@ + + + + Microsoft.Extensions.Configuration.Abstractions + 8.0.0 + Microsoft + MIT + https://licenses.nuget.org/MIT + Icon.png + PACKAGE.md + https://dot.net/ + Provides abstractions of key-value pair based configuration. Interfaces defined in this package are implemented by classes in Microsoft.Extensions.Configuration and other configuration packages. + https://go.microsoft.com/fwlink/?LinkID=799421 + © Microsoft Corporation. All rights reserved. + true + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/readme.md new file mode 100644 index 00000000..924aa721 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/readme.md @@ -0,0 +1,25 @@ +Microsoft.Extensions.Configuration.Abstractions [8.0.0](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Abstractions/8.0.0) +-------------------- + +Used by: ClientDI + +Target frameworks: net10.0, net8.0, net9.0, netstandard2.0, netstandard2.1 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://licenses.nuget.org/MIT) +- repository license: [MIT](https://github.com/dotnet/runtime) +- project license: [Unknown](https://dot.net/) + +Description +----------- +Provides abstractions of key-value pair based configuration. Interfaces defined in this package are implemented by classes in Microsoft.Extensions.Configuration and other configuration packages. + +Dependencies 1 +----------- + +|Name|Version| +|----------|:----| +|[Microsoft.Extensions.Primitives](../../../../packages/nuget.org/microsoft.extensions.primitives/8.0.0)|8.0.0| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/6.0.0/repository-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/repository-LICENSE.TXT similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/6.0.0/repository-LICENSE.TXT rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/repository-LICENSE.TXT diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.0/index.json new file mode 100644 index 00000000..4428fe3e --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.0/index.json @@ -0,0 +1,43 @@ +{ + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", + "Source": "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-public/nuget/v3/index.json", + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "ClientDI", + "InternalOnly": false, + "TargetFrameworks": [ + "net10.0", + "net8.0", + "net9.0", + "netstandard2.0", + "netstandard2.1" + ], + "Dependencies": [ + { + "Name": "Microsoft.Extensions.Configuration.Abstractions", + "Version": "8.0.0" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://licenses.nuget.org/MIT" + }, + { + "Subject": "repository", + "Code": "MIT", + "HRef": "https://github.com/dotnet/runtime" + }, + { + "Subject": "project", + "HRef": "https://dot.net/" + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.http/6.0.0/package-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.0/package-LICENSE.TXT similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.http/6.0.0/package-LICENSE.TXT rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.0/package-LICENSE.TXT diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.0/package.nuspec new file mode 100644 index 00000000..032eb03f --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.0/package.nuspec @@ -0,0 +1,35 @@ + + + + Microsoft.Extensions.Configuration.Binder + 8.0.0 + Microsoft + MIT + https://licenses.nuget.org/MIT + Icon.png + PACKAGE.md + https://dot.net/ + Provides the functionality to bind an object to data in configuration providers for Microsoft.Extensions.Configuration. This package enables you to represent the configuration data as strongly-typed classes defined in the application code. To bind a configuration, use the Microsoft.Extensions.Configuration.ConfigurationBinder.Get extension method on the IConfiguration object. To use this package, you also need to install a package for the configuration provider, for example, Microsoft.Extensions.Configuration.Json for the JSON provider. + https://go.microsoft.com/fwlink/?LinkID=799421 + © Microsoft Corporation. All rights reserved. + true + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.0/readme.md new file mode 100644 index 00000000..4a5354d6 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.0/readme.md @@ -0,0 +1,25 @@ +Microsoft.Extensions.Configuration.Binder [8.0.0](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Binder/8.0.0) +-------------------- + +Used by: ClientDI + +Target frameworks: net10.0, net8.0, net9.0, netstandard2.0, netstandard2.1 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://licenses.nuget.org/MIT) +- repository license: [MIT](https://github.com/dotnet/runtime) +- project license: [Unknown](https://dot.net/) + +Description +----------- +Provides the functionality to bind an object to data in configuration providers for Microsoft.Extensions.Configuration. This package enables you to represent the configuration data as strongly-typed classes defined in the application code. To bind a configuration, use the Microsoft.Extensions.Configuration.ConfigurationBinder.Get extension method on the IConfiguration object. To use this package, you also need to install a package for the configuration provider, for example, Microsoft.Extensions.Configuration.Json for the JSON provider. + +Dependencies 1 +----------- + +|Name|Version| +|----------|:----| +|[Microsoft.Extensions.Configuration.Abstractions](../../../../packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0)|8.0.0| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/6.0.0/repository-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.0/repository-LICENSE.TXT similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/6.0.0/repository-LICENSE.TXT rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.0/repository-LICENSE.TXT diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/index.json new file mode 100644 index 00000000..25c387d9 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/index.json @@ -0,0 +1,47 @@ +{ + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", + "Source": "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-public/nuget/v3/index.json", + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "ClientDI", + "InternalOnly": false, + "TargetFrameworks": [ + "net10.0", + "net8.0", + "net9.0", + "netstandard2.0", + "netstandard2.1" + ], + "Dependencies": [ + { + "Name": "Microsoft.Extensions.Configuration.Abstractions", + "Version": "8.0.0" + }, + { + "Name": "Microsoft.Extensions.Primitives", + "Version": "8.0.0" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://licenses.nuget.org/MIT" + }, + { + "Subject": "repository", + "Code": "MIT", + "HRef": "https://github.com/dotnet/runtime" + }, + { + "Subject": "project", + "HRef": "https://dot.net/" + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/6.0.0/package-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/package-LICENSE.TXT similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/6.0.0/package-LICENSE.TXT rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/package-LICENSE.TXT diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/package.nuspec new file mode 100644 index 00000000..be871bb3 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/package.nuspec @@ -0,0 +1,40 @@ + + + + Microsoft.Extensions.Configuration + 8.0.0 + Microsoft + MIT + https://licenses.nuget.org/MIT + Icon.png + PACKAGE.md + https://dot.net/ + Implementation of key-value pair based configuration for Microsoft.Extensions.Configuration. Includes the memory configuration provider. + https://go.microsoft.com/fwlink/?LinkID=799421 + © Microsoft Corporation. All rights reserved. + true + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/readme.md new file mode 100644 index 00000000..e550ebe3 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/readme.md @@ -0,0 +1,26 @@ +Microsoft.Extensions.Configuration [8.0.0](https://www.nuget.org/packages/Microsoft.Extensions.Configuration/8.0.0) +-------------------- + +Used by: ClientDI + +Target frameworks: net10.0, net8.0, net9.0, netstandard2.0, netstandard2.1 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://licenses.nuget.org/MIT) +- repository license: [MIT](https://github.com/dotnet/runtime) +- project license: [Unknown](https://dot.net/) + +Description +----------- +Implementation of key-value pair based configuration for Microsoft.Extensions.Configuration. Includes the memory configuration provider. + +Dependencies 2 +----------- + +|Name|Version| +|----------|:----| +|[Microsoft.Extensions.Configuration.Abstractions](../../../../packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0)|8.0.0| +|[Microsoft.Extensions.Primitives](../../../../packages/nuget.org/microsoft.extensions.primitives/8.0.0)|8.0.0| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection/6.0.0/repository-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/repository-LICENSE.TXT similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection/6.0.0/repository-LICENSE.TXT rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/repository-LICENSE.TXT diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/6.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/6.0.0/readme.md deleted file mode 100644 index 2f4108e2..00000000 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/6.0.0/readme.md +++ /dev/null @@ -1,21 +0,0 @@ -Microsoft.Extensions.DependencyInjection.Abstractions [6.0.0](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0) --------------------- - -Used by: ClientDI - -Target frameworks: net10.0, net8.0, net9.0, netstandard2.0, netstandard2.1 - -License: [MIT](../../../../licenses/mit) - -- package license: [MIT](https://licenses.nuget.org/MIT) -- repository license: [Unknown](https://github.com/dotnet/runtime) , License should be verified on https://github.com/dotnet/runtime -- project license: [Unknown](https://dot.net/) , License should be verified on https://dot.net/ - -Description ------------ -Abstractions for dependency injection. - -Commonly Used Types: -Microsoft.Extensions.DependencyInjection.IServiceCollection - -*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/6.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.0/index.json similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/6.0.0/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.0/index.json diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging/6.0.0/package-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.0/package-LICENSE.TXT similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging/6.0.0/package-LICENSE.TXT rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.0/package-LICENSE.TXT diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/6.0.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.0/package.nuspec similarity index 81% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/6.0.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.0/package.nuspec index 4280e34b..5ebeaa36 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/6.0.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.0/package.nuspec @@ -2,11 +2,12 @@ Microsoft.Extensions.DependencyInjection.Abstractions - 6.0.0 + 8.0.0 Microsoft MIT https://licenses.nuget.org/MIT Icon.png + PACKAGE.md https://dot.net/ Abstractions for dependency injection. @@ -15,15 +16,17 @@ Microsoft.Extensions.DependencyInjection.IServiceCollection https://go.microsoft.com/fwlink/?LinkID=799421 © Microsoft Corporation. All rights reserved. true - + - - + + + + - + diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.0/readme.md new file mode 100644 index 00000000..85f5f03e --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.0/readme.md @@ -0,0 +1,21 @@ +Microsoft.Extensions.DependencyInjection.Abstractions [8.0.0](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0) +-------------------- + +Used by: ClientDI, Core internal + +Target frameworks: net10.0, net481, net8.0, net9.0, netstandard2.0, netstandard2.1 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://licenses.nuget.org/MIT) +- repository license: [MIT](https://github.com/dotnet/runtime) +- project license: [Unknown](https://dot.net/) + +Description +----------- +Abstractions for dependency injection. + +Commonly Used Types: +Microsoft.Extensions.DependencyInjection.IServiceCollection + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.http/6.0.0/repository-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.0/repository-LICENSE.TXT similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.http/6.0.0/repository-LICENSE.TXT rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.0/repository-LICENSE.TXT diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection/6.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection/8.0.0/index.json similarity index 96% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection/6.0.0/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection/8.0.0/index.json index 2ef8c90c..60b23512 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection/6.0.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection/8.0.0/index.json @@ -19,7 +19,7 @@ "Dependencies": [ { "Name": "Microsoft.Extensions.DependencyInjection.Abstractions", - "Version": "6.0.0" + "Version": "8.0.0" } ] } diff --git a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/1.5.0/package-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection/8.0.0/package-LICENSE.TXT similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/system.collections.immutable/1.5.0/package-LICENSE.TXT rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection/8.0.0/package-LICENSE.TXT diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection/6.0.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection/8.0.0/package.nuspec similarity index 64% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection/6.0.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection/8.0.0/package.nuspec index 224173ee..71fdef10 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection/6.0.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection/8.0.0/package.nuspec @@ -2,37 +2,40 @@ Microsoft.Extensions.DependencyInjection - 6.0.0 + 8.0.0 Microsoft MIT https://licenses.nuget.org/MIT Icon.png + PACKAGE.md https://dot.net/ Default implementation of dependency injection for Microsoft.Extensions.DependencyInjection. https://go.microsoft.com/fwlink/?LinkID=799421 © Microsoft Corporation. All rights reserved. true - + - - - - + + + - - + + + + + + + - - - + + - - + diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection/6.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection/8.0.0/readme.md similarity index 81% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection/6.0.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection/8.0.0/readme.md index cd714478..69c575b3 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection/6.0.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection/8.0.0/readme.md @@ -1,4 +1,4 @@ -Microsoft.Extensions.DependencyInjection [6.0.0](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection/6.0.0) +Microsoft.Extensions.DependencyInjection [8.0.0](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection/8.0.0) -------------------- Used by: ClientDI @@ -20,6 +20,6 @@ Dependencies 1 |Name|Version| |----------|:----| -|[Microsoft.Extensions.DependencyInjection.Abstractions](../../../../packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/6.0.0)|6.0.0| +|[Microsoft.Extensions.DependencyInjection.Abstractions](../../../../packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.0)|8.0.0| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/6.0.0/repository-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection/8.0.0/repository-LICENSE.TXT similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/6.0.0/repository-LICENSE.TXT rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection/8.0.0/repository-LICENSE.TXT diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.diagnostics.abstractions/8.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.diagnostics.abstractions/8.0.0/index.json new file mode 100644 index 00000000..85009edc --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.diagnostics.abstractions/8.0.0/index.json @@ -0,0 +1,47 @@ +{ + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", + "Source": "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-public/nuget/v3/index.json", + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "ClientDI", + "InternalOnly": false, + "TargetFrameworks": [ + "net10.0", + "net8.0", + "net9.0", + "netstandard2.0", + "netstandard2.1" + ], + "Dependencies": [ + { + "Name": "Microsoft.Extensions.DependencyInjection.Abstractions", + "Version": "8.0.0" + }, + { + "Name": "Microsoft.Extensions.Options", + "Version": "8.0.0" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://licenses.nuget.org/MIT" + }, + { + "Subject": "repository", + "Code": "MIT", + "HRef": "https://github.com/dotnet/runtime" + }, + { + "Subject": "project", + "HRef": "https://dot.net/" + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/8.0.0/package-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.diagnostics.abstractions/8.0.0/package-LICENSE.TXT similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/8.0.0/package-LICENSE.TXT rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.diagnostics.abstractions/8.0.0/package-LICENSE.TXT diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.diagnostics.abstractions/8.0.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.diagnostics.abstractions/8.0.0/package.nuspec new file mode 100644 index 00000000..14e6cac0 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.diagnostics.abstractions/8.0.0/package.nuspec @@ -0,0 +1,56 @@ + + + + Microsoft.Extensions.Diagnostics.Abstractions + 8.0.0 + Microsoft + MIT + https://licenses.nuget.org/MIT + Icon.png + https://dot.net/ + Diagnostic abstractions for Microsoft.Extensions.Diagnostics. + +Commonly Used Types: +Microsoft.Extensions.Diagnostics.Metrics.IMetricsBuilder +Microsoft.Extensions.Diagnostics.Metrics.IMetricsListener +Microsoft.Extensions.Diagnostics.Metrics.InstrumentRule +Microsoft.Extensions.Diagnostics.Metrics.MeterScope +Microsoft.Extensions.Diagnostics.Metrics.MetricsBuilderExtensions +Microsoft.Extensions.Diagnostics.Metrics.MetricsOptions + https://go.microsoft.com/fwlink/?LinkID=799421 + © Microsoft Corporation. All rights reserved. + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.diagnostics.abstractions/8.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.diagnostics.abstractions/8.0.0/readme.md new file mode 100644 index 00000000..88f670df --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.diagnostics.abstractions/8.0.0/readme.md @@ -0,0 +1,34 @@ +Microsoft.Extensions.Diagnostics.Abstractions [8.0.0](https://www.nuget.org/packages/Microsoft.Extensions.Diagnostics.Abstractions/8.0.0) +-------------------- + +Used by: ClientDI + +Target frameworks: net10.0, net8.0, net9.0, netstandard2.0, netstandard2.1 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://licenses.nuget.org/MIT) +- repository license: [MIT](https://github.com/dotnet/runtime) +- project license: [Unknown](https://dot.net/) + +Description +----------- +Diagnostic abstractions for Microsoft.Extensions.Diagnostics. + +Commonly Used Types: +Microsoft.Extensions.Diagnostics.Metrics.IMetricsBuilder +Microsoft.Extensions.Diagnostics.Metrics.IMetricsListener +Microsoft.Extensions.Diagnostics.Metrics.InstrumentRule +Microsoft.Extensions.Diagnostics.Metrics.MeterScope +Microsoft.Extensions.Diagnostics.Metrics.MetricsBuilderExtensions +Microsoft.Extensions.Diagnostics.Metrics.MetricsOptions + +Dependencies 2 +----------- + +|Name|Version| +|----------|:----| +|[Microsoft.Extensions.DependencyInjection.Abstractions](../../../../packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.0)|8.0.0| +|[Microsoft.Extensions.Options](../../../../packages/nuget.org/microsoft.extensions.options/8.0.0)|8.0.0| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging/6.0.0/repository-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.diagnostics.abstractions/8.0.0/repository-LICENSE.TXT similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging/6.0.0/repository-LICENSE.TXT rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.diagnostics.abstractions/8.0.0/repository-LICENSE.TXT diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.diagnostics/8.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.diagnostics/8.0.0/index.json new file mode 100644 index 00000000..956f585d --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.diagnostics/8.0.0/index.json @@ -0,0 +1,51 @@ +{ + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", + "Source": "https://api.nuget.org/v3/index.json", + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "ClientDI", + "InternalOnly": false, + "TargetFrameworks": [ + "net10.0", + "net8.0", + "net9.0", + "netstandard2.0", + "netstandard2.1" + ], + "Dependencies": [ + { + "Name": "Microsoft.Extensions.Configuration", + "Version": "8.0.0" + }, + { + "Name": "Microsoft.Extensions.Diagnostics.Abstractions", + "Version": "8.0.0" + }, + { + "Name": "Microsoft.Extensions.Options.ConfigurationExtensions", + "Version": "8.0.0" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://licenses.nuget.org/MIT" + }, + { + "Subject": "repository", + "Code": "MIT", + "HRef": "https://github.com/dotnet/runtime" + }, + { + "Subject": "project", + "HRef": "https://dot.net/" + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/6.0.0/package-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.diagnostics/8.0.0/package-LICENSE.TXT similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/6.0.0/package-LICENSE.txt rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.diagnostics/8.0.0/package-LICENSE.TXT diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.diagnostics/8.0.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.diagnostics/8.0.0/package.nuspec new file mode 100644 index 00000000..3d2fb37e --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.diagnostics/8.0.0/package.nuspec @@ -0,0 +1,44 @@ + + + + Microsoft.Extensions.Diagnostics + 8.0.0 + Microsoft + MIT + https://licenses.nuget.org/MIT + Icon.png + https://dot.net/ + This package includes the default implementation of IMeterFactory and additional extension methods to easily register it with the Dependency Injection framework. + https://go.microsoft.com/fwlink/?LinkID=799421 + © Microsoft Corporation. All rights reserved. + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.diagnostics/8.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.diagnostics/8.0.0/readme.md new file mode 100644 index 00000000..478098e0 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.diagnostics/8.0.0/readme.md @@ -0,0 +1,27 @@ +Microsoft.Extensions.Diagnostics [8.0.0](https://www.nuget.org/packages/Microsoft.Extensions.Diagnostics/8.0.0) +-------------------- + +Used by: ClientDI + +Target frameworks: net10.0, net8.0, net9.0, netstandard2.0, netstandard2.1 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://licenses.nuget.org/MIT) +- repository license: [MIT](https://github.com/dotnet/runtime) +- project license: [Unknown](https://dot.net/) + +Description +----------- +This package includes the default implementation of IMeterFactory and additional extension methods to easily register it with the Dependency Injection framework. + +Dependencies 3 +----------- + +|Name|Version| +|----------|:----| +|[Microsoft.Extensions.Configuration](../../../../packages/nuget.org/microsoft.extensions.configuration/8.0.0)|8.0.0| +|[Microsoft.Extensions.Diagnostics.Abstractions](../../../../packages/nuget.org/microsoft.extensions.diagnostics.abstractions/8.0.0)|8.0.0| +|[Microsoft.Extensions.Options.ConfigurationExtensions](../../../../packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0)|8.0.0| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options/6.0.0/repository-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.diagnostics/8.0.0/repository-LICENSE.TXT similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options/6.0.0/repository-LICENSE.TXT rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.diagnostics/8.0.0/repository-LICENSE.TXT diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.http/6.0.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.http/6.0.0/package.nuspec deleted file mode 100644 index 868ba3a7..00000000 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.http/6.0.0/package.nuspec +++ /dev/null @@ -1,37 +0,0 @@ - - - - Microsoft.Extensions.Http - 6.0.0 - Microsoft - MIT - https://licenses.nuget.org/MIT - Icon.png - https://dot.net/ - The HttpClient factory is a pattern for configuring and retrieving named HttpClients in a composable way. The HttpClient factory provides extensibility to plug in DelegatingHandlers that address cross-cutting concerns such as service location, load balancing, and reliability. The default HttpClient factory provides built-in diagnostics and logging and manages the lifetimes of connections in a performant way. - -Commonly Used Types: -System.Net.Http.IHttpClientFactory - https://go.microsoft.com/fwlink/?LinkID=799421 - © Microsoft Corporation. All rights reserved. - true - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.http/6.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.http/8.0.0/index.json similarity index 77% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.http/6.0.0/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.http/8.0.0/index.json index 50cf1afb..2792c933 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.http/6.0.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.http/8.0.0/index.json @@ -17,21 +17,29 @@ "netstandard2.1" ], "Dependencies": [ + { + "Name": "Microsoft.Extensions.Configuration.Abstractions", + "Version": "8.0.0" + }, { "Name": "Microsoft.Extensions.DependencyInjection.Abstractions", - "Version": "6.0.0" + "Version": "8.0.0" + }, + { + "Name": "Microsoft.Extensions.Diagnostics", + "Version": "8.0.0" }, { "Name": "Microsoft.Extensions.Logging", - "Version": "6.0.0" + "Version": "8.0.0" }, { "Name": "Microsoft.Extensions.Logging.Abstractions", - "Version": "6.0.0" + "Version": "8.0.0" }, { "Name": "Microsoft.Extensions.Options", - "Version": "6.0.0" + "Version": "8.0.0" } ] } diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/6.0.0/package-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.http/8.0.0/package-LICENSE.TXT similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/6.0.0/package-LICENSE.txt rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.http/8.0.0/package-LICENSE.TXT diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.http/8.0.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.http/8.0.0/package.nuspec new file mode 100644 index 00000000..2684bec1 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.http/8.0.0/package.nuspec @@ -0,0 +1,62 @@ + + + + Microsoft.Extensions.Http + 8.0.0 + Microsoft + MIT + https://licenses.nuget.org/MIT + Icon.png + PACKAGE.md + https://dot.net/ + The HttpClient factory is a pattern for configuring and retrieving named HttpClients in a composable way. The HttpClient factory provides extensibility to plug in DelegatingHandlers that address cross-cutting concerns such as service location, load balancing, and reliability. The default HttpClient factory provides built-in diagnostics and logging and manages the lifetimes of connections in a performant way. + +Commonly Used Types: +System.Net.Http.IHttpClientFactory + https://go.microsoft.com/fwlink/?LinkID=799421 + © Microsoft Corporation. All rights reserved. + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.http/6.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.http/8.0.0/readme.md similarity index 69% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.http/6.0.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.http/8.0.0/readme.md index dd80e70f..fe929ef0 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.http/6.0.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.http/8.0.0/readme.md @@ -1,4 +1,4 @@ -Microsoft.Extensions.Http [6.0.0](https://www.nuget.org/packages/Microsoft.Extensions.Http/6.0.0) +Microsoft.Extensions.Http [8.0.0](https://www.nuget.org/packages/Microsoft.Extensions.Http/8.0.0) -------------------- Used by: ClientDI @@ -18,14 +18,16 @@ The HttpClient factory is a pattern for configuring and retrieving named HttpCli Commonly Used Types: System.Net.Http.IHttpClientFactory -Dependencies 4 +Dependencies 6 ----------- |Name|Version| |----------|:----| -|[Microsoft.Extensions.DependencyInjection.Abstractions](../../../../packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/6.0.0)|6.0.0| -|[Microsoft.Extensions.Logging](../../../../packages/nuget.org/microsoft.extensions.logging/6.0.0)|6.0.0| -|[Microsoft.Extensions.Logging.Abstractions](../../../../packages/nuget.org/microsoft.extensions.logging.abstractions/6.0.0)|6.0.0| -|[Microsoft.Extensions.Options](../../../../packages/nuget.org/microsoft.extensions.options/6.0.0)|6.0.0| +|[Microsoft.Extensions.Configuration.Abstractions](../../../../packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0)|8.0.0| +|[Microsoft.Extensions.DependencyInjection.Abstractions](../../../../packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.0)|8.0.0| +|[Microsoft.Extensions.Diagnostics](../../../../packages/nuget.org/microsoft.extensions.diagnostics/8.0.0)|8.0.0| +|[Microsoft.Extensions.Logging](../../../../packages/nuget.org/microsoft.extensions.logging/8.0.0)|8.0.0| +|[Microsoft.Extensions.Logging.Abstractions](../../../../packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.0)|8.0.0| +|[Microsoft.Extensions.Options](../../../../packages/nuget.org/microsoft.extensions.options/8.0.0)|8.0.0| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.primitives/6.0.0/repository-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.http/8.0.0/repository-LICENSE.TXT similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.primitives/6.0.0/repository-LICENSE.TXT rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.http/8.0.0/repository-LICENSE.TXT diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options/6.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.0/index.json similarity index 65% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options/6.0.0/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.0/index.json index 954c7044..537aba4c 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options/6.0.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.0/index.json @@ -19,11 +19,23 @@ "Dependencies": [ { "Name": "Microsoft.Extensions.DependencyInjection.Abstractions", - "Version": "6.0.0" - }, + "Version": "8.0.0" + } + ] + }, + { + "Name": "Core", + "InternalOnly": true, + "TargetFrameworks": [ + "net10.0", + "net481", + "net8.0", + "net9.0" + ], + "Dependencies": [ { - "Name": "Microsoft.Extensions.Primitives", - "Version": "6.0.0" + "Name": "Microsoft.Extensions.DependencyInjection.Abstractions", + "Version": "8.0.0" } ] } @@ -36,13 +48,12 @@ }, { "Subject": "repository", - "HRef": "https://github.com/dotnet/runtime", - "Description": "License should be verified on https://github.com/dotnet/runtime" + "Code": "MIT", + "HRef": "https://github.com/dotnet/runtime" }, { "Subject": "project", - "HRef": "https://dot.net/", - "Description": "License should be verified on https://dot.net/" + "HRef": "https://dot.net/" } ] } \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options/6.0.0/package-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.0/package-LICENSE.TXT similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options/6.0.0/package-LICENSE.txt rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.0/package-LICENSE.TXT diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/6.0.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.0/package.nuspec similarity index 56% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/6.0.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.0/package.nuspec index 77680837..eb36393c 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/6.0.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.0/package.nuspec @@ -2,11 +2,12 @@ Microsoft.Extensions.Logging.Abstractions - 6.0.0 + 8.0.0 Microsoft MIT https://licenses.nuget.org/MIT Icon.png + PACKAGE.md https://dot.net/ Logging abstractions for Microsoft.Extensions.Logging. @@ -21,16 +22,26 @@ Microsoft.Extensions.Logging.Abstractions.NullLogger https://go.microsoft.com/fwlink/?LinkID=799421 © Microsoft Corporation. All rights reserved. true - + - + + - + + + + + + + + + + - + - + diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/6.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.0/readme.md similarity index 69% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/6.0.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.0/readme.md index fd8cd2ec..1950e099 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/6.0.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.0/readme.md @@ -1,4 +1,4 @@ -Microsoft.Extensions.Logging.Abstractions [6.0.0](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Abstractions/6.0.0) +Microsoft.Extensions.Logging.Abstractions [8.0.0](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Abstractions/8.0.0) -------------------- Used by: ClientDI, Core internal @@ -24,4 +24,11 @@ Microsoft.Extensions.Logging.Logger Microsoft.Extensions.Logging.LoggerMessage Microsoft.Extensions.Logging.Abstractions.NullLogger +Dependencies 1 +----------- + +|Name|Version| +|----------|:----| +|[Microsoft.Extensions.DependencyInjection.Abstractions](../../../../packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.0)|8.0.0| + *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/8.0.0/repository-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.0/repository-LICENSE.TXT similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/8.0.0/repository-LICENSE.TXT rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.0/repository-LICENSE.TXT diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging/6.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging/8.0.0/index.json similarity index 83% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging/6.0.0/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging/8.0.0/index.json index 9207c513..441acdb3 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging/6.0.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging/8.0.0/index.json @@ -19,19 +19,15 @@ "Dependencies": [ { "Name": "Microsoft.Extensions.DependencyInjection", - "Version": "6.0.0" - }, - { - "Name": "Microsoft.Extensions.DependencyInjection.Abstractions", - "Version": "6.0.0" + "Version": "8.0.0" }, { "Name": "Microsoft.Extensions.Logging.Abstractions", - "Version": "6.0.0" + "Version": "8.0.0" }, { "Name": "Microsoft.Extensions.Options", - "Version": "6.0.0" + "Version": "8.0.0" } ] } diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.primitives/6.0.0/package-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging/8.0.0/package-LICENSE.TXT similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.primitives/6.0.0/package-LICENSE.txt rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging/8.0.0/package-LICENSE.TXT diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging/6.0.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging/8.0.0/package.nuspec similarity index 53% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging/6.0.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging/8.0.0/package.nuspec index 0edea9da..5d6c00b2 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging/6.0.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging/8.0.0/package.nuspec @@ -2,41 +2,54 @@ Microsoft.Extensions.Logging - 6.0.0 + 8.0.0 Microsoft MIT https://licenses.nuget.org/MIT Icon.png + PACKAGE.md https://dot.net/ Logging infrastructure default implementation for Microsoft.Extensions.Logging. https://go.microsoft.com/fwlink/?LinkID=799421 © Microsoft Corporation. All rights reserved. true - + - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - + + + + + - - - - - + + + + diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging/6.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging/8.0.0/readme.md similarity index 61% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging/6.0.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging/8.0.0/readme.md index 06838511..ed95688b 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging/6.0.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging/8.0.0/readme.md @@ -1,4 +1,4 @@ -Microsoft.Extensions.Logging [6.0.0](https://www.nuget.org/packages/Microsoft.Extensions.Logging/6.0.0) +Microsoft.Extensions.Logging [8.0.0](https://www.nuget.org/packages/Microsoft.Extensions.Logging/8.0.0) -------------------- Used by: ClientDI @@ -15,14 +15,13 @@ Description ----------- Logging infrastructure default implementation for Microsoft.Extensions.Logging. -Dependencies 4 +Dependencies 3 ----------- |Name|Version| |----------|:----| -|[Microsoft.Extensions.DependencyInjection](../../../../packages/nuget.org/microsoft.extensions.dependencyinjection/6.0.0)|6.0.0| -|[Microsoft.Extensions.DependencyInjection.Abstractions](../../../../packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/6.0.0)|6.0.0| -|[Microsoft.Extensions.Logging.Abstractions](../../../../packages/nuget.org/microsoft.extensions.logging.abstractions/6.0.0)|6.0.0| -|[Microsoft.Extensions.Options](../../../../packages/nuget.org/microsoft.extensions.options/6.0.0)|6.0.0| +|[Microsoft.Extensions.DependencyInjection](../../../../packages/nuget.org/microsoft.extensions.dependencyinjection/8.0.0)|8.0.0| +|[Microsoft.Extensions.Logging.Abstractions](../../../../packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.0)|8.0.0| +|[Microsoft.Extensions.Options](../../../../packages/nuget.org/microsoft.extensions.options/8.0.0)|8.0.0| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/package-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging/8.0.0/repository-LICENSE.TXT similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/package-LICENSE.txt rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging/8.0.0/repository-LICENSE.TXT diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/index.json new file mode 100644 index 00000000..453fd13c --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/index.json @@ -0,0 +1,59 @@ +{ + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", + "Source": "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-public/nuget/v3/index.json", + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "ClientDI", + "InternalOnly": false, + "TargetFrameworks": [ + "net10.0", + "net8.0", + "net9.0", + "netstandard2.0", + "netstandard2.1" + ], + "Dependencies": [ + { + "Name": "Microsoft.Extensions.Configuration.Abstractions", + "Version": "8.0.0" + }, + { + "Name": "Microsoft.Extensions.Configuration.Binder", + "Version": "8.0.0" + }, + { + "Name": "Microsoft.Extensions.DependencyInjection.Abstractions", + "Version": "8.0.0" + }, + { + "Name": "Microsoft.Extensions.Options", + "Version": "8.0.0" + }, + { + "Name": "Microsoft.Extensions.Primitives", + "Version": "8.0.0" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://licenses.nuget.org/MIT" + }, + { + "Subject": "repository", + "Code": "MIT", + "HRef": "https://github.com/dotnet/runtime" + }, + { + "Subject": "project", + "HRef": "https://dot.net/" + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.13.0/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/package-LICENSE.TXT similarity index 95% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.13.0/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/package-LICENSE.TXT index d859446c..984713a4 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.13.0/project-LICENSE +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/package-LICENSE.TXT @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) Microsoft Corporation +Copyright (c) .NET Foundation and Contributors All rights reserved. diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/package.nuspec new file mode 100644 index 00000000..fdf660e8 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/package.nuspec @@ -0,0 +1,55 @@ + + + + Microsoft.Extensions.Options.ConfigurationExtensions + 8.0.0 + Microsoft + MIT + https://licenses.nuget.org/MIT + Icon.png + PACKAGE.md + https://dot.net/ + Provides additional configuration specific functionality related to Options. + https://go.microsoft.com/fwlink/?LinkID=799421 + © Microsoft Corporation. All rights reserved. + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/readme.md new file mode 100644 index 00000000..a0e0d2fa --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/readme.md @@ -0,0 +1,29 @@ +Microsoft.Extensions.Options.ConfigurationExtensions [8.0.0](https://www.nuget.org/packages/Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0) +-------------------- + +Used by: ClientDI + +Target frameworks: net10.0, net8.0, net9.0, netstandard2.0, netstandard2.1 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://licenses.nuget.org/MIT) +- repository license: [MIT](https://github.com/dotnet/runtime) +- project license: [Unknown](https://dot.net/) + +Description +----------- +Provides additional configuration specific functionality related to Options. + +Dependencies 5 +----------- + +|Name|Version| +|----------|:----| +|[Microsoft.Extensions.Configuration.Abstractions](../../../../packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0)|8.0.0| +|[Microsoft.Extensions.Configuration.Binder](../../../../packages/nuget.org/microsoft.extensions.configuration.binder/8.0.0)|8.0.0| +|[Microsoft.Extensions.DependencyInjection.Abstractions](../../../../packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.0)|8.0.0| +|[Microsoft.Extensions.Options](../../../../packages/nuget.org/microsoft.extensions.options/8.0.0)|8.0.0| +|[Microsoft.Extensions.Primitives](../../../../packages/nuget.org/microsoft.extensions.primitives/8.0.0)|8.0.0| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.13.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/repository-LICENSE.TXT similarity index 95% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.13.0/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/repository-LICENSE.TXT index d859446c..984713a4 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.13.0/repository-LICENSE +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/repository-LICENSE.TXT @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) Microsoft Corporation +Copyright (c) .NET Foundation and Contributors All rights reserved. diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/6.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options/8.0.0/index.json similarity index 77% rename from Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/6.0.0/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options/8.0.0/index.json index b04cd69f..6ee915fd 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/6.0.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options/8.0.0/index.json @@ -18,8 +18,12 @@ ], "Dependencies": [ { - "Name": "System.Threading.Tasks.Extensions", - "Version": "4.5.4" + "Name": "Microsoft.Extensions.DependencyInjection.Abstractions", + "Version": "8.0.0" + }, + { + "Name": "Microsoft.Extensions.Primitives", + "Version": "8.0.0" } ] } @@ -37,8 +41,7 @@ }, { "Subject": "project", - "HRef": "https://dot.net/", - "Description": "License should be verified on https://dot.net/" + "HRef": "https://dot.net/" } ] } \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options/8.0.0/package-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options/8.0.0/package-LICENSE.TXT new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options/8.0.0/package-LICENSE.TXT @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options/6.0.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options/8.0.0/package.nuspec similarity index 50% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options/6.0.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options/8.0.0/package.nuspec index 84d25900..0ed20287 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options/6.0.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options/8.0.0/package.nuspec @@ -2,34 +2,49 @@ Microsoft.Extensions.Options - 6.0.0 + 8.0.0 Microsoft MIT https://licenses.nuget.org/MIT Icon.png + PACKAGE.md https://dot.net/ Provides a strongly typed way of specifying and accessing settings using dependency injection. https://go.microsoft.com/fwlink/?LinkID=799421 © Microsoft Corporation. All rights reserved. true - + - - - + + + + + + + + + + + + + + + + - - + + - - + + + - + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options/6.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options/8.0.0/readme.md similarity index 60% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options/6.0.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options/8.0.0/readme.md index 9089b742..39754bcf 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options/6.0.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options/8.0.0/readme.md @@ -1,4 +1,4 @@ -Microsoft.Extensions.Options [6.0.0](https://www.nuget.org/packages/Microsoft.Extensions.Options/6.0.0) +Microsoft.Extensions.Options [8.0.0](https://www.nuget.org/packages/Microsoft.Extensions.Options/8.0.0) -------------------- Used by: ClientDI @@ -8,8 +8,8 @@ Target frameworks: net10.0, net8.0, net9.0, netstandard2.0, netstandard2.1 License: [MIT](../../../../licenses/mit) - package license: [MIT](https://licenses.nuget.org/MIT) -- repository license: [Unknown](https://github.com/dotnet/runtime) , License should be verified on https://github.com/dotnet/runtime -- project license: [Unknown](https://dot.net/) , License should be verified on https://dot.net/ +- repository license: [MIT](https://github.com/dotnet/runtime) +- project license: [Unknown](https://dot.net/) Description ----------- @@ -20,7 +20,7 @@ Dependencies 2 |Name|Version| |----------|:----| -|[Microsoft.Extensions.DependencyInjection.Abstractions](../../../../packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/6.0.0)|6.0.0| -|[Microsoft.Extensions.Primitives](../../../../packages/nuget.org/microsoft.extensions.primitives/6.0.0)|6.0.0| +|[Microsoft.Extensions.DependencyInjection.Abstractions](../../../../packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.0)|8.0.0| +|[Microsoft.Extensions.Primitives](../../../../packages/nuget.org/microsoft.extensions.primitives/8.0.0)|8.0.0| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options/8.0.0/repository-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options/8.0.0/repository-LICENSE.TXT new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.options/8.0.0/repository-LICENSE.TXT @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/6.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/index.json similarity index 74% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/6.0.0/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/index.json index af5ec389..02d1aa8f 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/6.0.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/index.json @@ -26,13 +26,12 @@ }, { "Subject": "repository", - "HRef": "https://github.com/dotnet/runtime", - "Description": "License should be verified on https://github.com/dotnet/runtime" + "Code": "MIT", + "HRef": "https://github.com/dotnet/runtime" }, { "Subject": "project", - "HRef": "https://dot.net/", - "Description": "License should be verified on https://dot.net/" + "HRef": "https://dot.net/" } ] } \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/package-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/package-LICENSE.TXT new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/package-LICENSE.TXT @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.primitives/6.0.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/package.nuspec similarity index 77% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.primitives/6.0.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/package.nuspec index 5586a6d3..c71411ea 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.primitives/6.0.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/package.nuspec @@ -2,11 +2,12 @@ Microsoft.Extensions.Primitives - 6.0.0 + 8.0.0 Microsoft MIT https://licenses.nuget.org/MIT Icon.png + PACKAGE.md https://dot.net/ Primitives shared by framework extensions. Commonly used types include: @@ -17,21 +18,20 @@ Microsoft.Extensions.Primitives.StringSegment https://go.microsoft.com/fwlink/?LinkID=799421 © Microsoft Corporation. All rights reserved. true - + - - - - - + + + + + - diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.primitives/6.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/readme.md similarity index 59% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.primitives/6.0.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/readme.md index 871ef3d0..888ac534 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.primitives/6.0.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/readme.md @@ -1,4 +1,4 @@ -Microsoft.Extensions.Primitives [6.0.0](https://www.nuget.org/packages/Microsoft.Extensions.Primitives/6.0.0) +Microsoft.Extensions.Primitives [8.0.0](https://www.nuget.org/packages/Microsoft.Extensions.Primitives/8.0.0) -------------------- Used by: ClientDI @@ -8,8 +8,8 @@ Target frameworks: net10.0, net8.0, net9.0, netstandard2.0, netstandard2.1 License: [MIT](../../../../licenses/mit) - package license: [MIT](https://licenses.nuget.org/MIT) -- repository license: [Unknown](https://github.com/dotnet/runtime) , License should be verified on https://github.com/dotnet/runtime -- project license: [Unknown](https://dot.net/) , License should be verified on https://dot.net/ +- repository license: [MIT](https://github.com/dotnet/runtime) +- project license: [Unknown](https://dot.net/) Description ----------- diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/repository-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/repository-LICENSE.TXT new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/repository-LICENSE.TXT @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.9.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.0.2/index.json similarity index 93% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.9.0/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.0.2/index.json index f2c6da02..2bb45f96 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.9.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.0.2/index.json @@ -21,7 +21,7 @@ }, { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -40,7 +40,7 @@ }, { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -59,7 +59,7 @@ }, { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -79,7 +79,7 @@ }, { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -99,7 +99,7 @@ }, { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -119,7 +119,7 @@ }, { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -139,7 +139,7 @@ }, { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -158,7 +158,7 @@ }, { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -177,7 +177,7 @@ }, { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -196,7 +196,7 @@ }, { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -216,7 +216,7 @@ }, { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] } diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.9.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.0.2/package.nuspec similarity index 64% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.9.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.0.2/package.nuspec index 45400698..b756e872 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.9.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.0.2/package.nuspec @@ -2,7 +2,7 @@ Microsoft.Testing.Extensions.Telemetry - 1.9.0 + 2.0.2 Microsoft true MIT @@ -16,26 +16,18 @@ This package provides telemetry for the platform. © Microsoft Corporation. All rights reserved. Microsoft test testing unittest unittesting unit-testing tdd true - + - - - - - - - - - + - + - + diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.9.0/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.0.2/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.9.0/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.0.2/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.9.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.0.2/readme.md similarity index 86% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.9.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.0.2/readme.md index 64586459..94a12b1e 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.9.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.0.2/readme.md @@ -1,4 +1,4 @@ -Microsoft.Testing.Extensions.Telemetry [1.9.0](https://www.nuget.org/packages/Microsoft.Testing.Extensions.Telemetry/1.9.0) +Microsoft.Testing.Extensions.Telemetry [2.0.2](https://www.nuget.org/packages/Microsoft.Testing.Extensions.Telemetry/2.0.2) -------------------- Used by: AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal @@ -23,6 +23,6 @@ Dependencies 2 |Name|Version| |----------|:----| |[Microsoft.ApplicationInsights](../../../../packages/nuget.org/microsoft.applicationinsights/2.23.0)|2.23.0| -|[Microsoft.Testing.Platform](../../../../packages/nuget.org/microsoft.testing.platform/1.9.0)|1.9.0| +|[Microsoft.Testing.Platform](../../../../packages/nuget.org/microsoft.testing.platform/2.0.2)|2.0.2| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.9.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.0.2/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.9.0/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.0.2/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.9.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.0.2/index.json similarity index 91% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.9.0/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.0.2/index.json index 12e0835c..7df03de9 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.9.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.0.2/index.json @@ -17,7 +17,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -32,7 +32,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -47,7 +47,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -63,7 +63,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -79,7 +79,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -95,7 +95,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -111,7 +111,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -126,7 +126,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -141,7 +141,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -156,7 +156,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -172,7 +172,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] } diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.9.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.0.2/package.nuspec similarity index 60% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.9.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.0.2/package.nuspec index cb3cb7f6..9647f67c 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.9.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.0.2/package.nuspec @@ -2,7 +2,7 @@ Microsoft.Testing.Extensions.TrxReport.Abstractions - 1.9.0 + 2.0.2 Microsoft true MIT @@ -14,22 +14,16 @@ © Microsoft Corporation. All rights reserved. Microsoft test testing unittest unittesting unit-testing tdd true - + - - - - - - - + - + - + diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.9.0/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.0.2/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.9.0/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.0.2/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.9.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.0.2/readme.md similarity index 86% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.9.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.0.2/readme.md index 7b18bac1..529a91d5 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.9.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.0.2/readme.md @@ -1,4 +1,4 @@ -Microsoft.Testing.Extensions.TrxReport.Abstractions [1.9.0](https://www.nuget.org/packages/Microsoft.Testing.Extensions.TrxReport.Abstractions/1.9.0) +Microsoft.Testing.Extensions.TrxReport.Abstractions [2.0.2](https://www.nuget.org/packages/Microsoft.Testing.Extensions.TrxReport.Abstractions/2.0.2) -------------------- Used by: AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal @@ -20,6 +20,6 @@ Dependencies 1 |Name|Version| |----------|:----| -|[Microsoft.Testing.Platform](../../../../packages/nuget.org/microsoft.testing.platform/1.9.0)|1.9.0| +|[Microsoft.Testing.Platform](../../../../packages/nuget.org/microsoft.testing.platform/2.0.2)|2.0.2| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.9.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.0.2/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.9.0/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.0.2/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.9.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.9.0/package.nuspec deleted file mode 100644 index 06b8d883..00000000 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.9.0/package.nuspec +++ /dev/null @@ -1,58 +0,0 @@ - - - - Microsoft.Testing.Extensions.VSTestBridge - 1.9.0 - Microsoft - true - MIT - https://licenses.nuget.org/MIT - Icon.png - PACKAGE.md - https://github.com/microsoft/testfx - Microsoft Testing is a set of platform, framework and protocol intended to make it possible to run any test on any target or device. - -This package provides a bridge integration for test adapters wanting to target both VSTest and Microsoft.Testing.Platform test platforms. - © Microsoft Corporation. All rights reserved. - Microsoft test testing unittest unittesting unit-testing tdd - true - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.9.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.0.2/index.json similarity index 85% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.9.0/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.0.2/index.json index 6973b94a..ff5d6f03 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.9.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.0.2/index.json @@ -17,7 +17,7 @@ "Dependencies": [ { "Name": "Microsoft.TestPlatform.AdapterUtilities", - "Version": "17.13.0" + "Version": "18.0.1" }, { "Name": "Microsoft.TestPlatform.ObjectModel", @@ -25,15 +25,15 @@ }, { "Name": "Microsoft.Testing.Extensions.Telemetry", - "Version": "1.9.0" + "Version": "2.0.2" }, { "Name": "Microsoft.Testing.Extensions.TrxReport.Abstractions", - "Version": "1.9.0" + "Version": "2.0.2" }, { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -48,7 +48,7 @@ "Dependencies": [ { "Name": "Microsoft.TestPlatform.AdapterUtilities", - "Version": "17.13.0" + "Version": "18.0.1" }, { "Name": "Microsoft.TestPlatform.ObjectModel", @@ -56,15 +56,15 @@ }, { "Name": "Microsoft.Testing.Extensions.Telemetry", - "Version": "1.9.0" + "Version": "2.0.2" }, { "Name": "Microsoft.Testing.Extensions.TrxReport.Abstractions", - "Version": "1.9.0" + "Version": "2.0.2" }, { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -79,7 +79,7 @@ "Dependencies": [ { "Name": "Microsoft.TestPlatform.AdapterUtilities", - "Version": "17.13.0" + "Version": "18.0.1" }, { "Name": "Microsoft.TestPlatform.ObjectModel", @@ -87,15 +87,15 @@ }, { "Name": "Microsoft.Testing.Extensions.Telemetry", - "Version": "1.9.0" + "Version": "2.0.2" }, { "Name": "Microsoft.Testing.Extensions.TrxReport.Abstractions", - "Version": "1.9.0" + "Version": "2.0.2" }, { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -111,7 +111,7 @@ "Dependencies": [ { "Name": "Microsoft.TestPlatform.AdapterUtilities", - "Version": "17.13.0" + "Version": "18.0.1" }, { "Name": "Microsoft.TestPlatform.ObjectModel", @@ -119,15 +119,15 @@ }, { "Name": "Microsoft.Testing.Extensions.Telemetry", - "Version": "1.9.0" + "Version": "2.0.2" }, { "Name": "Microsoft.Testing.Extensions.TrxReport.Abstractions", - "Version": "1.9.0" + "Version": "2.0.2" }, { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -143,7 +143,7 @@ "Dependencies": [ { "Name": "Microsoft.TestPlatform.AdapterUtilities", - "Version": "17.13.0" + "Version": "18.0.1" }, { "Name": "Microsoft.TestPlatform.ObjectModel", @@ -151,15 +151,15 @@ }, { "Name": "Microsoft.Testing.Extensions.Telemetry", - "Version": "1.9.0" + "Version": "2.0.2" }, { "Name": "Microsoft.Testing.Extensions.TrxReport.Abstractions", - "Version": "1.9.0" + "Version": "2.0.2" }, { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -175,7 +175,7 @@ "Dependencies": [ { "Name": "Microsoft.TestPlatform.AdapterUtilities", - "Version": "17.13.0" + "Version": "18.0.1" }, { "Name": "Microsoft.TestPlatform.ObjectModel", @@ -183,15 +183,15 @@ }, { "Name": "Microsoft.Testing.Extensions.Telemetry", - "Version": "1.9.0" + "Version": "2.0.2" }, { "Name": "Microsoft.Testing.Extensions.TrxReport.Abstractions", - "Version": "1.9.0" + "Version": "2.0.2" }, { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -207,7 +207,7 @@ "Dependencies": [ { "Name": "Microsoft.TestPlatform.AdapterUtilities", - "Version": "17.13.0" + "Version": "18.0.1" }, { "Name": "Microsoft.TestPlatform.ObjectModel", @@ -215,15 +215,15 @@ }, { "Name": "Microsoft.Testing.Extensions.Telemetry", - "Version": "1.9.0" + "Version": "2.0.2" }, { "Name": "Microsoft.Testing.Extensions.TrxReport.Abstractions", - "Version": "1.9.0" + "Version": "2.0.2" }, { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -238,7 +238,7 @@ "Dependencies": [ { "Name": "Microsoft.TestPlatform.AdapterUtilities", - "Version": "17.13.0" + "Version": "18.0.1" }, { "Name": "Microsoft.TestPlatform.ObjectModel", @@ -246,15 +246,15 @@ }, { "Name": "Microsoft.Testing.Extensions.Telemetry", - "Version": "1.9.0" + "Version": "2.0.2" }, { "Name": "Microsoft.Testing.Extensions.TrxReport.Abstractions", - "Version": "1.9.0" + "Version": "2.0.2" }, { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -269,7 +269,7 @@ "Dependencies": [ { "Name": "Microsoft.TestPlatform.AdapterUtilities", - "Version": "17.13.0" + "Version": "18.0.1" }, { "Name": "Microsoft.TestPlatform.ObjectModel", @@ -277,15 +277,15 @@ }, { "Name": "Microsoft.Testing.Extensions.Telemetry", - "Version": "1.9.0" + "Version": "2.0.2" }, { "Name": "Microsoft.Testing.Extensions.TrxReport.Abstractions", - "Version": "1.9.0" + "Version": "2.0.2" }, { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -300,7 +300,7 @@ "Dependencies": [ { "Name": "Microsoft.TestPlatform.AdapterUtilities", - "Version": "17.13.0" + "Version": "18.0.1" }, { "Name": "Microsoft.TestPlatform.ObjectModel", @@ -308,15 +308,15 @@ }, { "Name": "Microsoft.Testing.Extensions.Telemetry", - "Version": "1.9.0" + "Version": "2.0.2" }, { "Name": "Microsoft.Testing.Extensions.TrxReport.Abstractions", - "Version": "1.9.0" + "Version": "2.0.2" }, { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -332,7 +332,7 @@ "Dependencies": [ { "Name": "Microsoft.TestPlatform.AdapterUtilities", - "Version": "17.13.0" + "Version": "18.0.1" }, { "Name": "Microsoft.TestPlatform.ObjectModel", @@ -340,15 +340,15 @@ }, { "Name": "Microsoft.Testing.Extensions.Telemetry", - "Version": "1.9.0" + "Version": "2.0.2" }, { "Name": "Microsoft.Testing.Extensions.TrxReport.Abstractions", - "Version": "1.9.0" + "Version": "2.0.2" }, { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] } diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.0.2/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.0.2/package.nuspec new file mode 100644 index 00000000..453a294c --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.0.2/package.nuspec @@ -0,0 +1,44 @@ + + + + Microsoft.Testing.Extensions.VSTestBridge + 2.0.2 + Microsoft + true + MIT + https://licenses.nuget.org/MIT + Icon.png + PACKAGE.md + https://github.com/microsoft/testfx + Microsoft Testing is a set of platform, framework and protocol intended to make it possible to run any test on any target or device. + +This package provides a bridge integration for test adapters wanting to target both VSTest and Microsoft.Testing.Platform test platforms. + © Microsoft Corporation. All rights reserved. + Microsoft test testing unittest unittesting unit-testing tdd + true + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.9.0/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.0.2/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.9.0/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.0.2/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.9.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.0.2/readme.md similarity index 81% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.9.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.0.2/readme.md index 6f9f41e0..49426c63 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.9.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.0.2/readme.md @@ -1,4 +1,4 @@ -Microsoft.Testing.Extensions.VSTestBridge [1.9.0](https://www.nuget.org/packages/Microsoft.Testing.Extensions.VSTestBridge/1.9.0) +Microsoft.Testing.Extensions.VSTestBridge [2.0.2](https://www.nuget.org/packages/Microsoft.Testing.Extensions.VSTestBridge/2.0.2) -------------------- Used by: AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal @@ -22,10 +22,10 @@ Dependencies 5 |Name|Version| |----------|:----| -|[Microsoft.Testing.Extensions.Telemetry](../../../../packages/nuget.org/microsoft.testing.extensions.telemetry/1.9.0)|1.9.0| -|[Microsoft.Testing.Extensions.TrxReport.Abstractions](../../../../packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.9.0)|1.9.0| -|[Microsoft.Testing.Platform](../../../../packages/nuget.org/microsoft.testing.platform/1.9.0)|1.9.0| -|[Microsoft.TestPlatform.AdapterUtilities](../../../../packages/nuget.org/microsoft.testplatform.adapterutilities/17.13.0)|17.13.0| +|[Microsoft.Testing.Extensions.Telemetry](../../../../packages/nuget.org/microsoft.testing.extensions.telemetry/2.0.2)|2.0.2| +|[Microsoft.Testing.Extensions.TrxReport.Abstractions](../../../../packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.0.2)|2.0.2| +|[Microsoft.Testing.Platform](../../../../packages/nuget.org/microsoft.testing.platform/2.0.2)|2.0.2| +|[Microsoft.TestPlatform.AdapterUtilities](../../../../packages/nuget.org/microsoft.testplatform.adapterutilities/18.0.1)|18.0.1| |[Microsoft.TestPlatform.ObjectModel](../../../../packages/nuget.org/microsoft.testplatform.objectmodel/18.0.1)|18.0.1| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.9.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.0.2/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.9.0/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.0.2/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.9.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.0.2/index.json similarity index 91% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.9.0/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.0.2/index.json index 12e0835c..7df03de9 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.9.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.0.2/index.json @@ -17,7 +17,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -32,7 +32,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -47,7 +47,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -63,7 +63,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -79,7 +79,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -95,7 +95,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -111,7 +111,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -126,7 +126,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -141,7 +141,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -156,7 +156,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -172,7 +172,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "1.9.0" + "Version": "2.0.2" } ] } diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.9.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.0.2/package.nuspec similarity index 64% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.9.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.0.2/package.nuspec index 7688273b..4e66a622 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.9.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.0.2/package.nuspec @@ -2,7 +2,7 @@ Microsoft.Testing.Platform.MSBuild - 1.9.0 + 2.0.2 Microsoft true MIT @@ -16,22 +16,16 @@ This package provides MSBuild integration of the platform, its extensions and co © Microsoft Corporation. All rights reserved. Microsoft test testing unittest unittesting unit-testing tdd true - + - - - - - - - + - + - + diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.9.0/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.0.2/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.9.0/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.0.2/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.9.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.0.2/readme.md similarity index 86% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.9.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.0.2/readme.md index 0c31c50d..d76c2bfd 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.9.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.0.2/readme.md @@ -1,4 +1,4 @@ -Microsoft.Testing.Platform.MSBuild [1.9.0](https://www.nuget.org/packages/Microsoft.Testing.Platform.MSBuild/1.9.0) +Microsoft.Testing.Platform.MSBuild [2.0.2](https://www.nuget.org/packages/Microsoft.Testing.Platform.MSBuild/2.0.2) -------------------- Used by: AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal @@ -22,6 +22,6 @@ Dependencies 1 |Name|Version| |----------|:----| -|[Microsoft.Testing.Platform](../../../../packages/nuget.org/microsoft.testing.platform/1.9.0)|1.9.0| +|[Microsoft.Testing.Platform](../../../../packages/nuget.org/microsoft.testing.platform/2.0.2)|2.0.2| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.9.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.0.2/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.9.0/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.0.2/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/1.9.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/2.0.2/index.json similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/1.9.0/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/2.0.2/index.json diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/1.9.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/2.0.2/package.nuspec similarity index 87% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/1.9.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/2.0.2/package.nuspec index 88077a9d..2b09f1d6 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/1.9.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/2.0.2/package.nuspec @@ -2,7 +2,7 @@ Microsoft.Testing.Platform - 1.9.0 + 2.0.2 Microsoft true MIT @@ -16,10 +16,8 @@ This package provides the core platform and the .NET implementation of the proto © Microsoft Corporation. All rights reserved. Microsoft test testing unittest unittesting unit-testing tdd true - + - - diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/1.9.0/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/2.0.2/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/1.9.0/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/2.0.2/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/1.9.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/2.0.2/readme.md similarity index 89% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/1.9.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/2.0.2/readme.md index c2483ad6..e011ca8b 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/1.9.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/2.0.2/readme.md @@ -1,4 +1,4 @@ -Microsoft.Testing.Platform [1.9.0](https://www.nuget.org/packages/Microsoft.Testing.Platform/1.9.0) +Microsoft.Testing.Platform [2.0.2](https://www.nuget.org/packages/Microsoft.Testing.Platform/2.0.2) -------------------- Used by: AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/1.9.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/2.0.2/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/1.9.0/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/2.0.2/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/17.13.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/18.0.1/index.json similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/17.13.0/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/18.0.1/index.json diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/17.13.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/18.0.1/package.nuspec similarity index 89% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/17.13.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/18.0.1/package.nuspec index 87646881..bfceab9c 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/17.13.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/18.0.1/package.nuspec @@ -2,7 +2,7 @@ Microsoft.TestPlatform.AdapterUtilities - 17.13.0 + 18.0.1 Microsoft true MIT @@ -13,11 +13,10 @@ © Microsoft Corporation. All rights reserved. vstest visual-studio unittest testplatform mstest microsoft test testing true - + - diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/17.13.0/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/18.0.1/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/17.13.0/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/18.0.1/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/17.13.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/18.0.1/readme.md similarity index 85% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/17.13.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/18.0.1/readme.md index 73924558..2bd11d41 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/17.13.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/18.0.1/readme.md @@ -1,4 +1,4 @@ -Microsoft.TestPlatform.AdapterUtilities [17.13.0](https://www.nuget.org/packages/Microsoft.TestPlatform.AdapterUtilities/17.13.0) +Microsoft.TestPlatform.AdapterUtilities [18.0.1](https://www.nuget.org/packages/Microsoft.TestPlatform.AdapterUtilities/18.0.1) -------------------- Used by: AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/17.13.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/18.0.1/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/17.13.0/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/18.0.1/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.13.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.13.0/index.json deleted file mode 100644 index d2d0f2f2..00000000 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.13.0/index.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", - "Source": "https://api.nuget.org/v3/index.json", - "License": { - "Code": "MIT", - "Status": "AutomaticallyApproved" - }, - "UsedBy": [ - { - "Name": "ClientDI", - "InternalOnly": true, - "TargetFrameworks": [ - "net10.0", - "net481", - "net8.0", - "net9.0" - ], - "Dependencies": [ - { - "Name": "System.Reflection.Metadata", - "Version": "1.6.0" - } - ] - }, - { - "Name": "Core", - "InternalOnly": true, - "TargetFrameworks": [ - "net10.0", - "net481", - "net8.0", - "net9.0" - ], - "Dependencies": [ - { - "Name": "System.Reflection.Metadata", - "Version": "1.6.0" - } - ] - }, - { - "Name": "DesignTime", - "InternalOnly": true, - "TargetFrameworks": [ - "net10.0", - "net481", - "net8.0", - "net9.0" - ], - "Dependencies": [ - { - "Name": "System.Reflection.Metadata", - "Version": "5.0.0" - } - ] - }, - { - "Name": "Emit", - "InternalOnly": true, - "TargetFrameworks": [ - "net10.0", - "net481", - "net8.0", - "net9.0" - ], - "Dependencies": [ - { - "Name": "System.Reflection.Metadata", - "Version": "1.6.0" - } - ] - }, - { - "Name": "SelfHost", - "InternalOnly": true, - "TargetFrameworks": [ - "net10.0", - "net481", - "net8.0", - "net9.0" - ], - "Dependencies": [ - { - "Name": "System.Reflection.Metadata", - "Version": "1.6.0" - } - ] - } - ], - "Licenses": [ - { - "Subject": "package", - "Code": "MIT", - "HRef": "https://licenses.nuget.org/MIT" - }, - { - "Subject": "repository", - "Code": "MIT", - "HRef": "https://github.com/microsoft/vstest" - }, - { - "Subject": "project", - "Code": "MIT", - "HRef": "https://github.com/microsoft/vstest" - } - ] -} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.13.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.13.0/package.nuspec deleted file mode 100644 index 9fc0832b..00000000 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.13.0/package.nuspec +++ /dev/null @@ -1,39 +0,0 @@ - - - - Microsoft.TestPlatform.ObjectModel - 17.13.0 - Microsoft - true - MIT - https://licenses.nuget.org/MIT - Icon.png - https://github.com/microsoft/vstest - The Microsoft Test Platform Object Model. - © Microsoft Corporation. All rights reserved. - vstest visual-studio unittest testplatform mstest microsoft test testing - true - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.13.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.13.0/readme.md deleted file mode 100644 index ea5b41e8..00000000 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.13.0/readme.md +++ /dev/null @@ -1,26 +0,0 @@ -Microsoft.TestPlatform.ObjectModel [17.13.0](https://www.nuget.org/packages/Microsoft.TestPlatform.ObjectModel/17.13.0) --------------------- - -Used by: ClientDI internal, Core internal, DesignTime internal, Emit internal, SelfHost internal - -Target frameworks: net10.0, net481, net8.0, net9.0 - -License: [MIT](../../../../licenses/mit) - -- package license: [MIT](https://licenses.nuget.org/MIT) -- repository license: [MIT](https://github.com/microsoft/vstest) -- project license: [MIT](https://github.com/microsoft/vstest) - -Description ------------ -The Microsoft Test Platform Object Model. - -Dependencies 2 ------------ - -|Name|Version| -|----------|:----| -|[System.Reflection.Metadata](../../../../packages/nuget.org/system.reflection.metadata/1.6.0)|1.6.0| -|[System.Reflection.Metadata](../../../../packages/nuget.org/system.reflection.metadata/5.0.0)|5.0.0| - -*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/0.12.4-rc/index.json b/Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/1.0.11/index.json similarity index 97% rename from Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/0.12.4-rc/index.json rename to Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/1.0.11/index.json index 7b822b96..bfdf7206 100644 --- a/Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/0.12.4-rc/index.json +++ b/Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/1.0.11/index.json @@ -26,7 +26,7 @@ }, { "Name": "PolyType", - "Version": "1.0.0-rc.9" + "Version": "1.0.0" }, { "Name": "System.IO.Pipelines", diff --git a/Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/0.12.4-rc/package.nuspec b/Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/1.0.11/package.nuspec similarity index 87% rename from Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/0.12.4-rc/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/1.0.11/package.nuspec index a764a689..973f4a20 100644 --- a/Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/0.12.4-rc/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/1.0.11/package.nuspec @@ -2,7 +2,7 @@ Nerdbank.MessagePack - 0.12.4-rc + 1.0.11 Andrew Arnott MIT https://licenses.nuget.org/MIT @@ -14,16 +14,16 @@ Premium support for trimming and Native AOT, secure deserialization of untrusted data, async serialization, streaming deserialization, skip serializing of default values, reference preservation, and support for reference cycles. Also features an automatic structural equality API. - https://github.com/AArnott/Nerdbank.MessagePack/releases/tag/v0.12.4-rc + https://github.com/AArnott/Nerdbank.MessagePack/releases/tag/v1.0.11 © Andrew Arnott. All rights reserved. MsgPack MessagePack Serialization Serializer Unity structural-equality secure-hash - + - + @@ -31,19 +31,19 @@ Also features an automatic structural equality API. - + - + - + diff --git a/Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/0.12.4-rc/readme.md b/Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/1.0.11/readme.md similarity index 88% rename from Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/0.12.4-rc/readme.md rename to Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/1.0.11/readme.md index 3f7094ed..315d7d58 100644 --- a/Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/0.12.4-rc/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/1.0.11/readme.md @@ -1,4 +1,4 @@ -Nerdbank.MessagePack [0.12.4-rc](https://www.nuget.org/packages/Nerdbank.MessagePack/0.12.4-rc) +Nerdbank.MessagePack [1.0.11](https://www.nuget.org/packages/Nerdbank.MessagePack/1.0.11) -------------------- Used by: NerdbankMessagePack @@ -26,7 +26,7 @@ Dependencies 4 |----------|:----| |[Microsoft.NET.StringTools](../../../../packages/nuget.org/microsoft.net.stringtools/18.0.2)|18.0.2| |[Microsoft.VisualStudio.Validation](../../../../packages/nuget.org/microsoft.visualstudio.validation/17.13.22)|17.13.22| -|[PolyType](../../../../packages/nuget.org/polytype/1.0.0-rc.9)|1.0.0-rc.9| +|[PolyType](../../../../packages/nuget.org/polytype/1.0.0)|1.0.0| |[System.IO.Pipelines](../../../../packages/nuget.org/system.io.pipelines/8.0.0)|8.0.0| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/0.12.4-rc/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/1.0.11/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/0.12.4-rc/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/1.0.11/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/5.2.0/index.json b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/6.0.1/index.json similarity index 87% rename from Build/third-party-libraries/packages/nuget.org/nunit3testadapter/5.2.0/index.json rename to Build/third-party-libraries/packages/nuget.org/nunit3testadapter/6.0.1/index.json index f0d67a8a..cd06d24e 100644 --- a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/5.2.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/6.0.1/index.json @@ -17,11 +17,11 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Extensions.VSTestBridge", - "Version": "1.9.0" + "Version": "2.0.2" }, { "Name": "Microsoft.Testing.Platform.MSBuild", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -36,11 +36,11 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Extensions.VSTestBridge", - "Version": "1.9.0" + "Version": "2.0.2" }, { "Name": "Microsoft.Testing.Platform.MSBuild", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -55,11 +55,11 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Extensions.VSTestBridge", - "Version": "1.9.0" + "Version": "2.0.2" }, { "Name": "Microsoft.Testing.Platform.MSBuild", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -75,11 +75,11 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Extensions.VSTestBridge", - "Version": "1.9.0" + "Version": "2.0.2" }, { "Name": "Microsoft.Testing.Platform.MSBuild", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -95,11 +95,11 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Extensions.VSTestBridge", - "Version": "1.9.0" + "Version": "2.0.2" }, { "Name": "Microsoft.Testing.Platform.MSBuild", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -115,11 +115,11 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Extensions.VSTestBridge", - "Version": "1.9.0" + "Version": "2.0.2" }, { "Name": "Microsoft.Testing.Platform.MSBuild", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -135,11 +135,11 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Extensions.VSTestBridge", - "Version": "1.9.0" + "Version": "2.0.2" }, { "Name": "Microsoft.Testing.Platform.MSBuild", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -154,11 +154,11 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Extensions.VSTestBridge", - "Version": "1.9.0" + "Version": "2.0.2" }, { "Name": "Microsoft.Testing.Platform.MSBuild", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -173,11 +173,11 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Extensions.VSTestBridge", - "Version": "1.9.0" + "Version": "2.0.2" }, { "Name": "Microsoft.Testing.Platform.MSBuild", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -192,11 +192,11 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Extensions.VSTestBridge", - "Version": "1.9.0" + "Version": "2.0.2" }, { "Name": "Microsoft.Testing.Platform.MSBuild", - "Version": "1.9.0" + "Version": "2.0.2" } ] }, @@ -212,11 +212,11 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Extensions.VSTestBridge", - "Version": "1.9.0" + "Version": "2.0.2" }, { "Name": "Microsoft.Testing.Platform.MSBuild", - "Version": "1.9.0" + "Version": "2.0.2" } ] } diff --git a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/5.2.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/6.0.1/package.nuspec similarity index 82% rename from Build/third-party-libraries/packages/nuget.org/nunit3testadapter/5.2.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/nunit3testadapter/6.0.1/package.nuspec index 27b18bc0..97068701 100644 --- a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/5.2.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/6.0.1/package.nuspec @@ -2,7 +2,7 @@ NUnit3TestAdapter - 5.2.0 + 6.0.1 NUnit3 Test Adapter for Visual Studio and DotNet Charlie Poole, Terje Sandstrom false @@ -11,24 +11,24 @@ nunit_256.png docs\README.md https://docs.nunit.org/articles/vs-test-adapter/Index.html - The NUnit3 TestAdapter for Visual Studio, all versions from 2012 and onwards, and DotNet (incl. .Net core), versions .net framework 4.6.2 or higher, .net core 3.1, .net 5 or higher. + The NUnit3 TestAdapter for Visual Studio, all versions from 2012 and onwards, and DotNet (incl. .Net core), versions .net framework 4.6.2 or higher, .net 8 or higher. Note that this package ONLY contains the adapter, not the NUnit framework. For VS 2017 and forward, you should add this package to every test project in your solution. (Earlier versions only require a single adapter package per solution.) - NUnit3 adapter for running tests in Visual Studio and DotNet. Works with NUnit 3.x, use the NUnit 2 adapter for 2.x tests. + NUnit3 adapter for running tests in Visual Studio and DotNet. See https://docs.nunit.org/articles/vs-test-adapter/Adapter-Release-Notes.html - Copyright (c) 2011-2021 Charlie Poole, 2014-2025 Terje Sandstrom + Copyright (c) 2011-2021 Charlie Poole, 2014-2026 Terje Sandstrom en-US test visualstudio testadapter nunit nunit3 dotnet - - + + - - - + + + diff --git a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/5.2.0/readme.md b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/6.0.1/readme.md similarity index 82% rename from Build/third-party-libraries/packages/nuget.org/nunit3testadapter/5.2.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/nunit3testadapter/6.0.1/readme.md index 7cd955f0..88f0b2a1 100644 --- a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/5.2.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/6.0.1/readme.md @@ -1,4 +1,4 @@ -NUnit3TestAdapter [5.2.0](https://www.nuget.org/packages/NUnit3TestAdapter/5.2.0) +NUnit3TestAdapter [6.0.1](https://www.nuget.org/packages/NUnit3TestAdapter/6.0.1) -------------------- Used by: AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal @@ -13,7 +13,7 @@ License: [MIT](../../../../licenses/mit) Description ----------- -The NUnit3 TestAdapter for Visual Studio, all versions from 2012 and onwards, and DotNet (incl. .Net core), versions .net framework 4.6.2 or higher, .net core 3.1, .net 5 or higher. +The NUnit3 TestAdapter for Visual Studio, all versions from 2012 and onwards, and DotNet (incl. .Net core), versions .net framework 4.6.2 or higher, .net 8 or higher. Note that this package ONLY contains the adapter, not the NUnit framework. For VS 2017 and forward, you should add this package to every test project in your solution. (Earlier versions only require a single adapter package per solution.) @@ -23,7 +23,7 @@ Dependencies 2 |Name|Version| |----------|:----| -|[Microsoft.Testing.Extensions.VSTestBridge](../../../../packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.9.0)|1.9.0| -|[Microsoft.Testing.Platform.MSBuild](../../../../packages/nuget.org/microsoft.testing.platform.msbuild/1.9.0)|1.9.0| +|[Microsoft.Testing.Extensions.VSTestBridge](../../../../packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.0.2)|2.0.2| +|[Microsoft.Testing.Platform.MSBuild](../../../../packages/nuget.org/microsoft.testing.platform.msbuild/2.0.2)|2.0.2| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/5.2.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/6.0.1/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/nunit3testadapter/5.2.0/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/nunit3testadapter/6.0.1/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/polytype/1.0.0-rc.9/index.json b/Build/third-party-libraries/packages/nuget.org/polytype/1.0.0/index.json similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/polytype/1.0.0-rc.9/index.json rename to Build/third-party-libraries/packages/nuget.org/polytype/1.0.0/index.json diff --git a/Build/third-party-libraries/packages/nuget.org/polytype/1.0.0-rc.9/package.nuspec b/Build/third-party-libraries/packages/nuget.org/polytype/1.0.0/package.nuspec similarity index 93% rename from Build/third-party-libraries/packages/nuget.org/polytype/1.0.0-rc.9/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/polytype/1.0.0/package.nuspec index 2af45472..58ee2fad 100644 --- a/Build/third-party-libraries/packages/nuget.org/polytype/1.0.0-rc.9/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/polytype/1.0.0/package.nuspec @@ -2,7 +2,7 @@ PolyType - 1.0.0-rc.9 + 1.0.0 Eirik Tsarpalis MIT https://licenses.nuget.org/MIT @@ -10,10 +10,10 @@ README.md https://eiriktsarpalis.github.io/PolyType/ Practical generic programming for C# - https://github.com/eiriktsarpalis/PolyType/releases/tag/v1.0.0-rc.9 + https://github.com/eiriktsarpalis/PolyType/releases/tag/v1.0.0 2024 generic programming, source generator, polytypic - + diff --git a/Build/third-party-libraries/packages/nuget.org/polytype/1.0.0-rc.9/readme.md b/Build/third-party-libraries/packages/nuget.org/polytype/1.0.0/readme.md similarity index 85% rename from Build/third-party-libraries/packages/nuget.org/polytype/1.0.0-rc.9/readme.md rename to Build/third-party-libraries/packages/nuget.org/polytype/1.0.0/readme.md index 454ab564..6a40bfbf 100644 --- a/Build/third-party-libraries/packages/nuget.org/polytype/1.0.0-rc.9/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/polytype/1.0.0/readme.md @@ -1,4 +1,4 @@ -PolyType [1.0.0-rc.9](https://www.nuget.org/packages/PolyType/1.0.0-rc.9) +PolyType [1.0.0](https://www.nuget.org/packages/PolyType/1.0.0) -------------------- Used by: NerdbankMessagePack diff --git a/Build/third-party-libraries/packages/nuget.org/polytype/1.0.0-rc.9/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/polytype/1.0.0/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/polytype/1.0.0-rc.9/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/polytype/1.0.0/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.annotations/10.0.1/index.json b/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.annotations/10.1.0/index.json similarity index 96% rename from Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.annotations/10.0.1/index.json rename to Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.annotations/10.1.0/index.json index 9fe282bf..6d4cb166 100644 --- a/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.annotations/10.0.1/index.json +++ b/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.annotations/10.1.0/index.json @@ -17,7 +17,7 @@ "Dependencies": [ { "Name": "Swashbuckle.AspNetCore.SwaggerGen", - "Version": "10.0.1" + "Version": "10.1.0" } ] } diff --git a/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.annotations/10.0.1/package.nuspec b/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.annotations/10.1.0/package.nuspec similarity index 85% rename from Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.annotations/10.0.1/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.annotations/10.1.0/package.nuspec index ea6c987a..ed3709fe 100644 --- a/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.annotations/10.0.1/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.annotations/10.1.0/package.nuspec @@ -2,7 +2,7 @@ Swashbuckle.AspNetCore.Annotations - 10.0.1 + 10.1.0 domaindrivendev MIT https://licenses.nuget.org/MIT @@ -12,16 +12,16 @@ See https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases for details. Copyright (c) 2016-2025 Richard Morris swagger openapi documentation discovery help webapi aspnet aspnetcore annotations - + - + - + - + diff --git a/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.annotations/10.0.1/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.annotations/10.1.0/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.annotations/10.0.1/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.annotations/10.1.0/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.annotations/10.0.1/readme.md b/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.annotations/10.1.0/readme.md similarity index 79% rename from Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.annotations/10.0.1/readme.md rename to Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.annotations/10.1.0/readme.md index 235aef63..e745bc80 100644 --- a/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.annotations/10.0.1/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.annotations/10.1.0/readme.md @@ -1,4 +1,4 @@ -Swashbuckle.AspNetCore.Annotations [10.0.1](https://www.nuget.org/packages/Swashbuckle.AspNetCore.Annotations/10.0.1) +Swashbuckle.AspNetCore.Annotations [10.1.0](https://www.nuget.org/packages/Swashbuckle.AspNetCore.Annotations/10.1.0) -------------------- Used by: AspNetCoreSwashbuckle internal @@ -20,6 +20,6 @@ Dependencies 1 |Name|Version| |----------|:----| -|[Swashbuckle.AspNetCore.SwaggerGen](../../../../packages/nuget.org/swashbuckle.aspnetcore.swaggergen/10.0.1)|10.0.1| +|[Swashbuckle.AspNetCore.SwaggerGen](../../../../packages/nuget.org/swashbuckle.aspnetcore.swaggergen/10.1.0)|10.1.0| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.annotations/10.0.1/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.annotations/10.1.0/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.annotations/10.0.1/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.annotations/10.1.0/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swagger/10.0.1/index.json b/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swagger/10.1.0/index.json similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swagger/10.0.1/index.json rename to Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swagger/10.1.0/index.json diff --git a/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swagger/10.0.1/package.nuspec b/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swagger/10.1.0/package.nuspec similarity index 93% rename from Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swagger/10.0.1/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swagger/10.1.0/package.nuspec index 95633750..602da278 100644 --- a/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swagger/10.0.1/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swagger/10.1.0/package.nuspec @@ -2,7 +2,7 @@ Swashbuckle.AspNetCore.Swagger - 10.0.1 + 10.1.0 domaindrivendev MIT https://licenses.nuget.org/MIT @@ -12,7 +12,7 @@ See https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases for details. Copyright (c) 2016-2025 Richard Morris swagger openapi documentation discovery help webapi aspnet aspnetcore - + diff --git a/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swagger/10.0.1/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swagger/10.1.0/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swagger/10.0.1/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swagger/10.1.0/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swagger/10.0.1/readme.md b/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swagger/10.1.0/readme.md similarity index 85% rename from Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swagger/10.0.1/readme.md rename to Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swagger/10.1.0/readme.md index 28285625..c153415c 100644 --- a/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swagger/10.0.1/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swagger/10.1.0/readme.md @@ -1,4 +1,4 @@ -Swashbuckle.AspNetCore.Swagger [10.0.1](https://www.nuget.org/packages/Swashbuckle.AspNetCore.Swagger/10.0.1) +Swashbuckle.AspNetCore.Swagger [10.1.0](https://www.nuget.org/packages/Swashbuckle.AspNetCore.Swagger/10.1.0) -------------------- Used by: AspNetCoreSwashbuckle diff --git a/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swagger/10.0.1/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swagger/10.1.0/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swagger/10.0.1/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swagger/10.1.0/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggergen/10.0.1/index.json b/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggergen/10.1.0/index.json similarity index 96% rename from Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggergen/10.0.1/index.json rename to Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggergen/10.1.0/index.json index e9f4284f..16dc3f3b 100644 --- a/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggergen/10.0.1/index.json +++ b/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggergen/10.1.0/index.json @@ -17,7 +17,7 @@ "Dependencies": [ { "Name": "Swashbuckle.AspNetCore.Swagger", - "Version": "10.0.1" + "Version": "10.1.0" } ] } diff --git a/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggergen/10.0.1/package.nuspec b/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggergen/10.1.0/package.nuspec similarity index 84% rename from Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggergen/10.0.1/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggergen/10.1.0/package.nuspec index 7d547e93..6ec8d412 100644 --- a/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggergen/10.0.1/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggergen/10.1.0/package.nuspec @@ -2,7 +2,7 @@ Swashbuckle.AspNetCore.SwaggerGen - 10.0.1 + 10.1.0 domaindrivendev MIT https://licenses.nuget.org/MIT @@ -12,16 +12,16 @@ See https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases for details. Copyright (c) 2016-2025 Richard Morris swagger openapi documentation discovery help webapi aspnet aspnetcore - + - + - + - + diff --git a/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggergen/10.0.1/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggergen/10.1.0/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggergen/10.0.1/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggergen/10.1.0/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggergen/10.0.1/readme.md b/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggergen/10.1.0/readme.md similarity index 78% rename from Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggergen/10.0.1/readme.md rename to Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggergen/10.1.0/readme.md index cdb2db1d..a8c1a15a 100644 --- a/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggergen/10.0.1/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggergen/10.1.0/readme.md @@ -1,4 +1,4 @@ -Swashbuckle.AspNetCore.SwaggerGen [10.0.1](https://www.nuget.org/packages/Swashbuckle.AspNetCore.SwaggerGen/10.0.1) +Swashbuckle.AspNetCore.SwaggerGen [10.1.0](https://www.nuget.org/packages/Swashbuckle.AspNetCore.SwaggerGen/10.1.0) -------------------- Used by: AspNetCoreSwashbuckle @@ -20,6 +20,6 @@ Dependencies 1 |Name|Version| |----------|:----| -|[Swashbuckle.AspNetCore.Swagger](../../../../packages/nuget.org/swashbuckle.aspnetcore.swagger/10.0.1)|10.0.1| +|[Swashbuckle.AspNetCore.Swagger](../../../../packages/nuget.org/swashbuckle.aspnetcore.swagger/10.1.0)|10.1.0| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggergen/10.0.1/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggergen/10.1.0/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggergen/10.0.1/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggergen/10.1.0/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggerui/10.0.1/index.json b/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggerui/10.1.0/index.json similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggerui/10.0.1/index.json rename to Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggerui/10.1.0/index.json diff --git a/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggerui/10.0.1/package.nuspec b/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggerui/10.1.0/package.nuspec similarity index 93% rename from Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggerui/10.0.1/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggerui/10.1.0/package.nuspec index d5dfd6fa..2800b7e7 100644 --- a/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggerui/10.0.1/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggerui/10.1.0/package.nuspec @@ -2,7 +2,7 @@ Swashbuckle.AspNetCore.SwaggerUI - 10.0.1 + 10.1.0 domaindrivendev MIT https://licenses.nuget.org/MIT @@ -12,7 +12,7 @@ See https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases for details. Copyright (c) 2016-2025 Richard Morris swagger openapi documentation discovery help webapi aspnet aspnetcore swaggerui swagger-ui - + diff --git a/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggerui/10.0.1/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggerui/10.1.0/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggerui/10.0.1/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggerui/10.1.0/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggerui/10.0.1/readme.md b/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggerui/10.1.0/readme.md similarity index 82% rename from Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggerui/10.0.1/readme.md rename to Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggerui/10.1.0/readme.md index ec9327b5..472488f8 100644 --- a/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggerui/10.0.1/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggerui/10.1.0/readme.md @@ -1,4 +1,4 @@ -Swashbuckle.AspNetCore.SwaggerUI [10.0.1](https://www.nuget.org/packages/Swashbuckle.AspNetCore.SwaggerUI/10.0.1) +Swashbuckle.AspNetCore.SwaggerUI [10.1.0](https://www.nuget.org/packages/Swashbuckle.AspNetCore.SwaggerUI/10.1.0) -------------------- Used by: AspNetCoreSwashbuckle internal diff --git a/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggerui/10.0.1/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggerui/10.1.0/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggerui/10.0.1/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/swashbuckle.aspnetcore.swaggerui/10.1.0/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/1.5.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/1.5.0/index.json deleted file mode 100644 index 30918850..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/1.5.0/index.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", - "Source": "https://api.nuget.org/v3/index.json", - "License": { - "Code": "MIT", - "Status": "AutomaticallyApproved" - }, - "UsedBy": [ - { - "Name": "ClientDI", - "InternalOnly": true, - "TargetFrameworks": [ - "net10.0", - "net481", - "net8.0", - "net9.0" - ] - }, - { - "Name": "Core", - "InternalOnly": true, - "TargetFrameworks": [ - "net10.0", - "net481", - "net8.0", - "net9.0" - ] - }, - { - "Name": "Emit", - "InternalOnly": true, - "TargetFrameworks": [ - "net10.0", - "net481", - "net8.0", - "net9.0" - ] - }, - { - "Name": "SelfHost", - "InternalOnly": true, - "TargetFrameworks": [ - "net10.0", - "net481", - "net8.0", - "net9.0" - ] - } - ], - "Licenses": [ - { - "Subject": "package", - "Code": "MIT", - "HRef": "https://github.com/dotnet/corefx/blob/master/LICENSE.TXT" - }, - { - "Subject": "project", - "HRef": "https://dot.net/" - } - ] -} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/1.5.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/1.5.0/package.nuspec deleted file mode 100644 index 1b1e87e1..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/1.5.0/package.nuspec +++ /dev/null @@ -1,52 +0,0 @@ - - - - System.Collections.Immutable - 1.5.0 - System.Collections.Immutable - Microsoft - microsoft,dotnetframework - false - https://github.com/dotnet/corefx/blob/master/LICENSE.TXT - https://dot.net/ - http://go.microsoft.com/fwlink/?LinkID=288859 - This package provides collections that are thread safe and guaranteed to never change their contents, also known as immutable collections. Like strings, any methods that perform modifications will not change the existing instance but instead return a new instance. For efficiency reasons, the implementation uses a sharing mechanism to ensure that newly created instances share as much data as possible with the previous instance while ensuring that operations have a predictable time complexity. - -Commonly Used Types: -System.Collections.Immutable.ImmutableArray -System.Collections.Immutable.ImmutableArray<T> -System.Collections.Immutable.ImmutableDictionary -System.Collections.Immutable.ImmutableDictionary<TKey,TValue> -System.Collections.Immutable.ImmutableHashSet -System.Collections.Immutable.ImmutableHashSet<T> -System.Collections.Immutable.ImmutableList -System.Collections.Immutable.ImmutableList<T> -System.Collections.Immutable.ImmutableQueue -System.Collections.Immutable.ImmutableQueue<T> -System.Collections.Immutable.ImmutableSortedDictionary -System.Collections.Immutable.ImmutableSortedDictionary<TKey,TValue> -System.Collections.Immutable.ImmutableSortedSet -System.Collections.Immutable.ImmutableSortedSet<T> -System.Collections.Immutable.ImmutableStack -System.Collections.Immutable.ImmutableStack<T> - -30ab651fcb4354552bd4891619a0bdd81e0ebdbf - https://go.microsoft.com/fwlink/?LinkID=799421 - © Microsoft Corporation. All rights reserved. - true - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/1.5.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/1.5.0/readme.md deleted file mode 100644 index 70d300d9..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/1.5.0/readme.md +++ /dev/null @@ -1,37 +0,0 @@ -System.Collections.Immutable [1.5.0](https://www.nuget.org/packages/System.Collections.Immutable/1.5.0) --------------------- - -Used by: ClientDI internal, Core internal, Emit internal, SelfHost internal - -Target frameworks: net10.0, net481, net8.0, net9.0 - -License: [MIT](../../../../licenses/mit) - -- package license: [MIT](https://github.com/dotnet/corefx/blob/master/LICENSE.TXT) -- project license: [Unknown](https://dot.net/) - -Description ------------ -This package provides collections that are thread safe and guaranteed to never change their contents, also known as immutable collections. Like strings, any methods that perform modifications will not change the existing instance but instead return a new instance. For efficiency reasons, the implementation uses a sharing mechanism to ensure that newly created instances share as much data as possible with the previous instance while ensuring that operations have a predictable time complexity. - -Commonly Used Types: -System.Collections.Immutable.ImmutableArray -System.Collections.Immutable.ImmutableArray -System.Collections.Immutable.ImmutableDictionary -System.Collections.Immutable.ImmutableDictionary -System.Collections.Immutable.ImmutableHashSet -System.Collections.Immutable.ImmutableHashSet -System.Collections.Immutable.ImmutableList -System.Collections.Immutable.ImmutableList -System.Collections.Immutable.ImmutableQueue -System.Collections.Immutable.ImmutableQueue -System.Collections.Immutable.ImmutableSortedDictionary -System.Collections.Immutable.ImmutableSortedDictionary -System.Collections.Immutable.ImmutableSortedSet -System.Collections.Immutable.ImmutableSortedSet -System.Collections.Immutable.ImmutableStack -System.Collections.Immutable.ImmutableStack - -30ab651fcb4354552bd4891619a0bdd81e0ebdbf - -*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/5.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/5.0.0/index.json index f1d72663..93d8be7e 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/5.0.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/5.0.0/index.json @@ -10,20 +10,12 @@ "Name": "DesignTime", "InternalOnly": false, "TargetFrameworks": [ - "net10.0", - "net481", - "net8.0", - "net9.0", "netstandard2.0" ], "Dependencies": [ { "Name": "System.Memory", "Version": "4.5.4" - }, - { - "Name": "System.Memory", - "Version": "4.5.5" } ] } diff --git a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/5.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/5.0.0/readme.md index 78595977..e9a4bbba 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/5.0.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/5.0.0/readme.md @@ -3,7 +3,7 @@ Used by: DesignTime -Target frameworks: net10.0, net481, net8.0, net9.0, netstandard2.0 +Target frameworks: netstandard2.0 License: [MIT](../../../../licenses/mit) @@ -33,12 +33,11 @@ System.Collections.Immutable.ImmutableSortedSet System.Collections.Immutable.ImmutableStack System.Collections.Immutable.ImmutableStack -Dependencies 2 +Dependencies 1 ----------- |Name|Version| |----------|:----| |[System.Memory](../../../../packages/nuget.org/system.memory/4.5.4)|4.5.4| -|[System.Memory](../../../../packages/nuget.org/system.memory/4.5.5)|4.5.5| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/8.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/8.0.0/index.json index 37048271..b0ed8145 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/8.0.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/8.0.0/index.json @@ -6,11 +6,84 @@ "Status": "AutomaticallyApproved" }, "UsedBy": [ + { + "Name": "ClientDI", + "InternalOnly": true, + "TargetFrameworks": [ + "net10.0", + "net481", + "net8.0", + "net9.0" + ], + "Dependencies": [ + { + "Name": "System.Memory", + "Version": "4.5.5" + }, + { + "Name": "System.Runtime.CompilerServices.Unsafe", + "Version": "6.1.2" + } + ] + }, + { + "Name": "Core", + "InternalOnly": true, + "TargetFrameworks": [ + "net10.0", + "net481", + "net8.0", + "net9.0" + ], + "Dependencies": [ + { + "Name": "System.Memory", + "Version": "4.5.5" + }, + { + "Name": "System.Runtime.CompilerServices.Unsafe", + "Version": "6.0.0" + } + ] + }, { "Name": "DesignTime", "InternalOnly": true, "TargetFrameworks": [ - "net8.0" + "net10.0", + "net481", + "net8.0", + "net9.0" + ], + "Dependencies": [ + { + "Name": "System.Memory", + "Version": "4.5.5" + }, + { + "Name": "System.Runtime.CompilerServices.Unsafe", + "Version": "6.1.2" + } + ] + }, + { + "Name": "Emit", + "InternalOnly": true, + "TargetFrameworks": [ + "net10.0", + "net481", + "net8.0", + "net9.0" + ], + "Dependencies": [ + { + "Name": "System.Memory", + "Version": "4.5.5" + }, + { + "Name": "System.Runtime.CompilerServices.Unsafe", + "Version": "6.1.2" + } ] }, { @@ -52,6 +125,26 @@ "Version": "6.1.0" } ] + }, + { + "Name": "SelfHost", + "InternalOnly": true, + "TargetFrameworks": [ + "net10.0", + "net481", + "net8.0", + "net9.0" + ], + "Dependencies": [ + { + "Name": "System.Memory", + "Version": "4.5.5" + }, + { + "Name": "System.Runtime.CompilerServices.Unsafe", + "Version": "6.1.2" + } + ] } ], "Licenses": [ diff --git a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/8.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/8.0.0/readme.md index ea066b4d..396b55db 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/8.0.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/8.0.0/readme.md @@ -1,9 +1,9 @@ System.Collections.Immutable [8.0.0](https://www.nuget.org/packages/System.Collections.Immutable/8.0.0) -------------------- -Used by: DesignTime internal, MessagePack, NerdbankMessagePack +Used by: ClientDI internal, Core internal, DesignTime internal, Emit internal, MessagePack, NerdbankMessagePack, SelfHost internal -Target frameworks: net10.0, net8.0, net9.0, netstandard2.0 +Target frameworks: net10.0, net481, net8.0, net9.0, netstandard2.0 License: [MIT](../../../../licenses/mit) @@ -17,7 +17,7 @@ This package provides collections that are thread safe and guaranteed to never c The System.Collections.Immutable library is built-in as part of the shared framework in .NET Runtime. The package can be installed when you need to use it in other target frameworks. -Dependencies 4 +Dependencies 5 ----------- |Name|Version| @@ -26,5 +26,6 @@ Dependencies 4 |[System.Memory](../../../../packages/nuget.org/system.memory/4.6.0)|4.6.0| |[System.Runtime.CompilerServices.Unsafe](../../../../packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0)|6.0.0| |[System.Runtime.CompilerServices.Unsafe](../../../../packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.0)|6.1.0| +|[System.Runtime.CompilerServices.Unsafe](../../../../packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.2)|6.1.2| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/6.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/6.0.0/index.json index 84a51228..9f9b7ba9 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/6.0.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/6.0.0/index.json @@ -25,19 +25,6 @@ "Version": "6.0.0" } ] - }, - { - "Name": "DesignTime", - "InternalOnly": true, - "TargetFrameworks": [ - "net8.0" - ], - "Dependencies": [ - { - "Name": "System.Runtime.CompilerServices.Unsafe", - "Version": "6.0.0" - } - ] } ], "Licenses": [ diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/6.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/6.0.0/readme.md index 280e7002..7b79dcd3 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/6.0.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/6.0.0/readme.md @@ -1,7 +1,7 @@ System.Diagnostics.DiagnosticSource [6.0.0](https://www.nuget.org/packages/System.Diagnostics.DiagnosticSource/6.0.0) -------------------- -Used by: Core internal, DesignTime internal +Used by: Core internal Target frameworks: net10.0, net481, net8.0, net9.0 diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/6.0.1/index.json b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/6.0.1/index.json index 18b592fe..234c60ae 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/6.0.1/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/6.0.1/index.json @@ -6,36 +6,6 @@ "Status": "AutomaticallyApproved" }, "UsedBy": [ - { - "Name": "ClientDI", - "InternalOnly": false, - "TargetFrameworks": [ - "net10.0", - "net481", - "net8.0", - "net9.0", - "netstandard2.0", - "netstandard2.1" - ], - "Dependencies": [ - { - "Name": "System.Memory", - "Version": "4.5.4" - }, - { - "Name": "System.Memory", - "Version": "4.5.5" - }, - { - "Name": "System.Runtime.CompilerServices.Unsafe", - "Version": "6.0.0" - }, - { - "Name": "System.Runtime.CompilerServices.Unsafe", - "Version": "6.1.2" - } - ] - }, { "Name": "Core", "InternalOnly": true, diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/6.0.1/readme.md b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/6.0.1/readme.md index 31beb678..6ebebaa5 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/6.0.1/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/6.0.1/readme.md @@ -1,9 +1,9 @@ System.Diagnostics.DiagnosticSource [6.0.1](https://www.nuget.org/packages/System.Diagnostics.DiagnosticSource/6.0.1) -------------------- -Used by: ClientDI, Core internal, DesignTime internal, Emit internal, SelfHost internal +Used by: Core internal, DesignTime internal, Emit internal, SelfHost internal -Target frameworks: net10.0, net481, net8.0, net9.0, netstandard2.0, netstandard2.1 +Target frameworks: net10.0, net481, net8.0, net9.0 License: [MIT](../../../../licenses/mit) @@ -19,14 +19,12 @@ Commonly Used Types: System.Diagnostics.DiagnosticListener System.Diagnostics.DiagnosticSource -Dependencies 4 +Dependencies 2 ----------- |Name|Version| |----------|:----| -|[System.Memory](../../../../packages/nuget.org/system.memory/4.5.4)|4.5.4| |[System.Memory](../../../../packages/nuget.org/system.memory/4.5.5)|4.5.5| -|[System.Runtime.CompilerServices.Unsafe](../../../../packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0)|6.0.0| |[System.Runtime.CompilerServices.Unsafe](../../../../packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.2)|6.1.2| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.0/index.json new file mode 100644 index 00000000..0e59591f --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.0/index.json @@ -0,0 +1,59 @@ +{ + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", + "Source": "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-public/nuget/v3/index.json", + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "ClientDI", + "InternalOnly": false, + "TargetFrameworks": [ + "net10.0", + "net481", + "net8.0", + "net9.0", + "netstandard2.0", + "netstandard2.1" + ], + "Dependencies": [ + { + "Name": "System.Memory", + "Version": "4.5.5" + }, + { + "Name": "System.Runtime.CompilerServices.Unsafe", + "Version": "6.0.0" + }, + { + "Name": "System.Runtime.CompilerServices.Unsafe", + "Version": "6.1.2" + } + ] + }, + { + "Name": "DesignTime", + "InternalOnly": true, + "TargetFrameworks": [ + "net8.0" + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://licenses.nuget.org/MIT" + }, + { + "Subject": "repository", + "Code": "MIT", + "HRef": "https://github.com/dotnet/runtime" + }, + { + "Subject": "project", + "HRef": "https://dot.net/" + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.0/package-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.0/package-LICENSE.TXT new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.0/package-LICENSE.TXT @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.0/package.nuspec new file mode 100644 index 00000000..6eac9008 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.0/package.nuspec @@ -0,0 +1,36 @@ + + + + System.Diagnostics.DiagnosticSource + 8.0.0 + Microsoft + MIT + https://licenses.nuget.org/MIT + Icon.png + https://dot.net/ + Provides Classes that allow you to decouple code logging rich (unserializable) diagnostics/telemetry (e.g. framework) from code that consumes it (e.g. tools) + +Commonly Used Types: +System.Diagnostics.DiagnosticListener +System.Diagnostics.DiagnosticSource + https://go.microsoft.com/fwlink/?LinkID=799421 + © Microsoft Corporation. All rights reserved. + true + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.0/readme.md new file mode 100644 index 00000000..ef5b2b16 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.0/readme.md @@ -0,0 +1,31 @@ +System.Diagnostics.DiagnosticSource [8.0.0](https://www.nuget.org/packages/System.Diagnostics.DiagnosticSource/8.0.0) +-------------------- + +Used by: ClientDI, DesignTime internal + +Target frameworks: net10.0, net481, net8.0, net9.0, netstandard2.0, netstandard2.1 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://licenses.nuget.org/MIT) +- repository license: [MIT](https://github.com/dotnet/runtime) +- project license: [Unknown](https://dot.net/) + +Description +----------- +Provides Classes that allow you to decouple code logging rich (unserializable) diagnostics/telemetry (e.g. framework) from code that consumes it (e.g. tools) + +Commonly Used Types: +System.Diagnostics.DiagnosticListener +System.Diagnostics.DiagnosticSource + +Dependencies 3 +----------- + +|Name|Version| +|----------|:----| +|[System.Memory](../../../../packages/nuget.org/system.memory/4.5.5)|4.5.5| +|[System.Runtime.CompilerServices.Unsafe](../../../../packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0)|6.0.0| +|[System.Runtime.CompilerServices.Unsafe](../../../../packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.2)|6.1.2| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.0/repository-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.0/repository-LICENSE.TXT new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.0/repository-LICENSE.TXT @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/index.json b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/index.json index 80447707..48ec98ef 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/index.json @@ -6,31 +6,6 @@ "Status": "AutomaticallyApproved" }, "UsedBy": [ - { - "Name": "ClientDI", - "InternalOnly": false, - "TargetFrameworks": [ - "net10.0", - "net8.0", - "net9.0", - "netstandard2.0", - "netstandard2.1" - ], - "Dependencies": [ - { - "Name": "System.Buffers", - "Version": "4.5.1" - }, - { - "Name": "System.Numerics.Vectors", - "Version": "4.4.0" - }, - { - "Name": "System.Runtime.CompilerServices.Unsafe", - "Version": "6.0.0" - } - ] - }, { "Name": "DesignTime", "InternalOnly": false, diff --git a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/readme.md b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/readme.md index e8215e77..e36def5f 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/readme.md @@ -1,9 +1,9 @@ System.Memory [4.5.4](https://www.nuget.org/packages/System.Memory/4.5.4) -------------------- -Used by: ClientDI, DesignTime +Used by: DesignTime -Target frameworks: net10.0, net8.0, net9.0, netstandard2.0, netstandard2.1 +Target frameworks: netstandard2.0 License: [MIT](../../../../licenses/mit) @@ -27,7 +27,7 @@ System.Buffers.Text.Utf8Formatter 7601f4f6225089ffb291dc7d58293c7bbf5c5d4f When using NuGet 3.x this package requires at least version 3.4. -Dependencies 4 +Dependencies 3 ----------- |Name|Version| @@ -35,6 +35,5 @@ Dependencies 4 |[System.Buffers](../../../../packages/nuget.org/system.buffers/4.5.1)|4.5.1| |[System.Numerics.Vectors](../../../../packages/nuget.org/system.numerics.vectors/4.4.0)|4.4.0| |[System.Runtime.CompilerServices.Unsafe](../../../../packages/nuget.org/system.runtime.compilerservices.unsafe/5.0.0)|5.0.0| -|[System.Runtime.CompilerServices.Unsafe](../../../../packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0)|6.0.0| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.5/index.json b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.5/index.json index 8cb5eb24..f7ceeeb0 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.5/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.5/index.json @@ -8,22 +8,32 @@ "UsedBy": [ { "Name": "ClientDI", - "InternalOnly": true, + "InternalOnly": false, "TargetFrameworks": [ "net10.0", "net481", "net8.0", - "net9.0" + "net9.0", + "netstandard2.0", + "netstandard2.1" ], "Dependencies": [ { "Name": "System.Buffers", "Version": "4.5.1" }, + { + "Name": "System.Numerics.Vectors", + "Version": "4.4.0" + }, { "Name": "System.Numerics.Vectors", "Version": "4.5.0" }, + { + "Name": "System.Runtime.CompilerServices.Unsafe", + "Version": "6.0.0" + }, { "Name": "System.Runtime.CompilerServices.Unsafe", "Version": "6.1.2" diff --git a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.5/readme.md b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.5/readme.md index a4b1e54f..4a0eca80 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.5/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.5/readme.md @@ -1,7 +1,7 @@ System.Memory [4.5.5](https://www.nuget.org/packages/System.Memory/4.5.5) -------------------- -Used by: ClientDI internal, Core internal, DesignTime internal, Emit internal, MessagePack, ProtoBuf, SelfHost internal +Used by: ClientDI, Core internal, DesignTime internal, Emit internal, MessagePack, ProtoBuf, SelfHost internal Target frameworks: net10.0, net462, net481, net8.0, net9.0, netstandard2.0, netstandard2.1 diff --git a/Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/8.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/8.0.3/index.json similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/8.0.0/index.json rename to Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/8.0.3/index.json diff --git a/Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/8.0.3/package-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/8.0.3/package-LICENSE.TXT new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/8.0.3/package-LICENSE.TXT @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/8.0.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/8.0.3/package.nuspec similarity index 94% rename from Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/8.0.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/8.0.3/package.nuspec index 421180d7..9ce53272 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/8.0.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/8.0.3/package.nuspec @@ -2,7 +2,7 @@ System.Net.Http.WinHttpHandler - 8.0.0 + 8.0.3 Microsoft MIT https://licenses.nuget.org/MIT @@ -16,7 +16,7 @@ System.Net.Http.WinHttpHandler https://go.microsoft.com/fwlink/?LinkID=799421 © Microsoft Corporation. All rights reserved. true - + diff --git a/Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/8.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/8.0.3/readme.md similarity index 88% rename from Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/8.0.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/8.0.3/readme.md index 9ec39a3e..81d4c672 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/8.0.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/8.0.3/readme.md @@ -1,4 +1,4 @@ -System.Net.Http.WinHttpHandler [8.0.0](https://www.nuget.org/packages/System.Net.Http.WinHttpHandler/8.0.0) +System.Net.Http.WinHttpHandler [8.0.3](https://www.nuget.org/packages/System.Net.Http.WinHttpHandler/8.0.3) -------------------- Used by: Core internal diff --git a/Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/8.0.3/repository-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/8.0.3/repository-LICENSE.TXT new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.net.http.winhttphandler/8.0.3/repository-LICENSE.TXT @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/index.json deleted file mode 100644 index 0775fa7a..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/index.json +++ /dev/null @@ -1,86 +0,0 @@ -{ - "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", - "Source": "https://api.nuget.org/v3/index.json", - "License": { - "Code": "MIT", - "Status": "AutomaticallyApproved" - }, - "UsedBy": [ - { - "Name": "ClientDI", - "InternalOnly": true, - "TargetFrameworks": [ - "net10.0", - "net481", - "net8.0", - "net9.0" - ], - "Dependencies": [ - { - "Name": "System.Collections.Immutable", - "Version": "1.5.0" - } - ] - }, - { - "Name": "Core", - "InternalOnly": true, - "TargetFrameworks": [ - "net10.0", - "net481", - "net8.0", - "net9.0" - ], - "Dependencies": [ - { - "Name": "System.Collections.Immutable", - "Version": "1.5.0" - } - ] - }, - { - "Name": "Emit", - "InternalOnly": true, - "TargetFrameworks": [ - "net10.0", - "net481", - "net8.0", - "net9.0" - ], - "Dependencies": [ - { - "Name": "System.Collections.Immutable", - "Version": "1.5.0" - } - ] - }, - { - "Name": "SelfHost", - "InternalOnly": true, - "TargetFrameworks": [ - "net10.0", - "net481", - "net8.0", - "net9.0" - ], - "Dependencies": [ - { - "Name": "System.Collections.Immutable", - "Version": "1.5.0" - } - ] - } - ], - "Licenses": [ - { - "Subject": "package", - "Code": "MIT", - "HRef": "https://github.com/dotnet/corefx/blob/master/LICENSE.TXT" - }, - { - "Subject": "project", - "HRef": "https://dot.net/", - "Description": "License should be verified on https://dot.net/" - } - ] -} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/package.nuspec deleted file mode 100644 index eac76558..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/package.nuspec +++ /dev/null @@ -1,51 +0,0 @@ - - - - System.Reflection.Metadata - 1.6.0 - System.Reflection.Metadata - Microsoft - microsoft,dotnetframework - false - https://github.com/dotnet/corefx/blob/master/LICENSE.TXT - https://dot.net/ - http://go.microsoft.com/fwlink/?LinkID=288859 - This packages provides a low-level .NET (ECMA-335) metadata reader and writer. It's geared for performance and is the ideal choice for building higher-level libraries that intend to provide their own object model, such as compilers. - -Commonly Used Types: -System.Reflection.Metadata.MetadataReader -System.Reflection.PortableExecutable.PEReader -System.Reflection.Metadata.Ecma335.MetadataBuilder -System.Reflection.PortableExecutable.PEBuilder -System.Reflection.PortableExecutable.ManagedPEBuilder - -30ab651fcb4354552bd4891619a0bdd81e0ebdbf -When using NuGet 3.x this package requires at least version 3.4. - https://go.microsoft.com/fwlink/?LinkID=799421 - © Microsoft Corporation. All rights reserved. - true - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/readme.md deleted file mode 100644 index c39e3d3d..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/readme.md +++ /dev/null @@ -1,34 +0,0 @@ -System.Reflection.Metadata [1.6.0](https://www.nuget.org/packages/System.Reflection.Metadata/1.6.0) --------------------- - -Used by: ClientDI internal, Core internal, Emit internal, SelfHost internal - -Target frameworks: net10.0, net481, net8.0, net9.0 - -License: [MIT](../../../../licenses/mit) - -- package license: [MIT](https://github.com/dotnet/corefx/blob/master/LICENSE.TXT) -- project license: [Unknown](https://dot.net/) , License should be verified on https://dot.net/ - -Description ------------ -This packages provides a low-level .NET (ECMA-335) metadata reader and writer. It's geared for performance and is the ideal choice for building higher-level libraries that intend to provide their own object model, such as compilers. - -Commonly Used Types: -System.Reflection.Metadata.MetadataReader -System.Reflection.PortableExecutable.PEReader -System.Reflection.Metadata.Ecma335.MetadataBuilder -System.Reflection.PortableExecutable.PEBuilder -System.Reflection.PortableExecutable.ManagedPEBuilder - -30ab651fcb4354552bd4891619a0bdd81e0ebdbf -When using NuGet 3.x this package requires at least version 3.4. - -Dependencies 1 ------------ - -|Name|Version| -|----------|:----| -|[System.Collections.Immutable](../../../../packages/nuget.org/system.collections.immutable/1.5.0)|1.5.0| - -*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/5.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/5.0.0/index.json index 8eb1d196..454dcde1 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/5.0.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/5.0.0/index.json @@ -10,10 +10,6 @@ "Name": "DesignTime", "InternalOnly": false, "TargetFrameworks": [ - "net10.0", - "net481", - "net8.0", - "net9.0", "netstandard2.0" ], "Dependencies": [ diff --git a/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/5.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/5.0.0/readme.md index 3a5d1427..413d1b4d 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/5.0.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/5.0.0/readme.md @@ -3,7 +3,7 @@ Used by: DesignTime -Target frameworks: net10.0, net481, net8.0, net9.0, netstandard2.0 +Target frameworks: netstandard2.0 License: [MIT](../../../../licenses/mit) diff --git a/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/8.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/8.0.0/index.json index 10f972af..8765603e 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/8.0.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/8.0.0/index.json @@ -6,16 +6,103 @@ "Status": "AutomaticallyApproved" }, "UsedBy": [ + { + "Name": "ClientDI", + "InternalOnly": true, + "TargetFrameworks": [ + "net10.0", + "net481", + "net8.0", + "net9.0" + ], + "Dependencies": [ + { + "Name": "System.Collections.Immutable", + "Version": "8.0.0" + }, + { + "Name": "System.Memory", + "Version": "4.5.5" + } + ] + }, + { + "Name": "Core", + "InternalOnly": true, + "TargetFrameworks": [ + "net10.0", + "net481", + "net8.0", + "net9.0" + ], + "Dependencies": [ + { + "Name": "System.Collections.Immutable", + "Version": "8.0.0" + }, + { + "Name": "System.Memory", + "Version": "4.5.5" + } + ] + }, { "Name": "DesignTime", "InternalOnly": true, "TargetFrameworks": [ - "net8.0" + "net10.0", + "net481", + "net8.0", + "net9.0" ], "Dependencies": [ { "Name": "System.Collections.Immutable", "Version": "8.0.0" + }, + { + "Name": "System.Memory", + "Version": "4.5.5" + } + ] + }, + { + "Name": "Emit", + "InternalOnly": true, + "TargetFrameworks": [ + "net10.0", + "net481", + "net8.0", + "net9.0" + ], + "Dependencies": [ + { + "Name": "System.Collections.Immutable", + "Version": "8.0.0" + }, + { + "Name": "System.Memory", + "Version": "4.5.5" + } + ] + }, + { + "Name": "SelfHost", + "InternalOnly": true, + "TargetFrameworks": [ + "net10.0", + "net481", + "net8.0", + "net9.0" + ], + "Dependencies": [ + { + "Name": "System.Collections.Immutable", + "Version": "8.0.0" + }, + { + "Name": "System.Memory", + "Version": "4.5.5" } ] } diff --git a/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/8.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/8.0.0/readme.md index 8761675b..86818afa 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/8.0.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/8.0.0/readme.md @@ -1,9 +1,9 @@ System.Reflection.Metadata [8.0.0](https://www.nuget.org/packages/System.Reflection.Metadata/8.0.0) -------------------- -Used by: DesignTime internal +Used by: ClientDI internal, Core internal, DesignTime internal, Emit internal, SelfHost internal -Target frameworks: net8.0 +Target frameworks: net10.0, net481, net8.0, net9.0 License: [MIT](../../../../licenses/mit) @@ -17,11 +17,12 @@ This package provides a low-level .NET (ECMA-335) metadata reader and writer. It The System.Reflection.Metadata library is built-in as part of the shared framework in .NET Runtime. The package can be installed when you need to use it in other target frameworks. -Dependencies 1 +Dependencies 2 ----------- |Name|Version| |----------|:----| |[System.Collections.Immutable](../../../../packages/nuget.org/system.collections.immutable/8.0.0)|8.0.0| +|[System.Memory](../../../../packages/nuget.org/system.memory/4.5.5)|4.5.5| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0/index.json index 808f5295..de3ad16f 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0/index.json @@ -27,13 +27,6 @@ "net9.0" ] }, - { - "Name": "DesignTime", - "InternalOnly": true, - "TargetFrameworks": [ - "net8.0" - ] - }, { "Name": "MemoryPack", "InternalOnly": false, diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0/readme.md index 84b053de..06456a91 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0/readme.md @@ -1,7 +1,7 @@ System.Runtime.CompilerServices.Unsafe [6.0.0](https://www.nuget.org/packages/System.Runtime.CompilerServices.Unsafe/6.0.0) -------------------- -Used by: ClientDI, Core internal, DesignTime internal, MemoryPack, MessagePack, ProtoBuf +Used by: ClientDI, Core internal, MemoryPack, MessagePack, ProtoBuf Target frameworks: net10.0, net462, net481, net8.0, net9.0, netstandard2.0, netstandard2.1 diff --git a/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.1/index.json similarity index 97% rename from Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.0/index.json rename to Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.1/index.json index 46a4faf0..6464d0b1 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.1/index.json @@ -18,7 +18,7 @@ "Dependencies": [ { "Name": "Microsoft.Bcl.AsyncInterfaces", - "Version": "10.0.0" + "Version": "10.0.1" }, { "Name": "System.Threading.Tasks.Extensions", diff --git a/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.1/package.nuspec similarity index 90% rename from Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.1/package.nuspec index f2fab782..24249396 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.1/package.nuspec @@ -2,7 +2,7 @@ System.Threading.Channels - 10.0.0 + 10.0.1 Microsoft MIT https://licenses.nuget.org/MIT @@ -17,17 +17,17 @@ System.Threading.Channel<T> https://go.microsoft.com/fwlink/?LinkID=799421 © Microsoft Corporation. All rights reserved. true - + - + - + diff --git a/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.1/readme.md similarity index 83% rename from Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.1/readme.md index b0bf1e4e..cf47fc4c 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.1/readme.md @@ -1,4 +1,4 @@ -System.Threading.Channels [10.0.0](https://www.nuget.org/packages/System.Threading.Channels/10.0.0) +System.Threading.Channels [10.0.1](https://www.nuget.org/packages/System.Threading.Channels/10.0.1) -------------------- Used by: Core internal @@ -24,7 +24,7 @@ Dependencies 2 |Name|Version| |----------|:----| -|[Microsoft.Bcl.AsyncInterfaces](../../../../packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.0)|10.0.0| +|[Microsoft.Bcl.AsyncInterfaces](../../../../packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.1)|10.0.1| |[System.Threading.Tasks.Extensions](../../../../packages/nuget.org/system.threading.tasks.extensions/4.6.3)|4.6.3| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.0/repository-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.1/repository-LICENSE.TXT similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.0/repository-LICENSE.TXT rename to Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.1/repository-LICENSE.TXT diff --git a/Build/third-party-libraries/readme.md b/Build/third-party-libraries/readme.md index c45e002f..830e67be 100644 --- a/Build/third-party-libraries/readme.md +++ b/Build/third-party-libraries/readme.md @@ -7,13 +7,13 @@ Licenses |[BSD-2-Clause](licenses/bsd-2-clause)|no|no|0| |[BSD-3-Clause](licenses/bsd-3-clause)|no|no|3| |[Google.Protobuf](licenses/google.protobuf)|yes|no|0| -|[MIT](licenses/mit)|no|no|112| +|[MIT](licenses/mit)|no|no|115| |[ms-net-library](licenses/ms-net-library)|no|no|0| |[MS-PL](licenses/ms-pl)|no|no|0| -Packages 125 +Packages 128 -------- |Name|Version|Source|License|Used by| @@ -21,13 +21,13 @@ Packages 125 |[Castle.Core](packages/nuget.org/castle.core/5.1.1)|5.1.1|[nuget.org](https://www.nuget.org/packages/Castle.Core/5.1.1)|[Apache-2.0](licenses/apache-2.0)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal| |[DiffEngine](packages/nuget.org/diffengine/11.3.0)|11.3.0|[nuget.org](https://www.nuget.org/packages/DiffEngine/11.3.0)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal| |[EmptyFiles](packages/nuget.org/emptyfiles/4.4.0)|4.4.0|[nuget.org](https://www.nuget.org/packages/EmptyFiles/4.4.0)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal| -|[Google.Protobuf](packages/nuget.org/google.protobuf/3.33.1)|3.33.1|[nuget.org](https://www.nuget.org/packages/Google.Protobuf/3.33.1)|[BSD-3-Clause](licenses/bsd-3-clause)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal| -|[Grpc.AspNetCore.Server](packages/nuget.org/grpc.aspnetcore.server/2.71.0)|2.71.0|[nuget.org](https://www.nuget.org/packages/Grpc.AspNetCore.Server/2.71.0)|[Apache-2.0](licenses/apache-2.0)|AspNetCore| +|[Google.Protobuf](packages/nuget.org/google.protobuf/3.33.2)|3.33.2|[nuget.org](https://www.nuget.org/packages/Google.Protobuf/3.33.2)|[BSD-3-Clause](licenses/bsd-3-clause)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal| +|[Grpc.AspNetCore.Server](packages/nuget.org/grpc.aspnetcore.server/2.76.0)|2.76.0|[nuget.org](https://www.nuget.org/packages/Grpc.AspNetCore.Server/2.76.0)|[Apache-2.0](licenses/apache-2.0)|AspNetCore| |[Grpc.Core](packages/nuget.org/grpc.core/2.46.6)|2.46.6|[nuget.org](https://www.nuget.org/packages/Grpc.Core/2.46.6)|[Apache-2.0](licenses/apache-2.0)|Core internal, SelfHost| -|[Grpc.Core.Api](packages/nuget.org/grpc.core.api/2.71.0)|2.71.0|[nuget.org](https://www.nuget.org/packages/Grpc.Core.Api/2.71.0)|[Apache-2.0](licenses/apache-2.0)|AspNetCore, ClientDI, Core, DesignTime, SelfHost| -|[Grpc.Net.Client](packages/nuget.org/grpc.net.client/2.71.0)|2.71.0|[nuget.org](https://www.nuget.org/packages/Grpc.Net.Client/2.71.0)|[Apache-2.0](licenses/apache-2.0)|ClientDI, Core internal| -|[Grpc.Net.ClientFactory](packages/nuget.org/grpc.net.clientfactory/2.71.0)|2.71.0|[nuget.org](https://www.nuget.org/packages/Grpc.Net.ClientFactory/2.71.0)|[Apache-2.0](licenses/apache-2.0)|ClientDI| -|[Grpc.Net.Common](packages/nuget.org/grpc.net.common/2.71.0)|2.71.0|[nuget.org](https://www.nuget.org/packages/Grpc.Net.Common/2.71.0)|[Apache-2.0](licenses/apache-2.0)|AspNetCore, ClientDI, Core internal| +|[Grpc.Core.Api](packages/nuget.org/grpc.core.api/2.76.0)|2.76.0|[nuget.org](https://www.nuget.org/packages/Grpc.Core.Api/2.76.0)|[Apache-2.0](licenses/apache-2.0)|AspNetCore, ClientDI, Core, DesignTime, SelfHost| +|[Grpc.Net.Client](packages/nuget.org/grpc.net.client/2.76.0)|2.76.0|[nuget.org](https://www.nuget.org/packages/Grpc.Net.Client/2.76.0)|[Apache-2.0](licenses/apache-2.0)|ClientDI, Core internal| +|[Grpc.Net.ClientFactory](packages/nuget.org/grpc.net.clientfactory/2.76.0)|2.76.0|[nuget.org](https://www.nuget.org/packages/Grpc.Net.ClientFactory/2.76.0)|[Apache-2.0](licenses/apache-2.0)|ClientDI| +|[Grpc.Net.Common](packages/nuget.org/grpc.net.common/2.76.0)|2.76.0|[nuget.org](https://www.nuget.org/packages/Grpc.Net.Common/2.76.0)|[Apache-2.0](licenses/apache-2.0)|AspNetCore, ClientDI, Core internal| |[Grpc.Tools](packages/nuget.org/grpc.tools/2.76.0)|2.76.0|[nuget.org](https://www.nuget.org/packages/Grpc.Tools/2.76.0)|[Apache-2.0](licenses/apache-2.0)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal| |[MemoryPack](packages/nuget.org/memorypack/1.21.4)|1.21.4|[nuget.org](https://www.nuget.org/packages/MemoryPack/1.21.4)|[MIT](licenses/mit)|MemoryPack| |[MemoryPack.Core](packages/nuget.org/memorypack.core/1.21.4)|1.21.4|[nuget.org](https://www.nuget.org/packages/MemoryPack.Core/1.21.4)|[MIT](licenses/mit)|MemoryPack| @@ -36,20 +36,25 @@ Packages 125 |[Microsoft.ApplicationInsights](packages/nuget.org/microsoft.applicationinsights/2.23.0)|2.23.0|[nuget.org](https://www.nuget.org/packages/Microsoft.ApplicationInsights/2.23.0)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal| |[Microsoft.AspNetCore.Authentication.JwtBearer](packages/nuget.org/microsoft.aspnetcore.authentication.jwtbearer/8.0.22)|8.0.22|[nuget.org](https://www.nuget.org/packages/Microsoft.AspNetCore.Authentication.JwtBearer/8.0.22)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal| |[Microsoft.Bcl.AsyncInterfaces](packages/nuget.org/microsoft.bcl.asyncinterfaces/1.1.1)|1.1.1|[nuget.org](https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/1.1.1)|[MIT](licenses/mit)|Core| -|[Microsoft.Bcl.AsyncInterfaces](packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.0)|10.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/10.0.0)|[MIT](licenses/mit)|Core internal| -|[Microsoft.Bcl.AsyncInterfaces](packages/nuget.org/microsoft.bcl.asyncinterfaces/6.0.0)|6.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/6.0.0)|[MIT](licenses/mit)|ClientDI| -|[Microsoft.Bcl.AsyncInterfaces](packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/8.0.0)|[MIT](licenses/mit)|MessagePack, NerdbankMessagePack| +|[Microsoft.Bcl.AsyncInterfaces](packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.1)|10.0.1|[nuget.org](https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/10.0.1)|[MIT](licenses/mit)|Core internal| +|[Microsoft.Bcl.AsyncInterfaces](packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/8.0.0)|[MIT](licenses/mit)|ClientDI, MessagePack, NerdbankMessagePack| |[Microsoft.Bcl.HashCode](packages/nuget.org/microsoft.bcl.hashcode/6.0.0)|6.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Bcl.HashCode/6.0.0)|[MIT](licenses/mit)|NerdbankMessagePack| |[Microsoft.CodeAnalysis.Common](packages/nuget.org/microsoft.codeanalysis.common/4.0.1)|4.0.1|[nuget.org](https://www.nuget.org/packages/Microsoft.CodeAnalysis.Common/4.0.1)|[MIT](licenses/mit)|DesignTime| |[Microsoft.CodeAnalysis.CSharp](packages/nuget.org/microsoft.codeanalysis.csharp/4.0.1)|4.0.1|[nuget.org](https://www.nuget.org/packages/Microsoft.CodeAnalysis.CSharp/4.0.1)|[MIT](licenses/mit)|DesignTime| |[Microsoft.CodeCoverage](packages/nuget.org/microsoft.codecoverage/18.0.1)|18.0.1|[nuget.org](https://www.nuget.org/packages/Microsoft.CodeCoverage/18.0.1)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal| -|[Microsoft.Extensions.DependencyInjection](packages/nuget.org/microsoft.extensions.dependencyinjection/6.0.0)|6.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection/6.0.0)|[MIT](licenses/mit)|ClientDI| -|[Microsoft.Extensions.DependencyInjection.Abstractions](packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/6.0.0)|6.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0)|[MIT](licenses/mit)|ClientDI| -|[Microsoft.Extensions.Http](packages/nuget.org/microsoft.extensions.http/6.0.0)|6.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Http/6.0.0)|[MIT](licenses/mit)|ClientDI| -|[Microsoft.Extensions.Logging](packages/nuget.org/microsoft.extensions.logging/6.0.0)|6.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Logging/6.0.0)|[MIT](licenses/mit)|ClientDI| -|[Microsoft.Extensions.Logging.Abstractions](packages/nuget.org/microsoft.extensions.logging.abstractions/6.0.0)|6.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Abstractions/6.0.0)|[MIT](licenses/mit)|ClientDI, Core internal| -|[Microsoft.Extensions.Options](packages/nuget.org/microsoft.extensions.options/6.0.0)|6.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Options/6.0.0)|[MIT](licenses/mit)|ClientDI| -|[Microsoft.Extensions.Primitives](packages/nuget.org/microsoft.extensions.primitives/6.0.0)|6.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Primitives/6.0.0)|[MIT](licenses/mit)|ClientDI| +|[Microsoft.Extensions.Configuration](packages/nuget.org/microsoft.extensions.configuration/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Configuration/8.0.0)|[MIT](licenses/mit)|ClientDI| +|[Microsoft.Extensions.Configuration.Abstractions](packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Abstractions/8.0.0)|[MIT](licenses/mit)|ClientDI| +|[Microsoft.Extensions.Configuration.Binder](packages/nuget.org/microsoft.extensions.configuration.binder/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Binder/8.0.0)|[MIT](licenses/mit)|ClientDI| +|[Microsoft.Extensions.DependencyInjection](packages/nuget.org/microsoft.extensions.dependencyinjection/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection/8.0.0)|[MIT](licenses/mit)|ClientDI| +|[Microsoft.Extensions.DependencyInjection.Abstractions](packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0)|[MIT](licenses/mit)|ClientDI, Core internal| +|[Microsoft.Extensions.Diagnostics](packages/nuget.org/microsoft.extensions.diagnostics/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Diagnostics/8.0.0)|[MIT](licenses/mit)|ClientDI| +|[Microsoft.Extensions.Diagnostics.Abstractions](packages/nuget.org/microsoft.extensions.diagnostics.abstractions/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Diagnostics.Abstractions/8.0.0)|[MIT](licenses/mit)|ClientDI| +|[Microsoft.Extensions.Http](packages/nuget.org/microsoft.extensions.http/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Http/8.0.0)|[MIT](licenses/mit)|ClientDI| +|[Microsoft.Extensions.Logging](packages/nuget.org/microsoft.extensions.logging/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Logging/8.0.0)|[MIT](licenses/mit)|ClientDI| +|[Microsoft.Extensions.Logging.Abstractions](packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Abstractions/8.0.0)|[MIT](licenses/mit)|ClientDI, Core internal| +|[Microsoft.Extensions.Options](packages/nuget.org/microsoft.extensions.options/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Options/8.0.0)|[MIT](licenses/mit)|ClientDI| +|[Microsoft.Extensions.Options.ConfigurationExtensions](packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0)|[MIT](licenses/mit)|ClientDI| +|[Microsoft.Extensions.Primitives](packages/nuget.org/microsoft.extensions.primitives/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Primitives/8.0.0)|[MIT](licenses/mit)|ClientDI| |[Microsoft.IdentityModel.Abstractions](packages/nuget.org/microsoft.identitymodel.abstractions/7.1.2)|7.1.2|[nuget.org](https://www.nuget.org/packages/Microsoft.IdentityModel.Abstractions/7.1.2)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal| |[Microsoft.IdentityModel.JsonWebTokens](packages/nuget.org/microsoft.identitymodel.jsonwebtokens/7.1.2)|7.1.2|[nuget.org](https://www.nuget.org/packages/Microsoft.IdentityModel.JsonWebTokens/7.1.2)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal| |[Microsoft.IdentityModel.Logging](packages/nuget.org/microsoft.identitymodel.logging/7.1.2)|7.1.2|[nuget.org](https://www.nuget.org/packages/Microsoft.IdentityModel.Logging/7.1.2)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal| @@ -62,20 +67,19 @@ Packages 125 |[Microsoft.NETFramework.ReferenceAssemblies](packages/nuget.org/microsoft.netframework.referenceassemblies/1.0.3)|1.0.3|[nuget.org](https://www.nuget.org/packages/Microsoft.NETFramework.ReferenceAssemblies/1.0.3)|[MIT](licenses/mit)|ClientDI internal, Core, DesignTime internal, Emit, ProtoBuf, SelfHost| |[Microsoft.OpenApi](packages/nuget.org/microsoft.openapi/2.3.0)|2.3.0|[nuget.org](https://www.nuget.org/packages/Microsoft.OpenApi/2.3.0)|[MIT](licenses/mit)|AspNetCoreSwashbuckle| |[Microsoft.SourceLink.GitHub](packages/nuget.org/microsoft.sourcelink.github/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.SourceLink.GitHub/8.0.0)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, ProtoBuf internal, SelfHost internal| -|[Microsoft.Testing.Extensions.Telemetry](packages/nuget.org/microsoft.testing.extensions.telemetry/1.9.0)|1.9.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Testing.Extensions.Telemetry/1.9.0)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal| -|[Microsoft.Testing.Extensions.TrxReport.Abstractions](packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.9.0)|1.9.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Testing.Extensions.TrxReport.Abstractions/1.9.0)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal| -|[Microsoft.Testing.Extensions.VSTestBridge](packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.9.0)|1.9.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Testing.Extensions.VSTestBridge/1.9.0)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal| -|[Microsoft.Testing.Platform](packages/nuget.org/microsoft.testing.platform/1.9.0)|1.9.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Testing.Platform/1.9.0)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal| -|[Microsoft.Testing.Platform.MSBuild](packages/nuget.org/microsoft.testing.platform.msbuild/1.9.0)|1.9.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Testing.Platform.MSBuild/1.9.0)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal| -|[Microsoft.TestPlatform.AdapterUtilities](packages/nuget.org/microsoft.testplatform.adapterutilities/17.13.0)|17.13.0|[nuget.org](https://www.nuget.org/packages/Microsoft.TestPlatform.AdapterUtilities/17.13.0)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal| -|[Microsoft.TestPlatform.ObjectModel](packages/nuget.org/microsoft.testplatform.objectmodel/17.13.0)|17.13.0|[nuget.org](https://www.nuget.org/packages/Microsoft.TestPlatform.ObjectModel/17.13.0)|[MIT](licenses/mit)|ClientDI internal, Core internal, DesignTime internal, Emit internal, SelfHost internal| +|[Microsoft.Testing.Extensions.Telemetry](packages/nuget.org/microsoft.testing.extensions.telemetry/2.0.2)|2.0.2|[nuget.org](https://www.nuget.org/packages/Microsoft.Testing.Extensions.Telemetry/2.0.2)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal| +|[Microsoft.Testing.Extensions.TrxReport.Abstractions](packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.0.2)|2.0.2|[nuget.org](https://www.nuget.org/packages/Microsoft.Testing.Extensions.TrxReport.Abstractions/2.0.2)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal| +|[Microsoft.Testing.Extensions.VSTestBridge](packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.0.2)|2.0.2|[nuget.org](https://www.nuget.org/packages/Microsoft.Testing.Extensions.VSTestBridge/2.0.2)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal| +|[Microsoft.Testing.Platform](packages/nuget.org/microsoft.testing.platform/2.0.2)|2.0.2|[nuget.org](https://www.nuget.org/packages/Microsoft.Testing.Platform/2.0.2)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal| +|[Microsoft.Testing.Platform.MSBuild](packages/nuget.org/microsoft.testing.platform.msbuild/2.0.2)|2.0.2|[nuget.org](https://www.nuget.org/packages/Microsoft.Testing.Platform.MSBuild/2.0.2)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal| +|[Microsoft.TestPlatform.AdapterUtilities](packages/nuget.org/microsoft.testplatform.adapterutilities/18.0.1)|18.0.1|[nuget.org](https://www.nuget.org/packages/Microsoft.TestPlatform.AdapterUtilities/18.0.1)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal| |[Microsoft.TestPlatform.ObjectModel](packages/nuget.org/microsoft.testplatform.objectmodel/18.0.1)|18.0.1|[nuget.org](https://www.nuget.org/packages/Microsoft.TestPlatform.ObjectModel/18.0.1)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal| |[Microsoft.TestPlatform.TestHost](packages/nuget.org/microsoft.testplatform.testhost/18.0.1)|18.0.1|[nuget.org](https://www.nuget.org/packages/Microsoft.TestPlatform.TestHost/18.0.1)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal| |[Microsoft.VisualStudio.Validation](packages/nuget.org/microsoft.visualstudio.validation/17.13.22)|17.13.22|[nuget.org](https://www.nuget.org/packages/Microsoft.VisualStudio.Validation/17.13.22)|[MIT](licenses/mit)|NerdbankMessagePack| |[Mono.Reflection](packages/nuget.org/mono.reflection/2.0.0)|2.0.0|[nuget.org](https://www.nuget.org/packages/Mono.Reflection/2.0.0)|[MIT](licenses/mit)|Core internal| |[Moq](packages/nuget.org/moq/4.20.72)|4.20.72|[nuget.org](https://www.nuget.org/packages/Moq/4.20.72)|[BSD-3-Clause](licenses/bsd-3-clause)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal| |[Namotion.Reflection](packages/nuget.org/namotion.reflection/3.4.3)|3.4.3|[nuget.org](https://www.nuget.org/packages/Namotion.Reflection/3.4.3)|[MIT](licenses/mit)|AspNetCoreNSwag| -|[Nerdbank.MessagePack](packages/nuget.org/nerdbank.messagepack/0.12.4-rc)|0.12.4-rc|[nuget.org](https://www.nuget.org/packages/Nerdbank.MessagePack/0.12.4-rc)|[MIT](licenses/mit)|NerdbankMessagePack| +|[Nerdbank.MessagePack](packages/nuget.org/nerdbank.messagepack/1.0.11)|1.0.11|[nuget.org](https://www.nuget.org/packages/Nerdbank.MessagePack/1.0.11)|[MIT](licenses/mit)|NerdbankMessagePack| |[NETStandard.Library](packages/nuget.org/netstandard.library/2.0.3)|2.0.3|[nuget.org](https://www.nuget.org/packages/NETStandard.Library/2.0.3)|[MIT](licenses/mit)|ClientDI, Core, DesignTime, Emit, MessagePack, NerdbankMessagePack, ProtoBuf, SelfHost| |[Newtonsoft.Json](packages/nuget.org/newtonsoft.json/13.0.3)|13.0.3|[nuget.org](https://www.nuget.org/packages/Newtonsoft.Json/13.0.3)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal| |[NJsonSchema](packages/nuget.org/njsonschema/11.5.2)|11.5.2|[nuget.org](https://www.nuget.org/packages/NJsonSchema/11.5.2)|[MIT](licenses/mit)|AspNetCoreNSwag| @@ -89,56 +93,55 @@ Packages 125 |[NSwag.Generation](packages/nuget.org/nswag.generation/14.6.3)|14.6.3|[nuget.org](https://www.nuget.org/packages/NSwag.Generation/14.6.3)|[MIT](licenses/mit)|AspNetCoreNSwag| |[NSwag.Generation.AspNetCore](packages/nuget.org/nswag.generation.aspnetcore/14.6.3)|14.6.3|[nuget.org](https://www.nuget.org/packages/NSwag.Generation.AspNetCore/14.6.3)|[MIT](licenses/mit)|AspNetCoreNSwag| |[NUnit](packages/nuget.org/nunit/4.4.0)|4.4.0|[nuget.org](https://www.nuget.org/packages/NUnit/4.4.0)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal| -|[NUnit3TestAdapter](packages/nuget.org/nunit3testadapter/5.2.0)|5.2.0|[nuget.org](https://www.nuget.org/packages/NUnit3TestAdapter/5.2.0)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal| -|[PolyType](packages/nuget.org/polytype/1.0.0-rc.9)|1.0.0-rc.9|[nuget.org](https://www.nuget.org/packages/PolyType/1.0.0-rc.9)|[MIT](licenses/mit)|NerdbankMessagePack| +|[NUnit3TestAdapter](packages/nuget.org/nunit3testadapter/6.0.1)|6.0.1|[nuget.org](https://www.nuget.org/packages/NUnit3TestAdapter/6.0.1)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal| +|[PolyType](packages/nuget.org/polytype/1.0.0)|1.0.0|[nuget.org](https://www.nuget.org/packages/PolyType/1.0.0)|[MIT](licenses/mit)|NerdbankMessagePack| |[protobuf-net](packages/nuget.org/protobuf-net/3.2.56)|3.2.56|[nuget.org](https://www.nuget.org/packages/protobuf-net/3.2.56)|[Apache-2.0](licenses/apache-2.0)|ProtoBuf| |[protobuf-net.Core](packages/nuget.org/protobuf-net.core/3.2.56)|3.2.56|[nuget.org](https://www.nuget.org/packages/protobuf-net.Core/3.2.56)|[Apache-2.0](licenses/apache-2.0)|ProtoBuf| |[Shouldly](packages/nuget.org/shouldly/4.3.0)|4.3.0|[nuget.org](https://www.nuget.org/packages/Shouldly/4.3.0)|[BSD-3-Clause](licenses/bsd-3-clause)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal| |[StyleCop.Analyzers.Unstable](packages/nuget.org/stylecop.analyzers.unstable/1.2.0.556)|1.2.0.556|[nuget.org](https://www.nuget.org/packages/StyleCop.Analyzers.Unstable/1.2.0.556)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, ProtoBuf internal, SelfHost internal| -|[Swashbuckle.AspNetCore.Annotations](packages/nuget.org/swashbuckle.aspnetcore.annotations/10.0.1)|10.0.1|[nuget.org](https://www.nuget.org/packages/Swashbuckle.AspNetCore.Annotations/10.0.1)|[MIT](licenses/mit)|AspNetCoreSwashbuckle internal| -|[Swashbuckle.AspNetCore.Swagger](packages/nuget.org/swashbuckle.aspnetcore.swagger/10.0.1)|10.0.1|[nuget.org](https://www.nuget.org/packages/Swashbuckle.AspNetCore.Swagger/10.0.1)|[MIT](licenses/mit)|AspNetCoreSwashbuckle| -|[Swashbuckle.AspNetCore.SwaggerGen](packages/nuget.org/swashbuckle.aspnetcore.swaggergen/10.0.1)|10.0.1|[nuget.org](https://www.nuget.org/packages/Swashbuckle.AspNetCore.SwaggerGen/10.0.1)|[MIT](licenses/mit)|AspNetCoreSwashbuckle| -|[Swashbuckle.AspNetCore.SwaggerUI](packages/nuget.org/swashbuckle.aspnetcore.swaggerui/10.0.1)|10.0.1|[nuget.org](https://www.nuget.org/packages/Swashbuckle.AspNetCore.SwaggerUI/10.0.1)|[MIT](licenses/mit)|AspNetCoreSwashbuckle internal| +|[Swashbuckle.AspNetCore.Annotations](packages/nuget.org/swashbuckle.aspnetcore.annotations/10.1.0)|10.1.0|[nuget.org](https://www.nuget.org/packages/Swashbuckle.AspNetCore.Annotations/10.1.0)|[MIT](licenses/mit)|AspNetCoreSwashbuckle internal| +|[Swashbuckle.AspNetCore.Swagger](packages/nuget.org/swashbuckle.aspnetcore.swagger/10.1.0)|10.1.0|[nuget.org](https://www.nuget.org/packages/Swashbuckle.AspNetCore.Swagger/10.1.0)|[MIT](licenses/mit)|AspNetCoreSwashbuckle| +|[Swashbuckle.AspNetCore.SwaggerGen](packages/nuget.org/swashbuckle.aspnetcore.swaggergen/10.1.0)|10.1.0|[nuget.org](https://www.nuget.org/packages/Swashbuckle.AspNetCore.SwaggerGen/10.1.0)|[MIT](licenses/mit)|AspNetCoreSwashbuckle| +|[Swashbuckle.AspNetCore.SwaggerUI](packages/nuget.org/swashbuckle.aspnetcore.swaggerui/10.1.0)|10.1.0|[nuget.org](https://www.nuget.org/packages/Swashbuckle.AspNetCore.SwaggerUI/10.1.0)|[MIT](licenses/mit)|AspNetCoreSwashbuckle internal| |[System.Buffers](packages/nuget.org/system.buffers/4.4.0)|4.4.0|[nuget.org](https://www.nuget.org/packages/System.Buffers/4.4.0)|[MIT](licenses/mit)|Core, DesignTime, SelfHost| |[System.Buffers](packages/nuget.org/system.buffers/4.5.1)|4.5.1|[nuget.org](https://www.nuget.org/packages/System.Buffers/4.5.1)|[MIT](licenses/mit)|ClientDI, Core internal, DesignTime, Emit internal, MessagePack, ProtoBuf, SelfHost internal| |[System.Buffers](packages/nuget.org/system.buffers/4.6.0)|4.6.0|[nuget.org](https://www.nuget.org/packages/System.Buffers/4.6.0)|[MIT](licenses/mit)|NerdbankMessagePack| |[System.CodeDom](packages/nuget.org/system.codedom/6.0.0)|6.0.0|[nuget.org](https://www.nuget.org/packages/System.CodeDom/6.0.0)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal| -|[System.Collections.Immutable](packages/nuget.org/system.collections.immutable/1.5.0)|1.5.0|[nuget.org](https://www.nuget.org/packages/System.Collections.Immutable/1.5.0)|[MIT](licenses/mit)|ClientDI internal, Core internal, Emit internal, SelfHost internal| |[System.Collections.Immutable](packages/nuget.org/system.collections.immutable/5.0.0)|5.0.0|[nuget.org](https://www.nuget.org/packages/System.Collections.Immutable/5.0.0)|[MIT](licenses/mit)|DesignTime| |[System.Collections.Immutable](packages/nuget.org/system.collections.immutable/6.0.0)|6.0.0|[nuget.org](https://www.nuget.org/packages/System.Collections.Immutable/6.0.0)|[MIT](licenses/mit)|MemoryPack| |[System.Collections.Immutable](packages/nuget.org/system.collections.immutable/7.0.0)|7.0.0|[nuget.org](https://www.nuget.org/packages/System.Collections.Immutable/7.0.0)|[MIT](licenses/mit)|ProtoBuf| -|[System.Collections.Immutable](packages/nuget.org/system.collections.immutable/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/System.Collections.Immutable/8.0.0)|[MIT](licenses/mit)|DesignTime internal, MessagePack, NerdbankMessagePack| +|[System.Collections.Immutable](packages/nuget.org/system.collections.immutable/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/System.Collections.Immutable/8.0.0)|[MIT](licenses/mit)|ClientDI internal, Core internal, DesignTime internal, Emit internal, MessagePack, NerdbankMessagePack, SelfHost internal| |[System.ComponentModel.Annotations](packages/nuget.org/system.componentmodel.annotations/5.0.0)|5.0.0|[nuget.org](https://www.nuget.org/packages/System.ComponentModel.Annotations/5.0.0)|[MIT](licenses/mit)|ClientDI| -|[System.Diagnostics.DiagnosticSource](packages/nuget.org/system.diagnostics.diagnosticsource/6.0.0)|6.0.0|[nuget.org](https://www.nuget.org/packages/System.Diagnostics.DiagnosticSource/6.0.0)|[MIT](licenses/mit)|Core internal, DesignTime internal| -|[System.Diagnostics.DiagnosticSource](packages/nuget.org/system.diagnostics.diagnosticsource/6.0.1)|6.0.1|[nuget.org](https://www.nuget.org/packages/System.Diagnostics.DiagnosticSource/6.0.1)|[MIT](licenses/mit)|ClientDI, Core internal, DesignTime internal, Emit internal, SelfHost internal| +|[System.Diagnostics.DiagnosticSource](packages/nuget.org/system.diagnostics.diagnosticsource/6.0.0)|6.0.0|[nuget.org](https://www.nuget.org/packages/System.Diagnostics.DiagnosticSource/6.0.0)|[MIT](licenses/mit)|Core internal| +|[System.Diagnostics.DiagnosticSource](packages/nuget.org/system.diagnostics.diagnosticsource/6.0.1)|6.0.1|[nuget.org](https://www.nuget.org/packages/System.Diagnostics.DiagnosticSource/6.0.1)|[MIT](licenses/mit)|Core internal, DesignTime internal, Emit internal, SelfHost internal| +|[System.Diagnostics.DiagnosticSource](packages/nuget.org/system.diagnostics.diagnosticsource/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/System.Diagnostics.DiagnosticSource/8.0.0)|[MIT](licenses/mit)|ClientDI, DesignTime internal| |[System.Diagnostics.EventLog](packages/nuget.org/system.diagnostics.eventlog/6.0.0)|6.0.0|[nuget.org](https://www.nuget.org/packages/System.Diagnostics.EventLog/6.0.0)|[MIT](licenses/mit)|AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal| |[System.IdentityModel.Tokens.Jwt](packages/nuget.org/system.identitymodel.tokens.jwt/7.1.2)|7.1.2|[nuget.org](https://www.nuget.org/packages/System.IdentityModel.Tokens.Jwt/7.1.2)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal| |[System.IO.Pipelines](packages/nuget.org/system.io.pipelines/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/System.IO.Pipelines/8.0.0)|[MIT](licenses/mit)|NerdbankMessagePack| |[System.Management](packages/nuget.org/system.management/6.0.1)|6.0.1|[nuget.org](https://www.nuget.org/packages/System.Management/6.0.1)|[MIT](licenses/mit)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal| |[System.Memory](packages/nuget.org/system.memory/4.5.3)|4.5.3|[nuget.org](https://www.nuget.org/packages/System.Memory/4.5.3)|[MIT](licenses/mit)|Core, DesignTime, SelfHost| -|[System.Memory](packages/nuget.org/system.memory/4.5.4)|4.5.4|[nuget.org](https://www.nuget.org/packages/System.Memory/4.5.4)|[MIT](licenses/mit)|ClientDI, DesignTime| -|[System.Memory](packages/nuget.org/system.memory/4.5.5)|4.5.5|[nuget.org](https://www.nuget.org/packages/System.Memory/4.5.5)|[MIT](licenses/mit)|ClientDI internal, Core internal, DesignTime internal, Emit internal, MessagePack, ProtoBuf, SelfHost internal| +|[System.Memory](packages/nuget.org/system.memory/4.5.4)|4.5.4|[nuget.org](https://www.nuget.org/packages/System.Memory/4.5.4)|[MIT](licenses/mit)|DesignTime| +|[System.Memory](packages/nuget.org/system.memory/4.5.5)|4.5.5|[nuget.org](https://www.nuget.org/packages/System.Memory/4.5.5)|[MIT](licenses/mit)|ClientDI, Core internal, DesignTime internal, Emit internal, MessagePack, ProtoBuf, SelfHost internal| |[System.Memory](packages/nuget.org/system.memory/4.6.0)|4.6.0|[nuget.org](https://www.nuget.org/packages/System.Memory/4.6.0)|[MIT](licenses/mit)|NerdbankMessagePack| -|[System.Net.Http.WinHttpHandler](packages/nuget.org/system.net.http.winhttphandler/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/System.Net.Http.WinHttpHandler/8.0.0)|[MIT](licenses/mit)|Core internal| +|[System.Net.Http.WinHttpHandler](packages/nuget.org/system.net.http.winhttphandler/8.0.3)|8.0.3|[nuget.org](https://www.nuget.org/packages/System.Net.Http.WinHttpHandler/8.0.3)|[MIT](licenses/mit)|Core internal| |[System.Numerics.Vectors](packages/nuget.org/system.numerics.vectors/4.4.0)|4.4.0|[nuget.org](https://www.nuget.org/packages/System.Numerics.Vectors/4.4.0)|[MIT](licenses/mit)|ClientDI, Core, DesignTime, MessagePack, ProtoBuf, SelfHost| |[System.Numerics.Vectors](packages/nuget.org/system.numerics.vectors/4.5.0)|4.5.0|[nuget.org](https://www.nuget.org/packages/System.Numerics.Vectors/4.5.0)|[MIT](licenses/mit)|ClientDI internal, Core internal, DesignTime internal, Emit internal, ProtoBuf, SelfHost internal| |[System.Numerics.Vectors](packages/nuget.org/system.numerics.vectors/4.6.0)|4.6.0|[nuget.org](https://www.nuget.org/packages/System.Numerics.Vectors/4.6.0)|[MIT](licenses/mit)|NerdbankMessagePack| |[System.Reflection.Emit](packages/nuget.org/system.reflection.emit/4.7.0)|4.7.0|[nuget.org](https://www.nuget.org/packages/System.Reflection.Emit/4.7.0)|[MIT](licenses/mit)|Emit, MessagePack, ProtoBuf| |[System.Reflection.Emit.ILGeneration](packages/nuget.org/system.reflection.emit.ilgeneration/4.7.0)|4.7.0|[nuget.org](https://www.nuget.org/packages/System.Reflection.Emit.ILGeneration/4.7.0)|[MIT](licenses/mit)|Emit, MessagePack, NerdbankMessagePack, ProtoBuf| |[System.Reflection.Emit.Lightweight](packages/nuget.org/system.reflection.emit.lightweight/4.7.0)|4.7.0|[nuget.org](https://www.nuget.org/packages/System.Reflection.Emit.Lightweight/4.7.0)|[MIT](licenses/mit)|MessagePack, NerdbankMessagePack, ProtoBuf| -|[System.Reflection.Metadata](packages/nuget.org/system.reflection.metadata/1.6.0)|1.6.0|[nuget.org](https://www.nuget.org/packages/System.Reflection.Metadata/1.6.0)|[MIT](licenses/mit)|ClientDI internal, Core internal, Emit internal, SelfHost internal| |[System.Reflection.Metadata](packages/nuget.org/system.reflection.metadata/5.0.0)|5.0.0|[nuget.org](https://www.nuget.org/packages/System.Reflection.Metadata/5.0.0)|[MIT](licenses/mit)|DesignTime| -|[System.Reflection.Metadata](packages/nuget.org/system.reflection.metadata/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/System.Reflection.Metadata/8.0.0)|[MIT](licenses/mit)|DesignTime internal| +|[System.Reflection.Metadata](packages/nuget.org/system.reflection.metadata/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/System.Reflection.Metadata/8.0.0)|[MIT](licenses/mit)|ClientDI internal, Core internal, DesignTime internal, Emit internal, SelfHost internal| |[System.Runtime.CompilerServices.Unsafe](packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.2)|4.5.2|[nuget.org](https://www.nuget.org/packages/System.Runtime.CompilerServices.Unsafe/4.5.2)|[MIT](licenses/mit)|SelfHost| |[System.Runtime.CompilerServices.Unsafe](packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3)|4.5.3|[nuget.org](https://www.nuget.org/packages/System.Runtime.CompilerServices.Unsafe/4.5.3)|[MIT](licenses/mit)|Core, DesignTime, SelfHost| |[System.Runtime.CompilerServices.Unsafe](packages/nuget.org/system.runtime.compilerservices.unsafe/5.0.0)|5.0.0|[nuget.org](https://www.nuget.org/packages/System.Runtime.CompilerServices.Unsafe/5.0.0)|[MIT](licenses/mit)|DesignTime| -|[System.Runtime.CompilerServices.Unsafe](packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0)|6.0.0|[nuget.org](https://www.nuget.org/packages/System.Runtime.CompilerServices.Unsafe/6.0.0)|[MIT](licenses/mit)|ClientDI, Core internal, DesignTime internal, MemoryPack, MessagePack, ProtoBuf| +|[System.Runtime.CompilerServices.Unsafe](packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0)|6.0.0|[nuget.org](https://www.nuget.org/packages/System.Runtime.CompilerServices.Unsafe/6.0.0)|[MIT](licenses/mit)|ClientDI, Core internal, MemoryPack, MessagePack, ProtoBuf| |[System.Runtime.CompilerServices.Unsafe](packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.0)|6.1.0|[nuget.org](https://www.nuget.org/packages/System.Runtime.CompilerServices.Unsafe/6.1.0)|[MIT](licenses/mit)|NerdbankMessagePack| |[System.Runtime.CompilerServices.Unsafe](packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.2)|6.1.2|[nuget.org](https://www.nuget.org/packages/System.Runtime.CompilerServices.Unsafe/6.1.2)|[MIT](licenses/mit)|ClientDI internal, Core internal, DesignTime internal, Emit internal, SelfHost internal| |[System.Text.Encoding.CodePages](packages/nuget.org/system.text.encoding.codepages/4.5.1)|4.5.1|[nuget.org](https://www.nuget.org/packages/System.Text.Encoding.CodePages/4.5.1)|[MIT](licenses/mit)|DesignTime| |[System.Text.Encodings.Web](packages/nuget.org/system.text.encodings.web/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/System.Text.Encodings.Web/8.0.0)|[MIT](licenses/mit)|NerdbankMessagePack| |[System.Text.Json](packages/nuget.org/system.text.json/8.0.6)|8.0.6|[nuget.org](https://www.nuget.org/packages/System.Text.Json/8.0.6)|[MIT](licenses/mit)|NerdbankMessagePack| -|[System.Threading.Channels](packages/nuget.org/system.threading.channels/10.0.0)|10.0.0|[nuget.org](https://www.nuget.org/packages/System.Threading.Channels/10.0.0)|[MIT](licenses/mit)|Core internal| +|[System.Threading.Channels](packages/nuget.org/system.threading.channels/10.0.1)|10.0.1|[nuget.org](https://www.nuget.org/packages/System.Threading.Channels/10.0.1)|[MIT](licenses/mit)|Core internal| |[System.Threading.Tasks.Extensions](packages/nuget.org/system.threading.tasks.extensions/4.5.4)|4.5.4|[nuget.org](https://www.nuget.org/packages/System.Threading.Tasks.Extensions/4.5.4)|[MIT](licenses/mit)|ClientDI, Core, DesignTime, MessagePack, NerdbankMessagePack| |[System.Threading.Tasks.Extensions](packages/nuget.org/system.threading.tasks.extensions/4.6.3)|4.6.3|[nuget.org](https://www.nuget.org/packages/System.Threading.Tasks.Extensions/4.6.3)|[MIT](licenses/mit)|ClientDI internal, Core internal, DesignTime internal, Emit internal, SelfHost internal| |[System.ValueTuple](packages/nuget.org/system.valuetuple/4.5.0)|4.5.0|[nuget.org](https://www.nuget.org/packages/System.ValueTuple/4.5.0)|[MIT](licenses/mit)|ClientDI internal, Core internal, DesignTime internal, Emit internal, SelfHost internal|