diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0fb1e3351..a8aa24baa 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -25,6 +25,10 @@ jobs: steps: - uses: actions/checkout@v6 + - name: Powershell info + shell: pwsh + run: $PSVersionTable + - name: Install dependencies shell: pwsh run: ./Build/install-dependencies.ps1 @@ -33,9 +37,13 @@ jobs: shell: pwsh run: dotnet --info - - name: Build + - name: CI build + shell: pwsh + run: ./Build/invoke-ci-build.ps1 + + - name: Build artifacts shell: pwsh - run: ./Build/invoke-ci-build.ps1 "${{ secrets.GITHUB_TOKEN }}" + run: ./Build/invoke-artifacts-build.ps1 "${{ secrets.GITHUB_TOKEN }}" - name: Artifact nuget packages uses: actions/upload-artifact@v6 diff --git a/Benchmarks/Directory.Packages.props b/Benchmarks/Directory.Packages.props index b4cfc82c6..f06366e64 100644 --- a/Benchmarks/Directory.Packages.props +++ b/Benchmarks/Directory.Packages.props @@ -8,11 +8,11 @@ - - - - - + + + + + \ No newline at end of file diff --git a/Build/.config/dotnet-tools.json b/Build/.config/dotnet-tools.json index ab7052e44..16078ce6b 100644 --- a/Build/.config/dotnet-tools.json +++ b/Build/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "dotnet-ilrepack": { - "version": "2.0.44", + "version": "2.0.47", "commands": [ "ilrepack" ], diff --git a/Build/build-locally.ps1 b/Build/build-locally.ps1 index 126871992..b9727f2ba 100644 --- a/Build/build-locally.ps1 +++ b/Build/build-locally.ps1 @@ -6,6 +6,10 @@ param ( [switch] $SkipBuild, + [Parameter()] + [switch] + $SkipArtifacts, + [Parameter()] [switch] $SkipLinuxSdk, @@ -48,6 +52,10 @@ if (-not $SkipBuild) { & (Join-Path $PSScriptRoot 'invoke-ci-build.ps1') } +if (-not $SkipArtifacts) { + & (Join-Path $PSScriptRoot 'invoke-artifacts-build.ps1') +} + if (-not $SkipLinuxSdk) { $repository = Join-Path $PSScriptRoot '../' $invokeBuild = Resolve-ModulePath -Name InvokeBuild -Version (Get-ModuleVersion -Name InvokeBuild) @@ -79,7 +87,6 @@ if (-not $SkipWinSdk) { & (Join-Path $PSScriptRoot 'invoke-sdk-test.ps1') -Filter $WinSdkFilter } -# benchmarks if (-not $SkipBenchmarks) { & (Join-Path $PSScriptRoot 'invoke-benchmarks.ps1') -Configuration $BenchmarksConfiguration } \ No newline at end of file diff --git a/Build/invoke-artifacts-build.ps1 b/Build/invoke-artifacts-build.ps1 new file mode 100644 index 000000000..b07965824 --- /dev/null +++ b/Build/invoke-artifacts-build.ps1 @@ -0,0 +1,32 @@ +#Requires -Version "7.0" +#Requires -Modules @{ ModuleName="InvokeBuild"; ModuleVersion="5.14.23" } +#Requires -Modules @{ ModuleName="ThirdPartyLibraries"; ModuleVersion="3.11.0" } +#Requires -Modules @{ ModuleName="ZipAsFolder"; ModuleVersion="1.0.0" } + +[CmdletBinding()] +param ( + [Parameter()] + [string] + $GithubToken +) + +$ErrorActionPreference = 'Stop' +$ProgressPreference = 'SilentlyContinue' +Set-StrictMode -Version Latest + +. (Join-Path $PSScriptRoot 'scripts' 'Get-FullPath.ps1') +. (Join-Path $PSScriptRoot 'scripts' 'Get-NugetPath.ps1') +. (Join-Path $PSScriptRoot 'scripts' 'Get-ReleaseVersion.ps1') +. (Join-Path $PSScriptRoot 'scripts' 'Merge-DesignTimePackage.ps1') +. (Join-Path $PSScriptRoot 'scripts' 'Merge-NugetPackages.ps1') +. (Join-Path $PSScriptRoot 'scripts' 'Remove-DirectoryRecurse.ps1') +. (Join-Path $PSScriptRoot 'scripts' 'Test-NugetPackage.ps1') +. (Join-Path $PSScriptRoot 'scripts' 'Test-NugetPackageList.ps1') +. (Join-Path $PSScriptRoot 'scripts' 'Write-ThirdPartyNotices.ps1') + +Invoke-Build ` + -File (Join-Path $PSScriptRoot 'tasks' 'artifact-tasks.ps1') ` + -PathSources (Get-FullPath (Join-Path $PSScriptRoot '../Sources')) ` + -PathThirdParty (Get-FullPath (Join-Path $PSScriptRoot 'third-party-libraries')) ` + -PathBuildOut (Get-FullPath (Join-Path $PSScriptRoot '../build-out')) ` + -GithubToken $GithubToken \ No newline at end of file diff --git a/Build/invoke-ci-build.ps1 b/Build/invoke-ci-build.ps1 index a9948eb8a..685aee063 100644 --- a/Build/invoke-ci-build.ps1 +++ b/Build/invoke-ci-build.ps1 @@ -1,14 +1,5 @@ #Requires -Version "7.0" #Requires -Modules @{ ModuleName="InvokeBuild"; ModuleVersion="5.14.23" } -#Requires -Modules @{ ModuleName="ThirdPartyLibraries"; ModuleVersion="3.11.0" } -#Requires -Modules @{ ModuleName="ZipAsFolder"; ModuleVersion="1.0.0" } - -[CmdletBinding()] -param ( - [Parameter()] - [string] - $GithubToken -) $ErrorActionPreference = 'Stop' $ProgressPreference = 'SilentlyContinue' @@ -18,15 +9,9 @@ Set-StrictMode -Version Latest . (Join-Path $PSScriptRoot 'scripts' 'Get-FullPath.ps1') . (Join-Path $PSScriptRoot 'scripts' 'Get-NugetPath.ps1') . (Join-Path $PSScriptRoot 'scripts' 'Get-ReleaseVersion.ps1') -. (Join-Path $PSScriptRoot 'scripts' 'Merge-DesignTimePackage.ps1') -. (Join-Path $PSScriptRoot 'scripts' 'Merge-NugetPackages.ps1') . (Join-Path $PSScriptRoot 'scripts' 'Remove-DirectoryRecurse.ps1') -. (Join-Path $PSScriptRoot 'scripts' 'Test-NugetPackage.ps1') -. (Join-Path $PSScriptRoot 'scripts' 'Write-ThirdPartyNotices.ps1') Invoke-Build ` -File (Join-Path $PSScriptRoot 'tasks' 'ci-build-tasks.ps1') ` -PathSources (Get-FullPath (Join-Path $PSScriptRoot '../Sources')) ` - -PathThirdParty (Get-FullPath (Join-Path $PSScriptRoot 'third-party-libraries')) ` - -PathBuildOut (Get-FullPath (Join-Path $PSScriptRoot '../build-out')) ` - -GithubToken $GithubToken \ No newline at end of file + -PathBuildOut (Get-FullPath (Join-Path $PSScriptRoot '../build-out')) \ No newline at end of file diff --git a/Build/scripts/Get-ModuleVersion.ps1 b/Build/scripts/Get-ModuleVersion.ps1 index 8ed4421b6..101d5e64f 100644 --- a/Build/scripts/Get-ModuleVersion.ps1 +++ b/Build/scripts/Get-ModuleVersion.ps1 @@ -5,7 +5,7 @@ function Get-ModuleVersion { $Name ) - $sources = Get-Content (Join-Path $PSScriptRoot '../invoke-ci-build.ps1') -Raw + $sources = Get-Content (Join-Path $PSScriptRoot '../invoke-artifacts-build.ps1') -Raw $tokens = $null $errors = $null $modules = [Management.Automation.Language.Parser]::ParseInput($sources, [ref]$tokens, [ref]$errors).ScriptRequirements.RequiredModules diff --git a/Build/scripts/Test-NugetPackageList.ps1 b/Build/scripts/Test-NugetPackageList.ps1 new file mode 100644 index 000000000..d55aef8fe --- /dev/null +++ b/Build/scripts/Test-NugetPackageList.ps1 @@ -0,0 +1,24 @@ +function Test-NugetPackageList { + param ( + [Parameter(Mandatory)] + [string[]] + $Name, + + [Parameter(Mandatory)] + [ValidateScript({ Test-Path $_ -PathType Container })] + [string] + $BuildOut + ) + + $found = New-Object -TypeName System.Collections.Generic.HashSet[string] + foreach ($file in (Get-ChildItem -Path $BuildOut -Filter '*.*nupkg' -File)) { + $found.Add($file.Name) | Out-Null + } + + foreach ($expected in $Name) { + assert $found.Remove("$expected.nupkg") "$expected.nupkg not found" + assert $found.Remove("$expected.snupkg") "$expected.snupkg not found" + } + + assert (-not $found.Count) "found unxpected $($found.Count) NuGets" +} \ No newline at end of file diff --git a/Build/tasks/artifact-tasks.ps1 b/Build/tasks/artifact-tasks.ps1 new file mode 100644 index 000000000..a0ffb418b --- /dev/null +++ b/Build/tasks/artifact-tasks.ps1 @@ -0,0 +1,29 @@ +param( + [Parameter(Mandatory)] + [ValidateScript({ Test-Path $_ })] + [string] + $PathSources, + + [Parameter(Mandatory)] + [ValidateScript({ Test-Path $_ })] + [string] + $PathThirdParty, + + [Parameter(Mandatory)] + [string] + $PathBuildOut, + + [Parameter()] + [string] + $GithubToken +) + +task . ThirdPartyNotices, Pack + +task ThirdPartyNotices { + Invoke-Build -File 'task-third-party-notices.ps1' -Sources $PathSources -Repository $PathThirdParty -BuildOut $PathBuildOut -GithubToken $GithubToken +} + +task Pack { + Invoke-Build -File 'task-pack.ps1' -Sources $PathSources -BuildOut $PathBuildOut +} \ No newline at end of file diff --git a/Build/tasks/ci-build-tasks.ps1 b/Build/tasks/ci-build-tasks.ps1 index 52f193ea1..493628223 100644 --- a/Build/tasks/ci-build-tasks.ps1 +++ b/Build/tasks/ci-build-tasks.ps1 @@ -5,20 +5,11 @@ param( $PathSources, [Parameter(Mandatory)] - [ValidateScript({ Test-Path $_ })] - [string] - $PathThirdParty, - - [Parameter(Mandatory)] - [string] - $PathBuildOut, - - [Parameter()] [string] - $GithubToken + $PathBuildOut ) -task . Clean, Build, UnitTest, ThirdPartyNotices, Pack +task . Clean, Build, UnitTest task Clean { Remove-DirectoryRecurse -Path $PathBuildOut @@ -43,12 +34,4 @@ task UnitTest { ) Build-Parallel $builds -ShowParameter Framework -MaximumBuilds 4 -} - -task ThirdPartyNotices { - Invoke-Build -File 'task-third-party-notices.ps1' -Sources $PathSources -Repository $PathThirdParty -BuildOut $PathBuildOut -GithubToken $GithubToken -} - -task Pack { - Invoke-Build -File 'task-pack.ps1' -Sources $PathSources -BuildOut $PathBuildOut } \ No newline at end of file diff --git a/Build/tasks/task-pack.ps1 b/Build/tasks/task-pack.ps1 index e8f257b5d..bb89b721c 100644 --- a/Build/tasks/task-pack.ps1 +++ b/Build/tasks/task-pack.ps1 @@ -15,23 +15,30 @@ Enter-Build { $releaseVersion = Get-ReleaseVersion -Sources $Sources } -task . DotnetPack, JoinServiceModelGrpc, JoinServiceModelGrpcEmit, DesignTimeILMerge, Test +task . DotnetPack, TestDotnetPack, JoinServiceModelGrpc, JoinServiceModelGrpcEmit, DesignTimeILMerge, Test task DotnetPack { - $projects = @() - foreach ($file in (Get-ChildItem -Path $Sources -Recurse -Filter *.csproj)) { - $test = Select-Xml -Path $file -XPath 'Project/PropertyGroup/IsPackable' - if ($test -and $test.Node.InnerText -eq 'true') { - $projects += $file.FullName - } - } - - $builds = @() - foreach ($project in $projects) { - $builds += @{ File = 'task-dotnet-pack.ps1'; ProjectFile = $project; BuildOut = $BuildOut } - } + Invoke-Build -File 'task-dotnet-pack.ps1' -ProjectFile $Sources -BuildOut $BuildOut +} - Build-Parallel $builds -ShowParameter ProjectFile -MaximumBuilds 1 +task TestDotnetPack { + Test-NugetPackageList -BuildOut $BuildOut -Name ` + "ServiceModel.Grpc.$releaseVersion" ` + , "ServiceModel.Grpc.AspNetCore.$releaseVersion" ` + , "ServiceModel.Grpc.AspNetCore.NSwag.$releaseVersion" ` + , "ServiceModel.Grpc.AspNetCore.Swashbuckle.$releaseVersion" ` + , "ServiceModel.Grpc.Client.DependencyInjection.$releaseVersion" ` + , "ServiceModel.Grpc.Core.$releaseVersion" ` + , "ServiceModel.Grpc.Descriptions.$releaseVersion" ` + , "ServiceModel.Grpc.DesignTime.$releaseVersion" ` + , "ServiceModel.Grpc.Emit.$releaseVersion" ` + , "ServiceModel.Grpc.Filters.$releaseVersion" ` + , "ServiceModel.Grpc.Interceptors.$releaseVersion" ` + , "ServiceModel.Grpc.MemoryPackMarshaller.$releaseVersion" ` + , "ServiceModel.Grpc.MessagePackMarshaller.$releaseVersion" ` + , "ServiceModel.Grpc.Nerdbank.MessagePackMarshaller.$releaseVersion" ` + , "ServiceModel.Grpc.ProtoBufMarshaller.$releaseVersion" ` + , "ServiceModel.Grpc.SelfHost.$releaseVersion" } task JoinServiceModelGrpc { diff --git a/Build/third-party-libraries/packages/nuget.org/google.protobuf/3.35.1/index.json b/Build/third-party-libraries/packages/nuget.org/google.protobuf/3.36.0/index.json similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/google.protobuf/3.35.1/index.json rename to Build/third-party-libraries/packages/nuget.org/google.protobuf/3.36.0/index.json diff --git a/Build/third-party-libraries/packages/nuget.org/google.protobuf/3.35.1/package.nuspec b/Build/third-party-libraries/packages/nuget.org/google.protobuf/3.36.0/package.nuspec similarity index 63% rename from Build/third-party-libraries/packages/nuget.org/google.protobuf/3.35.1/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/google.protobuf/3.36.0/package.nuspec index c65b07805..c8b56b4e5 100644 --- a/Build/third-party-libraries/packages/nuget.org/google.protobuf/3.35.1/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/google.protobuf/3.36.0/package.nuspec @@ -2,25 +2,18 @@ Google.Protobuf - 3.35.1 + 3.36.0 Google Inc. BSD-3-Clause https://licenses.nuget.org/BSD-3-Clause https://github.com/protocolbuffers/protobuf C# runtime library for Protocol Buffers - Google's data interchange format. - C# proto3 support + C# proto 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.35.1/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/google.protobuf/3.36.0/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/google.protobuf/3.35.1/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/google.protobuf/3.36.0/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/google.protobuf/3.35.1/readme.md b/Build/third-party-libraries/packages/nuget.org/google.protobuf/3.36.0/readme.md similarity index 88% rename from Build/third-party-libraries/packages/nuget.org/google.protobuf/3.35.1/readme.md rename to Build/third-party-libraries/packages/nuget.org/google.protobuf/3.36.0/readme.md index 4c24117b7..6b176d137 100644 --- a/Build/third-party-libraries/packages/nuget.org/google.protobuf/3.35.1/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/google.protobuf/3.36.0/readme.md @@ -1,4 +1,4 @@ -Google.Protobuf [3.35.1](https://www.nuget.org/packages/Google.Protobuf/3.35.1) +Google.Protobuf [3.36.0](https://www.nuget.org/packages/Google.Protobuf/3.36.0) -------------------- Used by: AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal diff --git a/Build/third-party-libraries/packages/nuget.org/google.protobuf/3.35.1/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/google.protobuf/3.36.0/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/google.protobuf/3.35.1/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/google.protobuf/3.36.0/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.80.0/index.json b/Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.83.0/index.json similarity index 96% rename from Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.80.0/index.json rename to Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.83.0/index.json index f2481c921..6df02ed22 100644 --- a/Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.80.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.83.0/index.json @@ -17,7 +17,7 @@ "Dependencies": [ { "Name": "Grpc.Net.Common", - "Version": "2.80.0" + "Version": "2.83.0" } ] } diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.80.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.83.0/package.nuspec similarity index 82% rename from Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.80.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.83.0/package.nuspec index 14f33dcf3..34c3dcb68 100644 --- a/Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.80.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.83.0/package.nuspec @@ -2,7 +2,7 @@ Grpc.AspNetCore.Server - 2.80.0 + 2.83.0 The gRPC Authors Apache-2.0 https://licenses.nuget.org/Apache-2.0 @@ -12,16 +12,16 @@ gRPC support for ASP.NET Core Copyright 2019 The gRPC Authors gRPC RPC HTTP/2 aspnetcore - + - + - + - + diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.80.0/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.83.0/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.80.0/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.83.0/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.80.0/readme.md b/Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.83.0/readme.md similarity index 83% rename from Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.80.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.83.0/readme.md index 13614ebb6..404eba7b0 100644 --- a/Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.80.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.83.0/readme.md @@ -1,4 +1,4 @@ -Grpc.AspNetCore.Server [2.80.0](https://www.nuget.org/packages/Grpc.AspNetCore.Server/2.80.0) +Grpc.AspNetCore.Server [2.83.0](https://www.nuget.org/packages/Grpc.AspNetCore.Server/2.83.0) -------------------- Used by: AspNetCore @@ -20,6 +20,6 @@ Dependencies 1 |Name|Version| |----------|:----| -|[Grpc.Net.Common](../../../../packages/nuget.org/grpc.net.common/2.80.0)|2.80.0| +|[Grpc.Net.Common](../../../../packages/nuget.org/grpc.net.common/2.83.0)|2.83.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.80.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.83.0/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.80.0/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/grpc.aspnetcore.server/2.83.0/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.80.0/index.json b/Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.83.0/index.json similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.80.0/index.json rename to Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.83.0/index.json diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.80.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.83.0/package.nuspec similarity index 93% rename from Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.80.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.83.0/package.nuspec index bc6b044d2..f2c276963 100644 --- a/Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.80.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.83.0/package.nuspec @@ -2,7 +2,7 @@ Grpc.Core.Api - 2.80.0 + 2.83.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.80.0/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.83.0/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.80.0/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.83.0/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.80.0/readme.md b/Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.83.0/readme.md similarity index 90% rename from Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.80.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.83.0/readme.md index 3ba152f44..745c83754 100644 --- a/Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.80.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.83.0/readme.md @@ -1,4 +1,4 @@ -Grpc.Core.Api [2.80.0](https://www.nuget.org/packages/Grpc.Core.Api/2.80.0) +Grpc.Core.Api [2.83.0](https://www.nuget.org/packages/Grpc.Core.Api/2.83.0) -------------------- Used by: AspNetCore, ClientDI, Core, DesignTime, SelfHost diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.80.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.83.0/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.80.0/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/grpc.core.api/2.83.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 64fb427ea..e26c333f4 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.80.0" + "Version": "2.83.0" } ] }, @@ -33,7 +33,7 @@ "Dependencies": [ { "Name": "Grpc.Core.Api", - "Version": "2.80.0" + "Version": "2.83.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 33116da2b..665ef97c7 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.80.0)|2.80.0| +|[Grpc.Core.Api](../../../../packages/nuget.org/grpc.core.api/2.83.0)|2.83.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.80.0/index.json b/Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.83.0/index.json similarity index 96% rename from Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.80.0/index.json rename to Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.83.0/index.json index c079483b7..3ad707196 100644 --- a/Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.80.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.83.0/index.json @@ -19,7 +19,7 @@ "Dependencies": [ { "Name": "Grpc.Net.Common", - "Version": "2.80.0" + "Version": "2.83.0" }, { "Name": "Microsoft.Extensions.Logging.Abstractions", @@ -39,7 +39,7 @@ "Dependencies": [ { "Name": "Grpc.Net.Common", - "Version": "2.80.0" + "Version": "2.83.0" }, { "Name": "Microsoft.Extensions.Logging.Abstractions", diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.80.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.83.0/package.nuspec similarity index 82% rename from Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.80.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.83.0/package.nuspec index 47029dc99..f286d4ae1 100644 --- a/Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.80.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.83.0/package.nuspec @@ -2,7 +2,7 @@ Grpc.Net.Client - 2.80.0 + 2.83.0 The gRPC Authors Apache-2.0 https://licenses.nuget.org/Apache-2.0 @@ -12,33 +12,33 @@ .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.80.0/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.83.0/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.80.0/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.83.0/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.80.0/readme.md b/Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.83.0/readme.md similarity index 88% rename from Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.80.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.83.0/readme.md index 6b7f8d6cd..f215f09f8 100644 --- a/Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.80.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.83.0/readme.md @@ -1,4 +1,4 @@ -Grpc.Net.Client [2.80.0](https://www.nuget.org/packages/Grpc.Net.Client/2.80.0) +Grpc.Net.Client [2.83.0](https://www.nuget.org/packages/Grpc.Net.Client/2.83.0) -------------------- Used by: ClientDI, Core internal @@ -20,7 +20,7 @@ Dependencies 2 |Name|Version| |----------|:----| -|[Grpc.Net.Common](../../../../packages/nuget.org/grpc.net.common/2.80.0)|2.80.0| +|[Grpc.Net.Common](../../../../packages/nuget.org/grpc.net.common/2.83.0)|2.83.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.80.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.83.0/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.80.0/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/grpc.net.client/2.83.0/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.80.0/index.json b/Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.83.0/index.json similarity index 97% rename from Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.80.0/index.json rename to Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.83.0/index.json index 73ef889a0..3cf317331 100644 --- a/Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.80.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.83.0/index.json @@ -19,7 +19,7 @@ "Dependencies": [ { "Name": "Grpc.Net.Client", - "Version": "2.80.0" + "Version": "2.83.0" }, { "Name": "Microsoft.Extensions.Http", diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.80.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.83.0/package.nuspec similarity index 79% rename from Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.80.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.83.0/package.nuspec index 5709f262a..b2a840960 100644 --- a/Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.80.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.83.0/package.nuspec @@ -2,7 +2,7 @@ Grpc.Net.ClientFactory - 2.80.0 + 2.83.0 The gRPC Authors Apache-2.0 https://licenses.nuget.org/Apache-2.0 @@ -12,26 +12,26 @@ 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.80.0/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.83.0/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.80.0/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.83.0/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.80.0/readme.md b/Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.83.0/readme.md similarity index 86% rename from Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.80.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.83.0/readme.md index 4783dcb18..9ba85271e 100644 --- a/Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.80.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.83.0/readme.md @@ -1,4 +1,4 @@ -Grpc.Net.ClientFactory [2.80.0](https://www.nuget.org/packages/Grpc.Net.ClientFactory/2.80.0) +Grpc.Net.ClientFactory [2.83.0](https://www.nuget.org/packages/Grpc.Net.ClientFactory/2.83.0) -------------------- Used by: ClientDI @@ -20,7 +20,7 @@ Dependencies 2 |Name|Version| |----------|:----| -|[Grpc.Net.Client](../../../../packages/nuget.org/grpc.net.client/2.80.0)|2.80.0| +|[Grpc.Net.Client](../../../../packages/nuget.org/grpc.net.client/2.83.0)|2.83.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.80.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.83.0/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.80.0/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/grpc.net.clientfactory/2.83.0/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.80.0/index.json b/Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.83.0/index.json similarity index 94% rename from Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.80.0/index.json rename to Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.83.0/index.json index e6019eee1..54c52591b 100644 --- a/Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.80.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.83.0/index.json @@ -17,7 +17,7 @@ "Dependencies": [ { "Name": "Grpc.Core.Api", - "Version": "2.80.0" + "Version": "2.83.0" } ] }, @@ -34,7 +34,7 @@ "Dependencies": [ { "Name": "Grpc.Core.Api", - "Version": "2.80.0" + "Version": "2.83.0" } ] }, @@ -50,7 +50,7 @@ "Dependencies": [ { "Name": "Grpc.Core.Api", - "Version": "2.80.0" + "Version": "2.83.0" } ] } diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.80.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.83.0/package.nuspec similarity index 74% rename from Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.80.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.83.0/package.nuspec index b0e8b086d..0d02766f4 100644 --- a/Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.80.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.83.0/package.nuspec @@ -2,7 +2,7 @@ Grpc.Net.Common - 2.80.0 + 2.83.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.80.0/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.83.0/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.80.0/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.83.0/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.80.0/readme.md b/Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.83.0/readme.md similarity index 87% rename from Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.80.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.83.0/readme.md index e29dd47ff..c646bd5cd 100644 --- a/Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.80.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.83.0/readme.md @@ -1,4 +1,4 @@ -Grpc.Net.Common [2.80.0](https://www.nuget.org/packages/Grpc.Net.Common/2.80.0) +Grpc.Net.Common [2.83.0](https://www.nuget.org/packages/Grpc.Net.Common/2.83.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.80.0)|2.80.0| +|[Grpc.Core.Api](../../../../packages/nuget.org/grpc.core.api/2.83.0)|2.83.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.80.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.83.0/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.80.0/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/grpc.net.common/2.83.0/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.tools/2.81.1/index.json b/Build/third-party-libraries/packages/nuget.org/grpc.tools/2.83.0/index.json similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/grpc.tools/2.81.1/index.json rename to Build/third-party-libraries/packages/nuget.org/grpc.tools/2.83.0/index.json diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.tools/2.81.1/package.nuspec b/Build/third-party-libraries/packages/nuget.org/grpc.tools/2.83.0/package.nuspec similarity index 86% rename from Build/third-party-libraries/packages/nuget.org/grpc.tools/2.81.1/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/grpc.tools/2.83.0/package.nuspec index e1a4028ca..e17dfb57f 100644 --- a/Build/third-party-libraries/packages/nuget.org/grpc.tools/2.81.1/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/grpc.tools/2.83.0/package.nuspec @@ -2,7 +2,7 @@ Grpc.Tools - 2.81.1 + 2.83.0 The gRPC Authors true Apache-2.0 @@ -13,10 +13,10 @@ gRPC and Protocol Buffer compiler for C# projects Copyright 2018 The gRPC Authors gRPC RPC HTTP/2 - + - + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.tools/2.81.1/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/grpc.tools/2.83.0/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/grpc.tools/2.81.1/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/grpc.tools/2.83.0/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.tools/2.81.1/readme.md b/Build/third-party-libraries/packages/nuget.org/grpc.tools/2.83.0/readme.md similarity index 87% rename from Build/third-party-libraries/packages/nuget.org/grpc.tools/2.81.1/readme.md rename to Build/third-party-libraries/packages/nuget.org/grpc.tools/2.83.0/readme.md index 8001c1a12..ba7ab0f67 100644 --- a/Build/third-party-libraries/packages/nuget.org/grpc.tools/2.81.1/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/grpc.tools/2.83.0/readme.md @@ -1,4 +1,4 @@ -Grpc.Tools [2.81.1](https://www.nuget.org/packages/Grpc.Tools/2.81.1) +Grpc.Tools [2.83.0](https://www.nuget.org/packages/Grpc.Tools/2.83.0) -------------------- Used by: AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal diff --git a/Build/third-party-libraries/packages/nuget.org/grpc.tools/2.81.1/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/grpc.tools/2.83.0/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/grpc.tools/2.81.1/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/grpc.tools/2.83.0/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/messagepack.annotations/3.1.7/index.json b/Build/third-party-libraries/packages/nuget.org/messagepack.annotations/3.1.8/index.json similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/messagepack.annotations/3.1.7/index.json rename to Build/third-party-libraries/packages/nuget.org/messagepack.annotations/3.1.8/index.json diff --git a/Build/third-party-libraries/packages/nuget.org/messagepack.annotations/3.1.7/package.nuspec b/Build/third-party-libraries/packages/nuget.org/messagepack.annotations/3.1.8/package.nuspec similarity index 89% rename from Build/third-party-libraries/packages/nuget.org/messagepack.annotations/3.1.7/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/messagepack.annotations/3.1.8/package.nuspec index 3aa958d13..040c945e5 100644 --- a/Build/third-party-libraries/packages/nuget.org/messagepack.annotations/3.1.7/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/messagepack.annotations/3.1.8/package.nuspec @@ -2,7 +2,7 @@ MessagePack.Annotations - 3.1.7 + 3.1.8 MessagePack annotations for C# neuecc,aarnott MIT @@ -11,7 +11,7 @@ Attributes and interfaces for .NET types serializable with MessagePack. © Yoshifumi Kawai and contributors. All rights reserved. MsgPack MessagePack Serialization Formatter Serializer Unity Xamarin - + diff --git a/Build/third-party-libraries/packages/nuget.org/messagepack.annotations/3.1.7/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/messagepack.annotations/3.1.8/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/messagepack.annotations/3.1.7/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/messagepack.annotations/3.1.8/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/messagepack.annotations/3.1.7/readme.md b/Build/third-party-libraries/packages/nuget.org/messagepack.annotations/3.1.8/readme.md similarity index 85% rename from Build/third-party-libraries/packages/nuget.org/messagepack.annotations/3.1.7/readme.md rename to Build/third-party-libraries/packages/nuget.org/messagepack.annotations/3.1.8/readme.md index 39c6d17c9..07a916053 100644 --- a/Build/third-party-libraries/packages/nuget.org/messagepack.annotations/3.1.7/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/messagepack.annotations/3.1.8/readme.md @@ -1,4 +1,4 @@ -MessagePack.Annotations [3.1.7](https://www.nuget.org/packages/MessagePack.Annotations/3.1.7) +MessagePack.Annotations [3.1.8](https://www.nuget.org/packages/MessagePack.Annotations/3.1.8) -------------------- Used by: MessagePack diff --git a/Build/third-party-libraries/packages/nuget.org/messagepack.annotations/3.1.7/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/messagepack.annotations/3.1.8/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/messagepack.annotations/3.1.7/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/messagepack.annotations/3.1.8/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/messagepack/3.1.7/index.json b/Build/third-party-libraries/packages/nuget.org/messagepack/3.1.8/index.json similarity index 97% rename from Build/third-party-libraries/packages/nuget.org/messagepack/3.1.7/index.json rename to Build/third-party-libraries/packages/nuget.org/messagepack/3.1.8/index.json index f16fb1657..f5a3d52a9 100644 --- a/Build/third-party-libraries/packages/nuget.org/messagepack/3.1.7/index.json +++ b/Build/third-party-libraries/packages/nuget.org/messagepack/3.1.8/index.json @@ -18,7 +18,7 @@ "Dependencies": [ { "Name": "MessagePack.Annotations", - "Version": "3.1.7" + "Version": "3.1.8" }, { "Name": "Microsoft.NET.StringTools", diff --git a/Build/third-party-libraries/packages/nuget.org/messagepack/3.1.7/package.nuspec b/Build/third-party-libraries/packages/nuget.org/messagepack/3.1.8/package.nuspec similarity index 81% rename from Build/third-party-libraries/packages/nuget.org/messagepack/3.1.7/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/messagepack/3.1.8/package.nuspec index eb8523df9..360f4f261 100644 --- a/Build/third-party-libraries/packages/nuget.org/messagepack/3.1.7/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/messagepack/3.1.8/package.nuspec @@ -2,7 +2,7 @@ MessagePack - 3.1.7 + 3.1.8 MessagePack for C# neuecc,aarnott MIT @@ -11,11 +11,11 @@ Extremely Fast MessagePack(MsgPack) Serializer for C# (.NET Framework, .NET 6, Unity, Xamarin). © Yoshifumi Kawai and contributors. All rights reserved. MsgPack MessagePack Serialization Formatter Serializer Unity Xamarin - + - - + + @@ -24,18 +24,18 @@ - - + + - - + + - - + + @@ -46,8 +46,8 @@ - - + + diff --git a/Build/third-party-libraries/packages/nuget.org/messagepack/3.1.7/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/messagepack/3.1.8/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/messagepack/3.1.7/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/messagepack/3.1.8/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/messagepack/3.1.7/readme.md b/Build/third-party-libraries/packages/nuget.org/messagepack/3.1.8/readme.md similarity index 88% rename from Build/third-party-libraries/packages/nuget.org/messagepack/3.1.7/readme.md rename to Build/third-party-libraries/packages/nuget.org/messagepack/3.1.8/readme.md index 31597bc5d..40687fd06 100644 --- a/Build/third-party-libraries/packages/nuget.org/messagepack/3.1.7/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/messagepack/3.1.8/readme.md @@ -1,4 +1,4 @@ -MessagePack [3.1.7](https://www.nuget.org/packages/MessagePack/3.1.7) +MessagePack [3.1.8](https://www.nuget.org/packages/MessagePack/3.1.8) -------------------- Used by: MessagePack @@ -20,7 +20,7 @@ Dependencies 2 |Name|Version| |----------|:----| -|[MessagePack.Annotations](../../../../packages/nuget.org/messagepack.annotations/3.1.7)|3.1.7| +|[MessagePack.Annotations](../../../../packages/nuget.org/messagepack.annotations/3.1.8)|3.1.8| |[Microsoft.NET.StringTools](../../../../packages/nuget.org/microsoft.net.stringtools/17.11.4)|17.11.4| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/messagepack/3.1.7/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/messagepack/3.1.8/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/messagepack/3.1.7/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/messagepack/3.1.8/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.9/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.11/index.json similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.9/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.11/index.json diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.9/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.11/package.nuspec similarity index 93% rename from Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.9/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.11/package.nuspec index 69521f283..148a1456a 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.9/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.11/package.nuspec @@ -2,7 +2,7 @@ Microsoft.Bcl.AsyncInterfaces - 10.0.9 + 10.0.11 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.9/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.11/readme.md similarity index 86% rename from Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.9/readme.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.11/readme.md index a0a03ceb7..c7f1d0af9 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.9/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.11/readme.md @@ -1,4 +1,4 @@ -Microsoft.Bcl.AsyncInterfaces [10.0.9](https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/10.0.9) +Microsoft.Bcl.AsyncInterfaces [10.0.11](https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/10.0.11) -------------------- Used by: Core internal diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.9/repository-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.11/repository-LICENSE.TXT similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.9/repository-LICENSE.TXT rename to Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.11/repository-LICENSE.TXT diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.7.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.9.0/index.json similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.7.0/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.9.0/index.json diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.7.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.9.0/package.nuspec similarity index 75% rename from Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.7.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.9.0/package.nuspec index 60db465e4..220050f96 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.7.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.9.0/package.nuspec @@ -1,8 +1,8 @@  - + Microsoft.CodeCoverage - 18.7.0 + 18.9.0 Microsoft true MIT @@ -14,10 +14,6 @@ © Microsoft Corporation. All rights reserved. vstest visual-studio unittest testplatform mstest microsoft test testing codecoverage code-coverage true - - - - - + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.7.0/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.9.0/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.7.0/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.9.0/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.7.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.9.0/readme.md similarity index 88% rename from Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.7.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.9.0/readme.md index 31d782a0a..002563055 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.7.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.9.0/readme.md @@ -1,4 +1,4 @@ -Microsoft.CodeCoverage [18.7.0](https://www.nuget.org/packages/Microsoft.CodeCoverage/18.7.0) +Microsoft.CodeCoverage [18.9.0](https://www.nuget.org/packages/Microsoft.CodeCoverage/18.9.0) -------------------- 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.codecoverage/18.7.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.9.0/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.7.0/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.9.0/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.7.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.9.0/index.json similarity index 86% rename from Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.7.0/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.9.0/index.json index e52c90c08..16a6c3c6c 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.7.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.9.0/index.json @@ -17,11 +17,11 @@ "Dependencies": [ { "Name": "Microsoft.CodeCoverage", - "Version": "18.7.0" + "Version": "18.9.0" }, { "Name": "Microsoft.TestPlatform.TestHost", - "Version": "18.7.0" + "Version": "18.9.0" } ] }, @@ -36,11 +36,11 @@ "Dependencies": [ { "Name": "Microsoft.CodeCoverage", - "Version": "18.7.0" + "Version": "18.9.0" }, { "Name": "Microsoft.TestPlatform.TestHost", - "Version": "18.7.0" + "Version": "18.9.0" } ] }, @@ -55,11 +55,11 @@ "Dependencies": [ { "Name": "Microsoft.CodeCoverage", - "Version": "18.7.0" + "Version": "18.9.0" }, { "Name": "Microsoft.TestPlatform.TestHost", - "Version": "18.7.0" + "Version": "18.9.0" } ] }, @@ -75,11 +75,11 @@ "Dependencies": [ { "Name": "Microsoft.CodeCoverage", - "Version": "18.7.0" + "Version": "18.9.0" }, { "Name": "Microsoft.TestPlatform.TestHost", - "Version": "18.7.0" + "Version": "18.9.0" } ] }, @@ -95,11 +95,11 @@ "Dependencies": [ { "Name": "Microsoft.CodeCoverage", - "Version": "18.7.0" + "Version": "18.9.0" }, { "Name": "Microsoft.TestPlatform.TestHost", - "Version": "18.7.0" + "Version": "18.9.0" } ] }, @@ -115,11 +115,11 @@ "Dependencies": [ { "Name": "Microsoft.CodeCoverage", - "Version": "18.7.0" + "Version": "18.9.0" }, { "Name": "Microsoft.TestPlatform.TestHost", - "Version": "18.7.0" + "Version": "18.9.0" } ] }, @@ -135,11 +135,11 @@ "Dependencies": [ { "Name": "Microsoft.CodeCoverage", - "Version": "18.7.0" + "Version": "18.9.0" }, { "Name": "Microsoft.TestPlatform.TestHost", - "Version": "18.7.0" + "Version": "18.9.0" } ] }, @@ -154,11 +154,11 @@ "Dependencies": [ { "Name": "Microsoft.CodeCoverage", - "Version": "18.7.0" + "Version": "18.9.0" }, { "Name": "Microsoft.TestPlatform.TestHost", - "Version": "18.7.0" + "Version": "18.9.0" } ] }, @@ -173,11 +173,11 @@ "Dependencies": [ { "Name": "Microsoft.CodeCoverage", - "Version": "18.7.0" + "Version": "18.9.0" }, { "Name": "Microsoft.TestPlatform.TestHost", - "Version": "18.7.0" + "Version": "18.9.0" } ] }, @@ -192,11 +192,11 @@ "Dependencies": [ { "Name": "Microsoft.CodeCoverage", - "Version": "18.7.0" + "Version": "18.9.0" }, { "Name": "Microsoft.TestPlatform.TestHost", - "Version": "18.7.0" + "Version": "18.9.0" } ] }, @@ -212,11 +212,11 @@ "Dependencies": [ { "Name": "Microsoft.CodeCoverage", - "Version": "18.7.0" + "Version": "18.9.0" }, { "Name": "Microsoft.TestPlatform.TestHost", - "Version": "18.7.0" + "Version": "18.9.0" } ] } diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.7.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.9.0/package.nuspec similarity index 78% rename from Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.7.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.9.0/package.nuspec index f89e277ca..a949b7f86 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.7.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.9.0/package.nuspec @@ -2,7 +2,7 @@ Microsoft.NET.Test.Sdk - 18.7.0 + 18.9.0 Microsoft true MIT @@ -14,16 +14,15 @@ © 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.net.test.sdk/18.7.0/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.9.0/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.7.0/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.9.0/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.7.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.9.0/readme.md similarity index 83% rename from Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.7.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.9.0/readme.md index d56ef4973..01292e0c9 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.7.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.9.0/readme.md @@ -1,4 +1,4 @@ -Microsoft.NET.Test.Sdk [18.7.0](https://www.nuget.org/packages/Microsoft.NET.Test.Sdk/18.7.0) +Microsoft.NET.Test.Sdk [18.9.0](https://www.nuget.org/packages/Microsoft.NET.Test.Sdk/18.9.0) -------------------- 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,7 +20,7 @@ Dependencies 2 |Name|Version| |----------|:----| -|[Microsoft.CodeCoverage](../../../../packages/nuget.org/microsoft.codecoverage/18.7.0)|18.7.0| -|[Microsoft.TestPlatform.TestHost](../../../../packages/nuget.org/microsoft.testplatform.testhost/18.7.0)|18.7.0| +|[Microsoft.CodeCoverage](../../../../packages/nuget.org/microsoft.codecoverage/18.9.0)|18.9.0| +|[Microsoft.TestPlatform.TestHost](../../../../packages/nuget.org/microsoft.testplatform.testhost/18.9.0)|18.9.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.net.test.sdk/18.7.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.9.0/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.7.0/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.9.0/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.1.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.3.3/index.json similarity index 93% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.1.0/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.3.3/index.json index e2464caf1..2883a7125 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.1.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.3.3/index.json @@ -21,7 +21,7 @@ }, { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -40,7 +40,7 @@ }, { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -59,7 +59,7 @@ }, { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -79,7 +79,7 @@ }, { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -99,7 +99,7 @@ }, { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -119,7 +119,7 @@ }, { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -139,7 +139,7 @@ }, { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -158,7 +158,7 @@ }, { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -177,7 +177,7 @@ }, { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -196,7 +196,7 @@ }, { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -216,7 +216,7 @@ }, { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] } diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.1.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.3.3/package.nuspec similarity index 81% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.1.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.3.3/package.nuspec index 150962b10..b88a0c3a1 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.1.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.3.3/package.nuspec @@ -2,7 +2,7 @@ Microsoft.Testing.Extensions.Telemetry - 2.1.0 + 2.3.3 Microsoft true MIT @@ -16,18 +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/2.1.0/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.3.3/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.1.0/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.3.3/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.1.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.3.3/readme.md similarity index 86% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.1.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.3.3/readme.md index f8efbb942..ac3b6b324 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.1.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.3.3/readme.md @@ -1,4 +1,4 @@ -Microsoft.Testing.Extensions.Telemetry [2.1.0](https://www.nuget.org/packages/Microsoft.Testing.Extensions.Telemetry/2.1.0) +Microsoft.Testing.Extensions.Telemetry [2.3.3](https://www.nuget.org/packages/Microsoft.Testing.Extensions.Telemetry/2.3.3) -------------------- 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/2.1.0)|2.1.0| +|[Microsoft.Testing.Platform](../../../../packages/nuget.org/microsoft.testing.platform/2.3.3)|2.3.3| *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/2.1.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.3.3/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.1.0/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/2.3.3/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.1.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.3.3/index.json similarity index 91% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.1.0/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.3.3/index.json index a01a6cad9..0791fd9ed 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.1.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.3.3/index.json @@ -17,7 +17,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -32,7 +32,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -47,7 +47,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -63,7 +63,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -79,7 +79,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -95,7 +95,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -111,7 +111,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -126,7 +126,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -141,7 +141,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -156,7 +156,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -172,7 +172,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] } diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.1.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.3.3/package.nuspec similarity index 73% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.1.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.3.3/package.nuspec index 9fbae8134..b97034429 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.1.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.3.3/package.nuspec @@ -2,7 +2,7 @@ Microsoft.Testing.Extensions.TrxReport.Abstractions - 2.1.0 + 2.3.3 Microsoft true MIT @@ -14,16 +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/2.1.0/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.3.3/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.1.0/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.3.3/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.1.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.3.3/readme.md similarity index 86% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.1.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.3.3/readme.md index b68b671f9..ea258e417 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.1.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.3.3/readme.md @@ -1,4 +1,4 @@ -Microsoft.Testing.Extensions.TrxReport.Abstractions [2.1.0](https://www.nuget.org/packages/Microsoft.Testing.Extensions.TrxReport.Abstractions/2.1.0) +Microsoft.Testing.Extensions.TrxReport.Abstractions [2.3.3](https://www.nuget.org/packages/Microsoft.Testing.Extensions.TrxReport.Abstractions/2.3.3) -------------------- 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/2.1.0)|2.1.0| +|[Microsoft.Testing.Platform](../../../../packages/nuget.org/microsoft.testing.platform/2.3.3)|2.3.3| *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/2.1.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.3.3/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.1.0/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.3.3/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.1.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.3.3/index.json similarity index 83% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.1.0/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.3.3/index.json index e68e8f6d3..1b84c482b 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.1.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.3.3/index.json @@ -17,19 +17,19 @@ "Dependencies": [ { "Name": "Microsoft.TestPlatform.ObjectModel", - "Version": "18.7.0" + "Version": "18.9.0" }, { "Name": "Microsoft.Testing.Extensions.Telemetry", - "Version": "2.1.0" + "Version": "2.3.3" }, { "Name": "Microsoft.Testing.Extensions.TrxReport.Abstractions", - "Version": "2.1.0" + "Version": "2.3.3" }, { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -44,19 +44,19 @@ "Dependencies": [ { "Name": "Microsoft.TestPlatform.ObjectModel", - "Version": "18.7.0" + "Version": "18.9.0" }, { "Name": "Microsoft.Testing.Extensions.Telemetry", - "Version": "2.1.0" + "Version": "2.3.3" }, { "Name": "Microsoft.Testing.Extensions.TrxReport.Abstractions", - "Version": "2.1.0" + "Version": "2.3.3" }, { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -71,19 +71,19 @@ "Dependencies": [ { "Name": "Microsoft.TestPlatform.ObjectModel", - "Version": "18.7.0" + "Version": "18.9.0" }, { "Name": "Microsoft.Testing.Extensions.Telemetry", - "Version": "2.1.0" + "Version": "2.3.3" }, { "Name": "Microsoft.Testing.Extensions.TrxReport.Abstractions", - "Version": "2.1.0" + "Version": "2.3.3" }, { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -99,19 +99,19 @@ "Dependencies": [ { "Name": "Microsoft.TestPlatform.ObjectModel", - "Version": "18.7.0" + "Version": "18.9.0" }, { "Name": "Microsoft.Testing.Extensions.Telemetry", - "Version": "2.1.0" + "Version": "2.3.3" }, { "Name": "Microsoft.Testing.Extensions.TrxReport.Abstractions", - "Version": "2.1.0" + "Version": "2.3.3" }, { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -127,19 +127,19 @@ "Dependencies": [ { "Name": "Microsoft.TestPlatform.ObjectModel", - "Version": "18.7.0" + "Version": "18.9.0" }, { "Name": "Microsoft.Testing.Extensions.Telemetry", - "Version": "2.1.0" + "Version": "2.3.3" }, { "Name": "Microsoft.Testing.Extensions.TrxReport.Abstractions", - "Version": "2.1.0" + "Version": "2.3.3" }, { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -155,19 +155,19 @@ "Dependencies": [ { "Name": "Microsoft.TestPlatform.ObjectModel", - "Version": "18.7.0" + "Version": "18.9.0" }, { "Name": "Microsoft.Testing.Extensions.Telemetry", - "Version": "2.1.0" + "Version": "2.3.3" }, { "Name": "Microsoft.Testing.Extensions.TrxReport.Abstractions", - "Version": "2.1.0" + "Version": "2.3.3" }, { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -183,19 +183,19 @@ "Dependencies": [ { "Name": "Microsoft.TestPlatform.ObjectModel", - "Version": "18.7.0" + "Version": "18.9.0" }, { "Name": "Microsoft.Testing.Extensions.Telemetry", - "Version": "2.1.0" + "Version": "2.3.3" }, { "Name": "Microsoft.Testing.Extensions.TrxReport.Abstractions", - "Version": "2.1.0" + "Version": "2.3.3" }, { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -210,19 +210,19 @@ "Dependencies": [ { "Name": "Microsoft.TestPlatform.ObjectModel", - "Version": "18.7.0" + "Version": "18.9.0" }, { "Name": "Microsoft.Testing.Extensions.Telemetry", - "Version": "2.1.0" + "Version": "2.3.3" }, { "Name": "Microsoft.Testing.Extensions.TrxReport.Abstractions", - "Version": "2.1.0" + "Version": "2.3.3" }, { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -237,19 +237,19 @@ "Dependencies": [ { "Name": "Microsoft.TestPlatform.ObjectModel", - "Version": "18.7.0" + "Version": "18.9.0" }, { "Name": "Microsoft.Testing.Extensions.Telemetry", - "Version": "2.1.0" + "Version": "2.3.3" }, { "Name": "Microsoft.Testing.Extensions.TrxReport.Abstractions", - "Version": "2.1.0" + "Version": "2.3.3" }, { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -264,19 +264,19 @@ "Dependencies": [ { "Name": "Microsoft.TestPlatform.ObjectModel", - "Version": "18.7.0" + "Version": "18.9.0" }, { "Name": "Microsoft.Testing.Extensions.Telemetry", - "Version": "2.1.0" + "Version": "2.3.3" }, { "Name": "Microsoft.Testing.Extensions.TrxReport.Abstractions", - "Version": "2.1.0" + "Version": "2.3.3" }, { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -292,19 +292,19 @@ "Dependencies": [ { "Name": "Microsoft.TestPlatform.ObjectModel", - "Version": "18.7.0" + "Version": "18.9.0" }, { "Name": "Microsoft.Testing.Extensions.Telemetry", - "Version": "2.1.0" + "Version": "2.3.3" }, { "Name": "Microsoft.Testing.Extensions.TrxReport.Abstractions", - "Version": "2.1.0" + "Version": "2.3.3" }, { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] } diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.1.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.3.3/package.nuspec similarity index 69% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.1.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.3.3/package.nuspec index e9749edca..457f02197 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.1.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.3.3/package.nuspec @@ -2,7 +2,7 @@ Microsoft.Testing.Extensions.VSTestBridge - 2.1.0 + 2.3.3 Microsoft true MIT @@ -16,25 +16,25 @@ This package provides a bridge integration for test adapters wanting to target b © 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.vstestbridge/2.1.0/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.3.3/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.1.0/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.3.3/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.1.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.3.3/readme.md similarity index 84% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.1.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.3.3/readme.md index 1a64ce0d4..4fd64a0b4 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.1.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.3.3/readme.md @@ -1,4 +1,4 @@ -Microsoft.Testing.Extensions.VSTestBridge [2.1.0](https://www.nuget.org/packages/Microsoft.Testing.Extensions.VSTestBridge/2.1.0) +Microsoft.Testing.Extensions.VSTestBridge [2.3.3](https://www.nuget.org/packages/Microsoft.Testing.Extensions.VSTestBridge/2.3.3) -------------------- 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,9 +22,9 @@ Dependencies 4 |Name|Version| |----------|:----| -|[Microsoft.Testing.Extensions.Telemetry](../../../../packages/nuget.org/microsoft.testing.extensions.telemetry/2.1.0)|2.1.0| -|[Microsoft.Testing.Extensions.TrxReport.Abstractions](../../../../packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.1.0)|2.1.0| -|[Microsoft.Testing.Platform](../../../../packages/nuget.org/microsoft.testing.platform/2.1.0)|2.1.0| -|[Microsoft.TestPlatform.ObjectModel](../../../../packages/nuget.org/microsoft.testplatform.objectmodel/18.7.0)|18.7.0| +|[Microsoft.Testing.Extensions.Telemetry](../../../../packages/nuget.org/microsoft.testing.extensions.telemetry/2.3.3)|2.3.3| +|[Microsoft.Testing.Extensions.TrxReport.Abstractions](../../../../packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/2.3.3)|2.3.3| +|[Microsoft.Testing.Platform](../../../../packages/nuget.org/microsoft.testing.platform/2.3.3)|2.3.3| +|[Microsoft.TestPlatform.ObjectModel](../../../../packages/nuget.org/microsoft.testplatform.objectmodel/18.9.0)|18.9.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.testing.extensions.vstestbridge/2.1.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.3.3/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.1.0/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.3.3/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.1.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.3.3/index.json similarity index 91% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.1.0/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.3.3/index.json index a01a6cad9..0791fd9ed 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.1.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.3.3/index.json @@ -17,7 +17,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -32,7 +32,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -47,7 +47,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -63,7 +63,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -79,7 +79,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -95,7 +95,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -111,7 +111,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -126,7 +126,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -141,7 +141,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -156,7 +156,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -172,7 +172,7 @@ "Dependencies": [ { "Name": "Microsoft.Testing.Platform", - "Version": "2.1.0" + "Version": "2.3.3" } ] } diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.1.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.3.3/package.nuspec similarity index 76% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.1.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.3.3/package.nuspec index 48081bcb7..f67845190 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.1.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.3.3/package.nuspec @@ -2,7 +2,7 @@ Microsoft.Testing.Platform.MSBuild - 2.1.0 + 2.3.3 Microsoft true MIT @@ -16,16 +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/2.1.0/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.3.3/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.1.0/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.3.3/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.1.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.3.3/readme.md similarity index 86% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.1.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.3.3/readme.md index c19ad1277..bd5b57faa 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.1.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.3.3/readme.md @@ -1,4 +1,4 @@ -Microsoft.Testing.Platform.MSBuild [2.1.0](https://www.nuget.org/packages/Microsoft.Testing.Platform.MSBuild/2.1.0) +Microsoft.Testing.Platform.MSBuild [2.3.3](https://www.nuget.org/packages/Microsoft.Testing.Platform.MSBuild/2.3.3) -------------------- 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/2.1.0)|2.1.0| +|[Microsoft.Testing.Platform](../../../../packages/nuget.org/microsoft.testing.platform/2.3.3)|2.3.3| *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/2.1.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.3.3/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.1.0/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/2.3.3/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/2.1.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/2.3.3/index.json similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/2.1.0/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/2.3.3/index.json diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/2.1.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/2.3.3/package.nuspec similarity index 93% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/2.1.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/2.3.3/package.nuspec index 98fc504d9..1d28a0814 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/2.1.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/2.3.3/package.nuspec @@ -2,7 +2,7 @@ Microsoft.Testing.Platform - 2.1.0 + 2.3.3 Microsoft true MIT @@ -16,7 +16,7 @@ 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/2.1.0/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/2.3.3/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/2.1.0/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/2.3.3/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/2.1.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/2.3.3/readme.md similarity index 89% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/2.1.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/2.3.3/readme.md index 12084a3ad..62b957de3 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/2.1.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/2.3.3/readme.md @@ -1,4 +1,4 @@ -Microsoft.Testing.Platform [2.1.0](https://www.nuget.org/packages/Microsoft.Testing.Platform/2.1.0) +Microsoft.Testing.Platform [2.3.3](https://www.nuget.org/packages/Microsoft.Testing.Platform/2.3.3) -------------------- 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/2.1.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/2.3.3/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/2.1.0/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/2.3.3/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.0.1/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.4.0/index.json similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.0.1/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.4.0/index.json diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.0.1/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.4.0/package.nuspec similarity index 95% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.0.1/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.4.0/package.nuspec index 9c6386d3d..733f1df72 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.0.1/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.4.0/package.nuspec @@ -2,7 +2,7 @@ Microsoft.TestPlatform.ObjectModel - 18.0.1 + 18.4.0 Microsoft true MIT @@ -13,7 +13,7 @@ © 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.objectmodel/18.0.1/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.4.0/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.0.1/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.4.0/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.0.1/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.4.0/readme.md similarity index 84% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.0.1/readme.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.4.0/readme.md index 3536e465c..694511f72 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.0.1/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.4.0/readme.md @@ -1,4 +1,4 @@ -Microsoft.TestPlatform.ObjectModel [18.0.1](https://www.nuget.org/packages/Microsoft.TestPlatform.ObjectModel/18.0.1) +Microsoft.TestPlatform.ObjectModel [18.4.0](https://www.nuget.org/packages/Microsoft.TestPlatform.ObjectModel/18.4.0) -------------------- Used by: ClientDI internal, Core internal, DesignTime internal, Emit internal, SelfHost internal diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.0.1/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.4.0/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.0.1/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.4.0/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.7.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.9.0/index.json similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.7.0/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.9.0/index.json diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.7.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.9.0/package.nuspec similarity index 70% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.7.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.9.0/package.nuspec index 15ef9a2c2..f84738a54 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.7.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.9.0/package.nuspec @@ -2,7 +2,7 @@ Microsoft.TestPlatform.ObjectModel - 18.7.0 + 18.9.0 Microsoft true MIT @@ -14,27 +14,25 @@ © 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/18.7.0/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.9.0/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.7.0/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.9.0/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.7.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.9.0/readme.md similarity index 84% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.7.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.9.0/readme.md index b227f35ad..6a4a9b291 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.7.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.9.0/readme.md @@ -1,4 +1,4 @@ -Microsoft.TestPlatform.ObjectModel [18.7.0](https://www.nuget.org/packages/Microsoft.TestPlatform.ObjectModel/18.7.0) +Microsoft.TestPlatform.ObjectModel [18.9.0](https://www.nuget.org/packages/Microsoft.TestPlatform.ObjectModel/18.9.0) -------------------- 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.objectmodel/18.7.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.9.0/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.7.0/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.9.0/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.7.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.9.0/index.json similarity index 73% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.7.0/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.9.0/index.json index b067b9d30..b597d0f6b 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.7.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.9.0/index.json @@ -17,11 +17,7 @@ "Dependencies": [ { "Name": "Microsoft.TestPlatform.ObjectModel", - "Version": "18.7.0" - }, - { - "Name": "Newtonsoft.Json", - "Version": "13.0.3" + "Version": "18.9.0" } ] }, @@ -36,11 +32,7 @@ "Dependencies": [ { "Name": "Microsoft.TestPlatform.ObjectModel", - "Version": "18.7.0" - }, - { - "Name": "Newtonsoft.Json", - "Version": "13.0.3" + "Version": "18.9.0" } ] }, @@ -55,11 +47,7 @@ "Dependencies": [ { "Name": "Microsoft.TestPlatform.ObjectModel", - "Version": "18.7.0" - }, - { - "Name": "Newtonsoft.Json", - "Version": "13.0.3" + "Version": "18.9.0" } ] }, @@ -75,11 +63,7 @@ "Dependencies": [ { "Name": "Microsoft.TestPlatform.ObjectModel", - "Version": "18.7.0" - }, - { - "Name": "Newtonsoft.Json", - "Version": "13.0.3" + "Version": "18.9.0" } ] }, @@ -95,11 +79,7 @@ "Dependencies": [ { "Name": "Microsoft.TestPlatform.ObjectModel", - "Version": "18.7.0" - }, - { - "Name": "Newtonsoft.Json", - "Version": "13.0.3" + "Version": "18.9.0" } ] }, @@ -115,11 +95,7 @@ "Dependencies": [ { "Name": "Microsoft.TestPlatform.ObjectModel", - "Version": "18.7.0" - }, - { - "Name": "Newtonsoft.Json", - "Version": "13.0.3" + "Version": "18.9.0" } ] }, @@ -135,11 +111,7 @@ "Dependencies": [ { "Name": "Microsoft.TestPlatform.ObjectModel", - "Version": "18.7.0" - }, - { - "Name": "Newtonsoft.Json", - "Version": "13.0.3" + "Version": "18.9.0" } ] }, @@ -154,11 +126,7 @@ "Dependencies": [ { "Name": "Microsoft.TestPlatform.ObjectModel", - "Version": "18.7.0" - }, - { - "Name": "Newtonsoft.Json", - "Version": "13.0.3" + "Version": "18.9.0" } ] }, @@ -173,11 +141,7 @@ "Dependencies": [ { "Name": "Microsoft.TestPlatform.ObjectModel", - "Version": "18.7.0" - }, - { - "Name": "Newtonsoft.Json", - "Version": "13.0.3" + "Version": "18.9.0" } ] }, @@ -192,11 +156,7 @@ "Dependencies": [ { "Name": "Microsoft.TestPlatform.ObjectModel", - "Version": "18.7.0" - }, - { - "Name": "Newtonsoft.Json", - "Version": "13.0.3" + "Version": "18.9.0" } ] }, @@ -212,11 +172,7 @@ "Dependencies": [ { "Name": "Microsoft.TestPlatform.ObjectModel", - "Version": "18.7.0" - }, - { - "Name": "Newtonsoft.Json", - "Version": "13.0.3" + "Version": "18.9.0" } ] } diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.7.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.9.0/package.nuspec similarity index 86% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.7.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.9.0/package.nuspec index a9772b8cb..df5cd8d23 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.7.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.9.0/package.nuspec @@ -2,7 +2,7 @@ Microsoft.TestPlatform.TestHost - 18.7.0 + 18.9.0 Microsoft true MIT @@ -14,13 +14,12 @@ © 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.testhost/18.7.0/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.9.0/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.7.0/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.9.0/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.7.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.9.0/readme.md similarity index 74% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.7.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.9.0/readme.md index 75fd1c9fe..b1606d471 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.7.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.9.0/readme.md @@ -1,4 +1,4 @@ -Microsoft.TestPlatform.TestHost [18.7.0](https://www.nuget.org/packages/Microsoft.TestPlatform.TestHost/18.7.0) +Microsoft.TestPlatform.TestHost [18.9.0](https://www.nuget.org/packages/Microsoft.TestPlatform.TestHost/18.9.0) -------------------- Used by: AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal @@ -15,12 +15,11 @@ Description ----------- Testplatform host executes the test using specified adapter. -Dependencies 2 +Dependencies 1 ----------- |Name|Version| |----------|:----| -|[Microsoft.TestPlatform.ObjectModel](../../../../packages/nuget.org/microsoft.testplatform.objectmodel/18.7.0)|18.7.0| -|[Newtonsoft.Json](../../../../packages/nuget.org/newtonsoft.json/13.0.3)|13.0.3| +|[Microsoft.TestPlatform.ObjectModel](../../../../packages/nuget.org/microsoft.testplatform.objectmodel/18.9.0)|18.9.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.testhost/18.7.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.9.0/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.7.0/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.9.0/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/1.2.30/index.json b/Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/1.3.85/index.json similarity index 97% rename from Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/1.2.30/index.json rename to Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/1.3.85/index.json index 05f1a76a4..781501615 100644 --- a/Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/1.2.30/index.json +++ b/Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/1.3.85/index.json @@ -22,7 +22,7 @@ }, { "Name": "PolyType", - "Version": "1.3.1" + "Version": "1.4.1" } ] } diff --git a/Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/1.2.30/package.nuspec b/Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/1.3.85/package.nuspec similarity index 88% rename from Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/1.2.30/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/1.3.85/package.nuspec index 3e8bfc05b..b3a33bfe6 100644 --- a/Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/1.2.30/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/1.3.85/package.nuspec @@ -2,7 +2,7 @@ Nerdbank.MessagePack - 1.2.30 + 1.3.85 Andrew Arnott MIT https://licenses.nuget.org/MIT @@ -14,32 +14,32 @@ 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/v1.2.30 + https://github.com/AArnott/Nerdbank.MessagePack/releases/tag/v1.3.85 © Andrew Arnott. All rights reserved. MsgPack MessagePack Serialization Serializer Unity structural-equality secure-hash - + - + - + - + - + diff --git a/Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/1.2.30/readme.md b/Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/1.3.85/readme.md similarity index 88% rename from Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/1.2.30/readme.md rename to Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/1.3.85/readme.md index 0b0b2309b..5923c833a 100644 --- a/Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/1.2.30/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/1.3.85/readme.md @@ -1,4 +1,4 @@ -Nerdbank.MessagePack [1.2.30](https://www.nuget.org/packages/Nerdbank.MessagePack/1.2.30) +Nerdbank.MessagePack [1.3.85](https://www.nuget.org/packages/Nerdbank.MessagePack/1.3.85) -------------------- Used by: NerdbankMessagePack @@ -25,6 +25,6 @@ Dependencies 2 |Name|Version| |----------|:----| |[Microsoft.VisualStudio.Validation](../../../../packages/nuget.org/microsoft.visualstudio.validation/17.13.22)|17.13.22| -|[PolyType](../../../../packages/nuget.org/polytype/1.3.1)|1.3.1| +|[PolyType](../../../../packages/nuget.org/polytype/1.4.1)|1.4.1| *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/1.2.30/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/1.3.85/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/1.2.30/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/nerdbank.messagepack/1.3.85/repository-LICENSE 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 f5d2ae161..69f5f44bf 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,15 +6,6 @@ "Status": "AutomaticallyApproved" }, "UsedBy": [ - { - "Name": "AspNetCore", - "InternalOnly": true, - "TargetFrameworks": [ - "net10.0", - "net8.0", - "net9.0" - ] - }, { "Name": "AspNetCoreNSwag", "InternalOnly": false, @@ -23,92 +14,6 @@ "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 cf3d49f06..5d27c74c0 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: AspNetCore internal, AspNetCoreNSwag, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal +Used by: AspNetCoreNSwag -Target frameworks: net10.0, net481, net8.0, net9.0 +Target frameworks: net10.0, net8.0, net9.0 License: [MIT](../../../../licenses/mit) diff --git a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/6.2.0/index.json b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/6.3.0/index.json similarity index 90% rename from Build/third-party-libraries/packages/nuget.org/nunit3testadapter/6.2.0/index.json rename to Build/third-party-libraries/packages/nuget.org/nunit3testadapter/6.3.0/index.json index 9d276296c..03864b882 100644 --- a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/6.2.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/6.3.0/index.json @@ -21,11 +21,11 @@ }, { "Name": "Microsoft.Testing.Extensions.VSTestBridge", - "Version": "2.1.0" + "Version": "2.3.3" }, { "Name": "Microsoft.Testing.Platform.MSBuild", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -44,11 +44,11 @@ }, { "Name": "Microsoft.Testing.Extensions.VSTestBridge", - "Version": "2.1.0" + "Version": "2.3.3" }, { "Name": "Microsoft.Testing.Platform.MSBuild", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -67,11 +67,11 @@ }, { "Name": "Microsoft.Testing.Extensions.VSTestBridge", - "Version": "2.1.0" + "Version": "2.3.3" }, { "Name": "Microsoft.Testing.Platform.MSBuild", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -91,11 +91,11 @@ }, { "Name": "Microsoft.Testing.Extensions.VSTestBridge", - "Version": "2.1.0" + "Version": "2.3.3" }, { "Name": "Microsoft.Testing.Platform.MSBuild", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -115,11 +115,11 @@ }, { "Name": "Microsoft.Testing.Extensions.VSTestBridge", - "Version": "2.1.0" + "Version": "2.3.3" }, { "Name": "Microsoft.Testing.Platform.MSBuild", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -139,11 +139,11 @@ }, { "Name": "Microsoft.Testing.Extensions.VSTestBridge", - "Version": "2.1.0" + "Version": "2.3.3" }, { "Name": "Microsoft.Testing.Platform.MSBuild", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -163,11 +163,11 @@ }, { "Name": "Microsoft.Testing.Extensions.VSTestBridge", - "Version": "2.1.0" + "Version": "2.3.3" }, { "Name": "Microsoft.Testing.Platform.MSBuild", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -186,11 +186,11 @@ }, { "Name": "Microsoft.Testing.Extensions.VSTestBridge", - "Version": "2.1.0" + "Version": "2.3.3" }, { "Name": "Microsoft.Testing.Platform.MSBuild", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -209,11 +209,11 @@ }, { "Name": "Microsoft.Testing.Extensions.VSTestBridge", - "Version": "2.1.0" + "Version": "2.3.3" }, { "Name": "Microsoft.Testing.Platform.MSBuild", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -232,11 +232,11 @@ }, { "Name": "Microsoft.Testing.Extensions.VSTestBridge", - "Version": "2.1.0" + "Version": "2.3.3" }, { "Name": "Microsoft.Testing.Platform.MSBuild", - "Version": "2.1.0" + "Version": "2.3.3" } ] }, @@ -256,11 +256,11 @@ }, { "Name": "Microsoft.Testing.Extensions.VSTestBridge", - "Version": "2.1.0" + "Version": "2.3.3" }, { "Name": "Microsoft.Testing.Platform.MSBuild", - "Version": "2.1.0" + "Version": "2.3.3" } ] } diff --git a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/6.2.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/6.3.0/package.nuspec similarity index 95% rename from Build/third-party-libraries/packages/nuget.org/nunit3testadapter/6.2.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/nunit3testadapter/6.3.0/package.nuspec index 056cb1adb..34dc5cf4d 100644 --- a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/6.2.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/6.3.0/package.nuspec @@ -2,7 +2,7 @@ NUnit3TestAdapter - 6.2.0 + 6.3.0 NUnit3 Test Adapter for Visual Studio and DotNet Charlie Poole, Terje Sandstrom false @@ -23,12 +23,12 @@ - - + + - - + + diff --git a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/6.2.0/readme.md b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/6.3.0/readme.md similarity index 86% rename from Build/third-party-libraries/packages/nuget.org/nunit3testadapter/6.2.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/nunit3testadapter/6.3.0/readme.md index 18c35c35c..d00329a13 100644 --- a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/6.2.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/6.3.0/readme.md @@ -1,4 +1,4 @@ -NUnit3TestAdapter [6.2.0](https://www.nuget.org/packages/NUnit3TestAdapter/6.2.0) +NUnit3TestAdapter [6.3.0](https://www.nuget.org/packages/NUnit3TestAdapter/6.3.0) -------------------- Used by: AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal, ClientDI internal, Core internal, DesignTime internal, Emit internal, MemoryPack internal, MessagePack internal, NerdbankMessagePack internal, SelfHost internal @@ -24,7 +24,7 @@ Dependencies 3 |Name|Version| |----------|:----| |[Microsoft.Extensions.DependencyModel](../../../../packages/nuget.org/microsoft.extensions.dependencymodel/8.0.2)|8.0.2| -|[Microsoft.Testing.Extensions.VSTestBridge](../../../../packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.1.0)|2.1.0| -|[Microsoft.Testing.Platform.MSBuild](../../../../packages/nuget.org/microsoft.testing.platform.msbuild/2.1.0)|2.1.0| +|[Microsoft.Testing.Extensions.VSTestBridge](../../../../packages/nuget.org/microsoft.testing.extensions.vstestbridge/2.3.3)|2.3.3| +|[Microsoft.Testing.Platform.MSBuild](../../../../packages/nuget.org/microsoft.testing.platform.msbuild/2.3.3)|2.3.3| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/6.2.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/6.3.0/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/nunit3testadapter/6.2.0/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/nunit3testadapter/6.3.0/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/polytype/1.3.1/index.json b/Build/third-party-libraries/packages/nuget.org/polytype/1.4.1/index.json similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/polytype/1.3.1/index.json rename to Build/third-party-libraries/packages/nuget.org/polytype/1.4.1/index.json diff --git a/Build/third-party-libraries/packages/nuget.org/polytype/1.3.1/package.nuspec b/Build/third-party-libraries/packages/nuget.org/polytype/1.4.1/package.nuspec similarity index 87% rename from Build/third-party-libraries/packages/nuget.org/polytype/1.3.1/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/polytype/1.4.1/package.nuspec index e30a6a665..c154b37a5 100644 --- a/Build/third-party-libraries/packages/nuget.org/polytype/1.3.1/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/polytype/1.4.1/package.nuspec @@ -2,7 +2,7 @@ PolyType - 1.3.1 + 1.4.1 Eirik Tsarpalis MIT https://licenses.nuget.org/MIT @@ -10,13 +10,13 @@ README.md https://eiriktsarpalis.github.io/PolyType/ Practical generic programming for C# - https://github.com/eiriktsarpalis/PolyType/releases/tag/v1.3.1 + https://github.com/eiriktsarpalis/PolyType/releases/tag/v1.4.1 2024 generic programming, source generator, polytypic - + - + @@ -25,7 +25,7 @@ - + diff --git a/Build/third-party-libraries/packages/nuget.org/polytype/1.3.1/readme.md b/Build/third-party-libraries/packages/nuget.org/polytype/1.4.1/readme.md similarity index 87% rename from Build/third-party-libraries/packages/nuget.org/polytype/1.3.1/readme.md rename to Build/third-party-libraries/packages/nuget.org/polytype/1.4.1/readme.md index b35b2c139..4ed2789ca 100644 --- a/Build/third-party-libraries/packages/nuget.org/polytype/1.3.1/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/polytype/1.4.1/readme.md @@ -1,4 +1,4 @@ -PolyType [1.3.1](https://www.nuget.org/packages/PolyType/1.3.1) +PolyType [1.4.1](https://www.nuget.org/packages/PolyType/1.4.1) -------------------- Used by: NerdbankMessagePack diff --git a/Build/third-party-libraries/packages/nuget.org/polytype/1.3.1/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/polytype/1.4.1/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/polytype/1.3.1/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/polytype/1.4.1/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/protobuf-net.core/3.2.56/package.nuspec b/Build/third-party-libraries/packages/nuget.org/protobuf-net.core/3.2.56/package.nuspec deleted file mode 100644 index fc6410e12..000000000 --- a/Build/third-party-libraries/packages/nuget.org/protobuf-net.core/3.2.56/package.nuspec +++ /dev/null @@ -1,35 +0,0 @@ - - - - protobuf-net.Core - 3.2.56 - protobuf-net.Core - Marc Gravell - Marc Gravell - false - Apache-2.0 - https://licenses.nuget.org/Apache-2.0 - https://github.com/protobuf-net/protobuf-net - Provides simple access to fast and efficient "Protocol Buffers" serialization from .NET applications - https://protobuf-net.github.io/protobuf-net/releasenotes# - See https://github.com/protobuf-net/protobuf-net - binary serialization protobuf - - - - - - - - - - - - - - - - protobuf-net.png - readme.md - - \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/protobuf-net.core/3.2.56/index.json b/Build/third-party-libraries/packages/nuget.org/protobuf-net.core/3.4.19/index.json similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/protobuf-net.core/3.2.56/index.json rename to Build/third-party-libraries/packages/nuget.org/protobuf-net.core/3.4.19/index.json diff --git a/Build/third-party-libraries/packages/nuget.org/protobuf-net.core/3.4.19/package.nuspec b/Build/third-party-libraries/packages/nuget.org/protobuf-net.core/3.4.19/package.nuspec new file mode 100644 index 000000000..3ecbf5f7c --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/protobuf-net.core/3.4.19/package.nuspec @@ -0,0 +1,33 @@ + + + + protobuf-net.Core + 3.4.19 + protobuf-net.Core + Marc Gravell + Apache-2.0 + https://licenses.nuget.org/Apache-2.0 + protobuf-net.png + readme.md + https://github.com/protobuf-net/protobuf-net + The protobuf-net serialization engine and build-time tooling; most projects should reference protobuf-net, which adds the runtime type model + https://github.com/protobuf-net/protobuf-net/releases + See https://github.com/protobuf-net/protobuf-net + binary serialization protobuf + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/protobuf-net.core/3.2.56/project-Licence.txt b/Build/third-party-libraries/packages/nuget.org/protobuf-net.core/3.4.19/project-Licence.txt similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/protobuf-net.core/3.2.56/project-Licence.txt rename to Build/third-party-libraries/packages/nuget.org/protobuf-net.core/3.4.19/project-Licence.txt diff --git a/Build/third-party-libraries/packages/nuget.org/protobuf-net.core/3.2.56/readme.md b/Build/third-party-libraries/packages/nuget.org/protobuf-net.core/3.4.19/readme.md similarity index 69% rename from Build/third-party-libraries/packages/nuget.org/protobuf-net.core/3.2.56/readme.md rename to Build/third-party-libraries/packages/nuget.org/protobuf-net.core/3.4.19/readme.md index 5d4f42894..0eb8d1471 100644 --- a/Build/third-party-libraries/packages/nuget.org/protobuf-net.core/3.2.56/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/protobuf-net.core/3.4.19/readme.md @@ -1,4 +1,4 @@ -protobuf-net.Core [3.2.56](https://www.nuget.org/packages/protobuf-net.Core/3.2.56) +protobuf-net.Core [3.4.19](https://www.nuget.org/packages/protobuf-net.Core/3.4.19) -------------------- Used by: ProtoBuf @@ -13,6 +13,6 @@ License: [Apache-2.0](../../../../licenses/apache-2.0) Description ----------- -Provides simple access to fast and efficient "Protocol Buffers" serialization from .NET applications +The protobuf-net serialization engine and build-time tooling; most projects should reference protobuf-net, which adds the runtime type model *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/protobuf-net.core/3.2.56/repository-Licence.txt b/Build/third-party-libraries/packages/nuget.org/protobuf-net.core/3.4.19/repository-Licence.txt similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/protobuf-net.core/3.2.56/repository-Licence.txt rename to Build/third-party-libraries/packages/nuget.org/protobuf-net.core/3.4.19/repository-Licence.txt diff --git a/Build/third-party-libraries/packages/nuget.org/protobuf-net/3.2.56/index.json b/Build/third-party-libraries/packages/nuget.org/protobuf-net/3.4.19/index.json similarity index 97% rename from Build/third-party-libraries/packages/nuget.org/protobuf-net/3.2.56/index.json rename to Build/third-party-libraries/packages/nuget.org/protobuf-net/3.4.19/index.json index 72e4177ec..7b33ab1f8 100644 --- a/Build/third-party-libraries/packages/nuget.org/protobuf-net/3.2.56/index.json +++ b/Build/third-party-libraries/packages/nuget.org/protobuf-net/3.4.19/index.json @@ -20,7 +20,7 @@ "Dependencies": [ { "Name": "protobuf-net.Core", - "Version": "3.2.56" + "Version": "3.4.19" } ] } diff --git a/Build/third-party-libraries/packages/nuget.org/protobuf-net/3.2.56/package.nuspec b/Build/third-party-libraries/packages/nuget.org/protobuf-net/3.4.19/package.nuspec similarity index 62% rename from Build/third-party-libraries/packages/nuget.org/protobuf-net/3.2.56/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/protobuf-net/3.4.19/package.nuspec index 677f96367..24d0ed76c 100644 --- a/Build/third-party-libraries/packages/nuget.org/protobuf-net/3.2.56/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/protobuf-net/3.4.19/package.nuspec @@ -1,37 +1,35 @@ - + protobuf-net - 3.2.56 + 3.4.19 protobuf-net Marc Gravell - Marc Gravell - false Apache-2.0 https://licenses.nuget.org/Apache-2.0 + protobuf-net.png + readme.md https://github.com/protobuf-net/protobuf-net Provides simple access to fast and efficient "Protocol Buffers" serialization from .NET applications - https://protobuf-net.github.io/protobuf-net/releasenotes# + https://github.com/protobuf-net/protobuf-net/releases See https://github.com/protobuf-net/protobuf-net binary serialization protobuf - + - + - - + + - + - + - protobuf-net.png - readme.md \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/protobuf-net/3.2.56/project-Licence.txt b/Build/third-party-libraries/packages/nuget.org/protobuf-net/3.4.19/project-Licence.txt similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/protobuf-net/3.2.56/project-Licence.txt rename to Build/third-party-libraries/packages/nuget.org/protobuf-net/3.4.19/project-Licence.txt diff --git a/Build/third-party-libraries/packages/nuget.org/protobuf-net/3.2.56/readme.md b/Build/third-party-libraries/packages/nuget.org/protobuf-net/3.4.19/readme.md similarity index 88% rename from Build/third-party-libraries/packages/nuget.org/protobuf-net/3.2.56/readme.md rename to Build/third-party-libraries/packages/nuget.org/protobuf-net/3.4.19/readme.md index 848583164..d08d1adf5 100644 --- a/Build/third-party-libraries/packages/nuget.org/protobuf-net/3.2.56/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/protobuf-net/3.4.19/readme.md @@ -1,4 +1,4 @@ -protobuf-net [3.2.56](https://www.nuget.org/packages/protobuf-net/3.2.56) +protobuf-net [3.4.19](https://www.nuget.org/packages/protobuf-net/3.4.19) -------------------- Used by: ProtoBuf @@ -20,6 +20,6 @@ Dependencies 1 |Name|Version| |----------|:----| -|[protobuf-net.Core](../../../../packages/nuget.org/protobuf-net.core/3.2.56)|3.2.56| +|[protobuf-net.Core](../../../../packages/nuget.org/protobuf-net.core/3.4.19)|3.4.19| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/protobuf-net/3.2.56/repository-Licence.txt b/Build/third-party-libraries/packages/nuget.org/protobuf-net/3.4.19/repository-Licence.txt similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/protobuf-net/3.2.56/repository-Licence.txt rename to Build/third-party-libraries/packages/nuget.org/protobuf-net/3.4.19/repository-Licence.txt 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 475361cae..30ebdea90 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 @@ -69,18 +69,6 @@ "netstandard2.0" ] }, - { - "Name": "ProtoBuf", - "InternalOnly": false, - "TargetFrameworks": [ - "net10.0", - "net462", - "net8.0", - "net9.0", - "netstandard2.0", - "netstandard2.1" - ] - }, { "Name": "SelfHost", "InternalOnly": true, diff --git a/Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/readme.md b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/readme.md index 94ac937b0..bef40d966 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/readme.md @@ -1,9 +1,9 @@ System.Buffers [4.5.1](https://www.nuget.org/packages/System.Buffers/4.5.1) -------------------- -Used by: ClientDI, Core internal, DesignTime, Emit internal, MessagePack, NerdbankMessagePack, ProtoBuf, SelfHost internal +Used by: ClientDI, Core internal, DesignTime, Emit internal, MessagePack, NerdbankMessagePack, SelfHost internal -Target frameworks: net10.0, net462, net481, net8.0, net9.0, netstandard2.0, netstandard2.1 +Target frameworks: net10.0, net481, net8.0, net9.0, netstandard2.0, netstandard2.1 License: [MIT](../../../../licenses/mit) 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 new file mode 100644 index 000000000..c69b95311 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.6.1/index.json @@ -0,0 +1,39 @@ +{ + "$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": "ProtoBuf", + "InternalOnly": false, + "TargetFrameworks": [ + "net10.0", + "net462", + "net8.0", + "net9.0", + "netstandard2.0", + "netstandard2.1" + ] + } + ], + "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 new file mode 100644 index 000000000..8030a6e86 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.6.1/package.nuspec @@ -0,0 +1,24 @@ + + + + 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.collections.immutable/7.0.0/package-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.6.1/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/system.collections.immutable/7.0.0/package-LICENSE.TXT rename to Build/third-party-libraries/packages/nuget.org/system.buffers/4.6.1/project-LICENSE 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 new file mode 100644 index 000000000..e15453433 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.6.1/readme.md @@ -0,0 +1,18 @@ +System.Buffers [4.6.1](https://www.nuget.org/packages/System.Buffers/4.6.1) +-------------------- + +Used by: ProtoBuf + +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/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.collections.immutable/7.0.0/repository-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.6.1/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/system.collections.immutable/7.0.0/repository-LICENSE.TXT rename to Build/third-party-libraries/packages/nuget.org/system.buffers/4.6.1/repository-LICENSE 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/10.0.11/index.json similarity index 89% rename from Build/third-party-libraries/packages/nuget.org/system.collections.immutable/7.0.0/index.json rename to Build/third-party-libraries/packages/nuget.org/system.collections.immutable/10.0.11/index.json index 0fb34d50a..22e5bcd11 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/10.0.11/index.json @@ -20,11 +20,11 @@ "Dependencies": [ { "Name": "System.Memory", - "Version": "4.5.5" + "Version": "4.6.3" }, { "Name": "System.Runtime.CompilerServices.Unsafe", - "Version": "6.0.0" + "Version": "6.1.2" } ] } @@ -38,7 +38,7 @@ { "Subject": "repository", "Code": "MIT", - "HRef": "https://github.com/dotnet/runtime" + "HRef": "https://github.com/dotnet/dotnet" }, { "Subject": "project", diff --git a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/7.0.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/10.0.11/package.nuspec similarity index 73% rename from Build/third-party-libraries/packages/nuget.org/system.collections.immutable/7.0.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/system.collections.immutable/10.0.11/package.nuspec index 3cf0048c5..303692c75 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/7.0.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/10.0.11/package.nuspec @@ -2,12 +2,12 @@ System.Collections.Immutable - 7.0.0 + 10.0.11 Microsoft MIT https://licenses.nuget.org/MIT Icon.png - README.md + PACKAGE.md https://dot.net/ 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. @@ -15,19 +15,18 @@ The System.Collections.Immutable library is built-in as part of the shared frame https://go.microsoft.com/fwlink/?LinkID=799421 © Microsoft Corporation. All rights reserved. true - + - - + + - - - - + + + - - + + 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/10.0.11/readme.md similarity index 82% rename from Build/third-party-libraries/packages/nuget.org/system.collections.immutable/7.0.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/system.collections.immutable/10.0.11/readme.md index fc21aa4ce..fa3f5d542 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/10.0.11/readme.md @@ -1,4 +1,4 @@ -System.Collections.Immutable [7.0.0](https://www.nuget.org/packages/System.Collections.Immutable/7.0.0) +System.Collections.Immutable [10.0.11](https://www.nuget.org/packages/System.Collections.Immutable/10.0.11) -------------------- Used by: ProtoBuf @@ -8,7 +8,7 @@ Target frameworks: net10.0, net462, net8.0, net9.0, netstandard2.0, netstandard2 License: [MIT](../../../../licenses/mit) - package license: [MIT](https://licenses.nuget.org/MIT) -- repository license: [MIT](https://github.com/dotnet/runtime) +- repository license: [MIT](https://github.com/dotnet/dotnet) - project license: [Unknown](https://dot.net/) Description @@ -22,7 +22,7 @@ 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.Memory](../../../../packages/nuget.org/system.memory/4.6.3)|4.6.3| +|[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.threading.channels/10.0.9/repository-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/10.0.11/repository-LICENSE.TXT similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.9/repository-LICENSE.TXT rename to Build/third-party-libraries/packages/nuget.org/system.collections.immutable/10.0.11/repository-LICENSE.TXT 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 26bac7bf1..caddf9269 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 @@ -160,32 +160,6 @@ } ] }, - { - "Name": "ProtoBuf", - "InternalOnly": false, - "TargetFrameworks": [ - "net10.0", - "net462", - "net8.0", - "net9.0", - "netstandard2.0", - "netstandard2.1" - ], - "Dependencies": [ - { - "Name": "System.Buffers", - "Version": "4.5.1" - }, - { - "Name": "System.Numerics.Vectors", - "Version": "4.5.0" - }, - { - "Name": "System.Runtime.CompilerServices.Unsafe", - "Version": "6.0.0" - } - ] - }, { "Name": "SelfHost", "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 57d34288c..ab36ee02c 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,9 +1,9 @@ System.Memory [4.5.5](https://www.nuget.org/packages/System.Memory/4.5.5) -------------------- -Used by: ClientDI, Core internal, DesignTime internal, Emit internal, MessagePack, NerdbankMessagePack, ProtoBuf, SelfHost internal +Used by: ClientDI, Core internal, DesignTime internal, Emit internal, MessagePack, NerdbankMessagePack, SelfHost internal -Target frameworks: net10.0, net462, net481, net8.0, net9.0, netstandard2.0, netstandard2.1 +Target frameworks: net10.0, net481, net8.0, net9.0, netstandard2.0, netstandard2.1 License: [MIT](../../../../licenses/mit) 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 new file mode 100644 index 000000000..2595abfa0 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.memory/4.6.3/index.json @@ -0,0 +1,53 @@ +{ + "$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": "ProtoBuf", + "InternalOnly": false, + "TargetFrameworks": [ + "net10.0", + "net462", + "net8.0", + "net9.0", + "netstandard2.0", + "netstandard2.1" + ], + "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 new file mode 100644 index 000000000..12c81970b --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.memory/4.6.3/package.nuspec @@ -0,0 +1,32 @@ + + + + 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 new file mode 100644 index 000000000..984713a49 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.memory/4.6.3/project-LICENSE @@ -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.6.3/readme.md b/Build/third-party-libraries/packages/nuget.org/system.memory/4.6.3/readme.md new file mode 100644 index 000000000..a360b1375 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.memory/4.6.3/readme.md @@ -0,0 +1,27 @@ +System.Memory [4.6.3](https://www.nuget.org/packages/System.Memory/4.6.3) +-------------------- + +Used by: ProtoBuf + +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/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 new file mode 100644 index 000000000..984713a49 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.memory/4.6.3/repository-LICENSE @@ -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.numerics.vectors/4.4.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/index.json index f4cc98657..48b9c0509 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/index.json @@ -56,18 +56,6 @@ "netstandard2.0" ] }, - { - "Name": "ProtoBuf", - "InternalOnly": false, - "TargetFrameworks": [ - "net10.0", - "net462", - "net8.0", - "net9.0", - "netstandard2.0", - "netstandard2.1" - ] - }, { "Name": "SelfHost", "InternalOnly": false, diff --git a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/readme.md index 9f166f0b1..ec8c40b00 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/readme.md @@ -1,7 +1,7 @@ System.Numerics.Vectors [4.4.0](https://www.nuget.org/packages/System.Numerics.Vectors/4.4.0) -------------------- -Used by: ClientDI, Core, DesignTime, MessagePack, NerdbankMessagePack, ProtoBuf, SelfHost +Used by: ClientDI, Core, DesignTime, MessagePack, NerdbankMessagePack, SelfHost Target frameworks: net10.0, net462, net8.0, net9.0, netstandard2.0, netstandard2.1 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 b59bdcd49..5428a31f7 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 @@ -46,18 +46,6 @@ "net9.0" ] }, - { - "Name": "ProtoBuf", - "InternalOnly": false, - "TargetFrameworks": [ - "net10.0", - "net462", - "net8.0", - "net9.0", - "netstandard2.0", - "netstandard2.1" - ] - }, { "Name": "SelfHost", "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 e49cd1c9a..19407b615 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,9 +1,9 @@ System.Numerics.Vectors [4.5.0](https://www.nuget.org/packages/System.Numerics.Vectors/4.5.0) -------------------- -Used by: ClientDI internal, Core internal, DesignTime internal, Emit internal, ProtoBuf, SelfHost internal +Used by: ClientDI internal, Core internal, DesignTime internal, Emit internal, SelfHost internal -Target frameworks: net10.0, net462, net481, net8.0, net9.0, netstandard2.0, netstandard2.1 +Target frameworks: net10.0, net481, net8.0, net9.0 License: [MIT](../../../../licenses/mit) 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 new file mode 100644 index 000000000..c69b95311 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.6.1/index.json @@ -0,0 +1,39 @@ +{ + "$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": "ProtoBuf", + "InternalOnly": false, + "TargetFrameworks": [ + "net10.0", + "net462", + "net8.0", + "net9.0", + "netstandard2.0", + "netstandard2.1" + ] + } + ], + "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 new file mode 100644 index 000000000..29b726d9c --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.6.1/package.nuspec @@ -0,0 +1,27 @@ + + + + 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 new file mode 100644 index 000000000..984713a49 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.6.1/project-LICENSE @@ -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.numerics.vectors/4.6.1/readme.md b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.6.1/readme.md new file mode 100644 index 000000000..d3f866331 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.6.1/readme.md @@ -0,0 +1,18 @@ +System.Numerics.Vectors [4.6.1](https://www.nuget.org/packages/System.Numerics.Vectors/4.6.1) +-------------------- + +Used by: ProtoBuf + +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/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 new file mode 100644 index 000000000..984713a49 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.6.1/repository-LICENSE @@ -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.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 b61f2abf3..5dc6502dd 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 @@ -56,18 +56,6 @@ "net9.0", "netstandard2.0" ] - }, - { - "Name": "ProtoBuf", - "InternalOnly": false, - "TargetFrameworks": [ - "net10.0", - "net462", - "net8.0", - "net9.0", - "netstandard2.0", - "netstandard2.1" - ] } ], "Licenses": [ 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 73a466a99..b0423b119 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,9 +1,9 @@ System.Runtime.CompilerServices.Unsafe [6.0.0](https://www.nuget.org/packages/System.Runtime.CompilerServices.Unsafe/6.0.0) -------------------- -Used by: ClientDI, Core internal, MemoryPack, MessagePack, NerdbankMessagePack, ProtoBuf +Used by: ClientDI, Core internal, MemoryPack, MessagePack, NerdbankMessagePack -Target frameworks: net10.0, net462, net481, net8.0, net9.0, netstandard2.0, netstandard2.1 +Target frameworks: net10.0, net481, net8.0, net9.0, netstandard2.0, netstandard2.1 License: [MIT](../../../../licenses/mit) diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.2/index.json b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.2/index.json index 1932c7a1a..4ae57aa44 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.2/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.2/index.json @@ -46,6 +46,18 @@ "net9.0" ] }, + { + "Name": "ProtoBuf", + "InternalOnly": false, + "TargetFrameworks": [ + "net10.0", + "net462", + "net8.0", + "net9.0", + "netstandard2.0", + "netstandard2.1" + ] + }, { "Name": "SelfHost", "InternalOnly": true, diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.2/readme.md b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.2/readme.md index 3cb8e51d0..d299fd3e1 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.2/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.2/readme.md @@ -1,9 +1,9 @@ System.Runtime.CompilerServices.Unsafe [6.1.2](https://www.nuget.org/packages/System.Runtime.CompilerServices.Unsafe/6.1.2) -------------------- -Used by: ClientDI internal, Core internal, DesignTime internal, Emit internal, SelfHost internal +Used by: ClientDI internal, Core internal, DesignTime internal, Emit internal, ProtoBuf, SelfHost internal -Target frameworks: net10.0, net481, net8.0, net9.0 +Target frameworks: net10.0, net462, net481, net8.0, net9.0, netstandard2.0, netstandard2.1 License: [MIT](../../../../licenses/mit) diff --git a/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.9/index.json b/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.11/index.json similarity index 96% rename from Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.9/index.json rename to Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.11/index.json index 7c45d145f..2d46f9a06 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.9/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.11/index.json @@ -18,7 +18,7 @@ "Dependencies": [ { "Name": "Microsoft.Bcl.AsyncInterfaces", - "Version": "10.0.9" + "Version": "10.0.11" }, { "Name": "System.Threading.Tasks.Extensions", diff --git a/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.9/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.11/package.nuspec similarity index 90% rename from Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.9/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.11/package.nuspec index 584cc3598..6066867db 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.9/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.11/package.nuspec @@ -2,7 +2,7 @@ System.Threading.Channels - 10.0.9 + 10.0.11 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.9/readme.md b/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.11/readme.md similarity index 83% rename from Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.9/readme.md rename to Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.11/readme.md index 0e1665063..e6000646b 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.9/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.11/readme.md @@ -1,4 +1,4 @@ -System.Threading.Channels [10.0.9](https://www.nuget.org/packages/System.Threading.Channels/10.0.9) +System.Threading.Channels [10.0.11](https://www.nuget.org/packages/System.Threading.Channels/10.0.11) -------------------- Used by: Core internal @@ -24,7 +24,7 @@ Dependencies 2 |Name|Version| |----------|:----| -|[Microsoft.Bcl.AsyncInterfaces](../../../../packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.9)|10.0.9| +|[Microsoft.Bcl.AsyncInterfaces](../../../../packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.11)|10.0.11| |[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.11/repository-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.11/repository-LICENSE.TXT new file mode 100644 index 000000000..a616ed188 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.threading.channels/10.0.11/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. \ No newline at end of file diff --git a/Build/third-party-libraries/readme.md b/Build/third-party-libraries/readme.md index 116a2ea78..bda5c8865 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|111| +|[MIT](licenses/mit)|no|no|114| |[ms-net-library](licenses/ms-net-library)|no|no|0| |[MS-PL](licenses/ms-pl)|no|no|0| -Packages 124 +Packages 127 -------- |Name|Version|Source|License|Used by| @@ -21,27 +21,27 @@ Packages 124 |[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.35.1)|3.35.1|[nuget.org](https://www.nuget.org/packages/Google.Protobuf/3.35.1)|[BSD-3-Clause](licenses/bsd-3-clause)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal| -|[Grpc.AspNetCore.Server](packages/nuget.org/grpc.aspnetcore.server/2.80.0)|2.80.0|[nuget.org](https://www.nuget.org/packages/Grpc.AspNetCore.Server/2.80.0)|[Apache-2.0](licenses/apache-2.0)|AspNetCore| +|[Google.Protobuf](packages/nuget.org/google.protobuf/3.36.0)|3.36.0|[nuget.org](https://www.nuget.org/packages/Google.Protobuf/3.36.0)|[BSD-3-Clause](licenses/bsd-3-clause)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal| +|[Grpc.AspNetCore.Server](packages/nuget.org/grpc.aspnetcore.server/2.83.0)|2.83.0|[nuget.org](https://www.nuget.org/packages/Grpc.AspNetCore.Server/2.83.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.80.0)|2.80.0|[nuget.org](https://www.nuget.org/packages/Grpc.Core.Api/2.80.0)|[Apache-2.0](licenses/apache-2.0)|AspNetCore, ClientDI, Core, DesignTime, SelfHost| -|[Grpc.Net.Client](packages/nuget.org/grpc.net.client/2.80.0)|2.80.0|[nuget.org](https://www.nuget.org/packages/Grpc.Net.Client/2.80.0)|[Apache-2.0](licenses/apache-2.0)|ClientDI, Core internal| -|[Grpc.Net.ClientFactory](packages/nuget.org/grpc.net.clientfactory/2.80.0)|2.80.0|[nuget.org](https://www.nuget.org/packages/Grpc.Net.ClientFactory/2.80.0)|[Apache-2.0](licenses/apache-2.0)|ClientDI| -|[Grpc.Net.Common](packages/nuget.org/grpc.net.common/2.80.0)|2.80.0|[nuget.org](https://www.nuget.org/packages/Grpc.Net.Common/2.80.0)|[Apache-2.0](licenses/apache-2.0)|AspNetCore, ClientDI, Core internal| -|[Grpc.Tools](packages/nuget.org/grpc.tools/2.81.1)|2.81.1|[nuget.org](https://www.nuget.org/packages/Grpc.Tools/2.81.1)|[Apache-2.0](licenses/apache-2.0)|AspNetCore internal, AspNetCoreNSwag internal, AspNetCoreSwashbuckle internal| +|[Grpc.Core.Api](packages/nuget.org/grpc.core.api/2.83.0)|2.83.0|[nuget.org](https://www.nuget.org/packages/Grpc.Core.Api/2.83.0)|[Apache-2.0](licenses/apache-2.0)|AspNetCore, ClientDI, Core, DesignTime, SelfHost| +|[Grpc.Net.Client](packages/nuget.org/grpc.net.client/2.83.0)|2.83.0|[nuget.org](https://www.nuget.org/packages/Grpc.Net.Client/2.83.0)|[Apache-2.0](licenses/apache-2.0)|ClientDI, Core internal| +|[Grpc.Net.ClientFactory](packages/nuget.org/grpc.net.clientfactory/2.83.0)|2.83.0|[nuget.org](https://www.nuget.org/packages/Grpc.Net.ClientFactory/2.83.0)|[Apache-2.0](licenses/apache-2.0)|ClientDI| +|[Grpc.Net.Common](packages/nuget.org/grpc.net.common/2.83.0)|2.83.0|[nuget.org](https://www.nuget.org/packages/Grpc.Net.Common/2.83.0)|[Apache-2.0](licenses/apache-2.0)|AspNetCore, ClientDI, Core internal| +|[Grpc.Tools](packages/nuget.org/grpc.tools/2.83.0)|2.83.0|[nuget.org](https://www.nuget.org/packages/Grpc.Tools/2.83.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| -|[MessagePack](packages/nuget.org/messagepack/3.1.7)|3.1.7|[nuget.org](https://www.nuget.org/packages/MessagePack/3.1.7)|[MIT](licenses/mit)|MessagePack| -|[MessagePack.Annotations](packages/nuget.org/messagepack.annotations/3.1.7)|3.1.7|[nuget.org](https://www.nuget.org/packages/MessagePack.Annotations/3.1.7)|[MIT](licenses/mit)|MessagePack| +|[MessagePack](packages/nuget.org/messagepack/3.1.8)|3.1.8|[nuget.org](https://www.nuget.org/packages/MessagePack/3.1.8)|[MIT](licenses/mit)|MessagePack| +|[MessagePack.Annotations](packages/nuget.org/messagepack.annotations/3.1.8)|3.1.8|[nuget.org](https://www.nuget.org/packages/MessagePack.Annotations/3.1.8)|[MIT](licenses/mit)|MessagePack| |[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.28)|8.0.28|[nuget.org](https://www.nuget.org/packages/Microsoft.AspNetCore.Authentication.JwtBearer/8.0.28)|[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.9)|10.0.9|[nuget.org](https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/10.0.9)|[MIT](licenses/mit)|Core internal| +|[Microsoft.Bcl.AsyncInterfaces](packages/nuget.org/microsoft.bcl.asyncinterfaces/10.0.11)|10.0.11|[nuget.org](https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/10.0.11)|[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.7.0)|18.7.0|[nuget.org](https://www.nuget.org/packages/Microsoft.CodeCoverage/18.7.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.CodeCoverage](packages/nuget.org/microsoft.codecoverage/18.9.0)|18.9.0|[nuget.org](https://www.nuget.org/packages/Microsoft.CodeCoverage/18.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.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| @@ -63,25 +63,25 @@ Packages 124 |[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.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.Test.Sdk](packages/nuget.org/microsoft.net.test.sdk/18.7.0)|18.7.0|[nuget.org](https://www.nuget.org/packages/Microsoft.NET.Test.Sdk/18.7.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.NET.Test.Sdk](packages/nuget.org/microsoft.net.test.sdk/18.9.0)|18.9.0|[nuget.org](https://www.nuget.org/packages/Microsoft.NET.Test.Sdk/18.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.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.7.5)|2.7.5|[nuget.org](https://www.nuget.org/packages/Microsoft.OpenApi/2.7.5)|[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/2.1.0)|2.1.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Testing.Extensions.Telemetry/2.1.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/2.1.0)|2.1.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Testing.Extensions.TrxReport.Abstractions/2.1.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/2.1.0)|2.1.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Testing.Extensions.VSTestBridge/2.1.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/2.1.0)|2.1.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Testing.Platform/2.1.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/2.1.0)|2.1.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Testing.Platform.MSBuild/2.1.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/18.0.1)|18.0.1|[nuget.org](https://www.nuget.org/packages/Microsoft.TestPlatform.ObjectModel/18.0.1)|[MIT](licenses/mit)|ClientDI internal, Core internal, DesignTime internal, Emit internal, SelfHost internal| -|[Microsoft.TestPlatform.ObjectModel](packages/nuget.org/microsoft.testplatform.objectmodel/18.7.0)|18.7.0|[nuget.org](https://www.nuget.org/packages/Microsoft.TestPlatform.ObjectModel/18.7.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.TestHost](packages/nuget.org/microsoft.testplatform.testhost/18.7.0)|18.7.0|[nuget.org](https://www.nuget.org/packages/Microsoft.TestPlatform.TestHost/18.7.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.Telemetry](packages/nuget.org/microsoft.testing.extensions.telemetry/2.3.3)|2.3.3|[nuget.org](https://www.nuget.org/packages/Microsoft.Testing.Extensions.Telemetry/2.3.3)|[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.3.3)|2.3.3|[nuget.org](https://www.nuget.org/packages/Microsoft.Testing.Extensions.TrxReport.Abstractions/2.3.3)|[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.3.3)|2.3.3|[nuget.org](https://www.nuget.org/packages/Microsoft.Testing.Extensions.VSTestBridge/2.3.3)|[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.3.3)|2.3.3|[nuget.org](https://www.nuget.org/packages/Microsoft.Testing.Platform/2.3.3)|[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.3.3)|2.3.3|[nuget.org](https://www.nuget.org/packages/Microsoft.Testing.Platform.MSBuild/2.3.3)|[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.4.0)|18.4.0|[nuget.org](https://www.nuget.org/packages/Microsoft.TestPlatform.ObjectModel/18.4.0)|[MIT](licenses/mit)|ClientDI internal, Core internal, DesignTime internal, Emit internal, SelfHost internal| +|[Microsoft.TestPlatform.ObjectModel](packages/nuget.org/microsoft.testplatform.objectmodel/18.9.0)|18.9.0|[nuget.org](https://www.nuget.org/packages/Microsoft.TestPlatform.ObjectModel/18.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.TestHost](packages/nuget.org/microsoft.testplatform.testhost/18.9.0)|18.9.0|[nuget.org](https://www.nuget.org/packages/Microsoft.TestPlatform.TestHost/18.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.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.5.0)|3.5.0|[nuget.org](https://www.nuget.org/packages/Namotion.Reflection/3.5.0)|[MIT](licenses/mit)|AspNetCoreNSwag| -|[Nerdbank.MessagePack](packages/nuget.org/nerdbank.messagepack/1.2.30)|1.2.30|[nuget.org](https://www.nuget.org/packages/Nerdbank.MessagePack/1.2.30)|[MIT](licenses/mit)|NerdbankMessagePack| +|[Nerdbank.MessagePack](packages/nuget.org/nerdbank.messagepack/1.3.85)|1.3.85|[nuget.org](https://www.nuget.org/packages/Nerdbank.MessagePack/1.3.85)|[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| +|[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| |[NJsonSchema](packages/nuget.org/njsonschema/11.6.1)|11.6.1|[nuget.org](https://www.nuget.org/packages/NJsonSchema/11.6.1)|[MIT](licenses/mit)|AspNetCoreNSwag| |[NJsonSchema.Annotations](packages/nuget.org/njsonschema.annotations/11.6.1)|11.6.1|[nuget.org](https://www.nuget.org/packages/NJsonSchema.Annotations/11.6.1)|[MIT](licenses/mit)|AspNetCoreNSwag| |[NJsonSchema.NewtonsoftJson](packages/nuget.org/njsonschema.newtonsoftjson/11.6.1)|11.6.1|[nuget.org](https://www.nuget.org/packages/NJsonSchema.NewtonsoftJson/11.6.1)|[MIT](licenses/mit)|AspNetCoreNSwag| @@ -93,10 +93,10 @@ Packages 124 |[NSwag.Generation](packages/nuget.org/nswag.generation/14.7.1)|14.7.1|[nuget.org](https://www.nuget.org/packages/NSwag.Generation/14.7.1)|[MIT](licenses/mit)|AspNetCoreNSwag| |[NSwag.Generation.AspNetCore](packages/nuget.org/nswag.generation.aspnetcore/14.7.1)|14.7.1|[nuget.org](https://www.nuget.org/packages/NSwag.Generation.AspNetCore/14.7.1)|[MIT](licenses/mit)|AspNetCoreNSwag| |[NUnit](packages/nuget.org/nunit/4.6.1)|4.6.1|[nuget.org](https://www.nuget.org/packages/NUnit/4.6.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| -|[NUnit3TestAdapter](packages/nuget.org/nunit3testadapter/6.2.0)|6.2.0|[nuget.org](https://www.nuget.org/packages/NUnit3TestAdapter/6.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.3.1)|1.3.1|[nuget.org](https://www.nuget.org/packages/PolyType/1.3.1)|[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| +|[NUnit3TestAdapter](packages/nuget.org/nunit3testadapter/6.3.0)|6.3.0|[nuget.org](https://www.nuget.org/packages/NUnit3TestAdapter/6.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| +|[PolyType](packages/nuget.org/polytype/1.4.1)|1.4.1|[nuget.org](https://www.nuget.org/packages/PolyType/1.4.1)|[MIT](licenses/mit)|NerdbankMessagePack| +|[protobuf-net](packages/nuget.org/protobuf-net/3.4.19)|3.4.19|[nuget.org](https://www.nuget.org/packages/protobuf-net/3.4.19)|[Apache-2.0](licenses/apache-2.0)|ProtoBuf| +|[protobuf-net.Core](packages/nuget.org/protobuf-net.core/3.4.19)|3.4.19|[nuget.org](https://www.nuget.org/packages/protobuf-net.Core/3.4.19)|[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.2.3)|10.2.3|[nuget.org](https://www.nuget.org/packages/Swashbuckle.AspNetCore.Annotations/10.2.3)|[MIT](licenses/mit)|AspNetCoreSwashbuckle internal| @@ -104,11 +104,12 @@ Packages 124 |[Swashbuckle.AspNetCore.SwaggerGen](packages/nuget.org/swashbuckle.aspnetcore.swaggergen/10.2.3)|10.2.3|[nuget.org](https://www.nuget.org/packages/Swashbuckle.AspNetCore.SwaggerGen/10.2.3)|[MIT](licenses/mit)|AspNetCoreSwashbuckle| |[Swashbuckle.AspNetCore.SwaggerUI](packages/nuget.org/swashbuckle.aspnetcore.swaggerui/10.2.3)|10.2.3|[nuget.org](https://www.nuget.org/packages/Swashbuckle.AspNetCore.SwaggerUI/10.2.3)|[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, NerdbankMessagePack, ProtoBuf, SelfHost internal| +|[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, NerdbankMessagePack, SelfHost internal| +|[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)|ProtoBuf| |[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/10.0.11)|10.0.11|[nuget.org](https://www.nuget.org/packages/System.Collections.Immutable/10.0.11)|[MIT](licenses/mit)|ProtoBuf| |[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)|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| @@ -120,10 +121,12 @@ Packages 124 |[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)|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, NerdbankMessagePack, 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, Core internal, DesignTime internal, Emit internal, MessagePack, NerdbankMessagePack, SelfHost internal| +|[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)|ProtoBuf| |[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, NerdbankMessagePack, 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.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, NerdbankMessagePack, 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, SelfHost internal| +|[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)|ProtoBuf| |[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| @@ -132,12 +135,12 @@ Packages 124 |[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, MemoryPack, MessagePack, NerdbankMessagePack, ProtoBuf| -|[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.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, 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, ProtoBuf, 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.9)|10.0.9|[nuget.org](https://www.nuget.org/packages/System.Threading.Channels/10.0.9)|[MIT](licenses/mit)|Core internal| +|[System.Threading.Channels](packages/nuget.org/system.threading.channels/10.0.11)|10.0.11|[nuget.org](https://www.nuget.org/packages/System.Threading.Channels/10.0.11)|[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| diff --git a/Examples/Directory.Packages.props b/Examples/Directory.Packages.props index 6c9b3b547..a1335ffd2 100644 --- a/Examples/Directory.Packages.props +++ b/Examples/Directory.Packages.props @@ -17,40 +17,40 @@ - - - - + + + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - + - + - + diff --git a/Sources/Directory.Packages.props b/Sources/Directory.Packages.props index ae597708a..da190ca06 100644 --- a/Sources/Directory.Packages.props +++ b/Sources/Directory.Packages.props @@ -5,34 +5,34 @@ - - + + - - - - + + + + - + - + - + - - + + - + \ No newline at end of file diff --git a/Sources/ServiceModel.Grpc.AspNetCore.TestApi/OpenApiDocument.cs b/Sources/ServiceModel.Grpc.AspNetCore.TestApi/OpenApiDocument.cs index 4b4763395..b09be6167 100644 --- a/Sources/ServiceModel.Grpc.AspNetCore.TestApi/OpenApiDocument.cs +++ b/Sources/ServiceModel.Grpc.AspNetCore.TestApi/OpenApiDocument.cs @@ -15,24 +15,23 @@ // using System.Net.Mime; -using Newtonsoft.Json; -using Newtonsoft.Json.Linq; +using System.Text.Json; using Shouldly; namespace ServiceModel.Grpc.AspNetCore.TestApi; public class OpenApiDocument { - public OpenApiDocument(JObject content) + public OpenApiDocument(JsonElement content) { Content = content; } - public JObject Content { get; } + public JsonElement Content { get; } public static async Task DownloadAsync(string location) { - JObject content; + JsonElement content; using (var client = new HttpClient()) { @@ -41,7 +40,7 @@ public static async Task DownloadAsync(string location) response.EnsureSuccessStatusCode(); using (var stream = await response.Content.ReadAsStreamAsync().ConfigureAwait(false)) { - content = (JObject)JsonSerializer.CreateDefault().Deserialize(new JsonTextReader(new StreamReader(stream)))!; + content = JsonSerializer.Deserialize(stream); } } } @@ -49,21 +48,15 @@ public static async Task DownloadAsync(string location) return new OpenApiDocument(content); } - public string GetEndpoint(string serviceName, string methodName) - { - return string.Format("/{0}/{1}", serviceName, methodName); - } + public string GetEndpoint(string serviceName, string methodName) => $"/{serviceName}/{methodName}"; public string GetRequestContentType(string endpoint) { - var post = Content.Value("paths")!.Value(endpoint)!.Value("post")!; - - post.ShouldNotBeNull(endpoint); + var body = Content.GetProperty("paths").GetProperty(endpoint).GetProperty("post").GetProperty("requestBody"); - var body = post.Value("requestBody"); - var contentType = body?.Value("content")!.Properties().First().Name; + var contentType = body.GetProperty("content").EnumerateObject().First().Name; contentType.ShouldBe(MediaTypeNames.Application.Json + "+servicemodel.grpc", "Body is empty or content type is not set."); - return contentType!; + return contentType; } } \ No newline at end of file diff --git a/Sources/ServiceModel.Grpc.AspNetCore.TestApi/SwaggerUiClient.cs b/Sources/ServiceModel.Grpc.AspNetCore.TestApi/SwaggerUiClient.cs index 0d6a8ecbb..5dc177b59 100644 --- a/Sources/ServiceModel.Grpc.AspNetCore.TestApi/SwaggerUiClient.cs +++ b/Sources/ServiceModel.Grpc.AspNetCore.TestApi/SwaggerUiClient.cs @@ -15,7 +15,7 @@ // using System.Net.Http.Headers; -using Newtonsoft.Json; +using System.Text.Json; namespace ServiceModel.Grpc.AspNetCore.TestApi; @@ -49,8 +49,8 @@ public async Task InvokeAsync(string methodName, IDictionary(new JsonTextReader(new StreamReader(content)))!; + await using var content = await response.Content.ReadAsStreamAsync().ConfigureAwait(false); + return JsonSerializer.Deserialize(content)!; } public async Task PostAsync(string methodName, IDictionary? parameters = null, IDictionary? headers = null) @@ -62,10 +62,7 @@ public async Task PostAsync(string methodName, IDictionary< using var client = new HttpClient(); using var requestBody = new MemoryStream(); - using (var writer = new StreamWriter(requestBody, leaveOpen: true)) - { - JsonSerializer.CreateDefault().Serialize(writer, parameters); - } + await JsonSerializer.SerializeAsync(requestBody, parameters).ConfigureAwait(false); HttpResponseMessage response; diff --git a/Sources/ServiceModel.Grpc.DesignTime.Generator.Test/DependenciesTest.cs b/Sources/ServiceModel.Grpc.DesignTime.Generator.Test/DependenciesTest.cs new file mode 100644 index 000000000..4ecd5a9b9 --- /dev/null +++ b/Sources/ServiceModel.Grpc.DesignTime.Generator.Test/DependenciesTest.cs @@ -0,0 +1,88 @@ +// +// 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.Metadata; +using System.Reflection.PortableExecutable; +using NUnit.Framework; + +namespace ServiceModel.Grpc.DesignTime.Generator.Test; + +// https://learn.microsoft.com/en-us/dotnet/core/compatibility/core-libraries/10.0/asyncenumerable +[TestFixture] +public class DependenciesTest +{ + [Test(Description = "#423: compile with VS2022")] + public void System_Memory() + { + var versions = Collect("System.Memory"); + versions.ShouldBe([new("4.0.1.1")]); + } + + private static HashSet Collect(string referenceName) + { + const string prefix = "ServiceModel.Grpc.DesignTime"; + + var queue = new Queue(); + queue.Enqueue($"{prefix}.Generators"); + + var result = new HashSet(); + var processed = new HashSet(StringComparer.OrdinalIgnoreCase); + + while (queue.TryDequeue(out var next)) + { + if (!processed.Add(next)) + { + continue; + } + + foreach (var reference in GetReferences($"{next}.dll")) + { + if (reference.Name.Equals(referenceName, StringComparison.OrdinalIgnoreCase)) + { + result.Add(reference.Version); + continue; + } + + if (reference.Name.Contains(prefix, StringComparison.OrdinalIgnoreCase)) + { + queue.Enqueue(reference.Name); + } + } + } + + return result; + } + + private static IEnumerable<(string Name, Version Version)> GetReferences(string peFile) + { + var path = Path.Combine(AppContext.BaseDirectory, peFile); + if (!File.Exists(path)) + { + yield break; + } + + using var stream = File.OpenRead(path); + using var reader = new PEReader(stream); + + var metadataReader = reader.GetMetadataReader(); + foreach (var item in metadataReader.AssemblyReferences) + { + var reference = metadataReader.GetAssemblyReference(item); + var name = metadataReader.GetString(reference.Name); + yield return (name, reference.Version); + } + } +} \ No newline at end of file diff --git a/Sources/ServiceModel.Grpc.DesignTime.Generator.Test/DependenciesTest.txt b/Sources/ServiceModel.Grpc.DesignTime.Generator.Test/DependenciesTest.txt deleted file mode 100644 index ef781d48c..000000000 --- a/Sources/ServiceModel.Grpc.DesignTime.Generator.Test/DependenciesTest.txt +++ /dev/null @@ -1,39 +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.Metadata; -using System.Reflection.PortableExecutable; -using NUnit.Framework; - -namespace ServiceModel.Grpc.DesignTime.Generator.Test; - -[TestFixture] -public class DependenciesTest -{ - [Test] - public void Test() - { - var path = Path.Combine(AppContext.BaseDirectory, "ServiceModel.Grpc.DesignTime.Generators.dll"); - var reader = new PEReader(File.OpenRead(path)); - var test = reader.GetMetadataReader(); - foreach (var item in test.AssemblyReferences) - { - var reference = test.GetAssemblyReference(item); - var name = test.GetString(reference.Name); - Console.WriteLine($"{name} {reference.Version}"); - } - } -} \ No newline at end of file diff --git a/Sources/Versions.props b/Sources/Versions.props index e28d0ad9c..802c0b677 100644 --- a/Sources/Versions.props +++ b/Sources/Versions.props @@ -1,5 +1,5 @@ - 1.24.0 + 1.25.0 \ No newline at end of file