From 7656ba5d81cacda3f06fe46f8eaaced667eab251 Mon Sep 17 00:00:00 2001 From: max-ieremenko Date: Sat, 8 Feb 2025 12:55:24 +0100 Subject: [PATCH 01/14] update version to 3.7.0 --- Sources/Directory.Build.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Directory.Build.props b/Sources/Directory.Build.props index a2f0e7ad..f3fe653b 100644 --- a/Sources/Directory.Build.props +++ b/Sources/Directory.Build.props @@ -20,7 +20,7 @@ - 3.6.0 + 3.7.0 $(DefaultPackageVersion) $(DefaultPackageVersion).0 From 43d7a9340875615d752000a555ff32f87a96a843 Mon Sep 17 00:00:00 2001 From: max-ieremenko Date: Sat, 8 Feb 2025 13:01:15 +0100 Subject: [PATCH 02/14] fix .net sdk installation --- Build/scripts/Install-DotNet.ps1 | 27 +++++++++++++++++++++++---- 1 file changed, 23 insertions(+), 4 deletions(-) diff --git a/Build/scripts/Install-DotNet.ps1 b/Build/scripts/Install-DotNet.ps1 index 19e87d4c..8be5fcbc 100644 --- a/Build/scripts/Install-DotNet.ps1 +++ b/Build/scripts/Install-DotNet.ps1 @@ -27,6 +27,21 @@ function Test-Version { } } +function Get-InstallationPath { + if (Get-Command -Name dotnet -ErrorAction SilentlyContinue) { + $versions = dotnet --list-sdks + foreach ($installedVersion in $versions) { + $path = ($installedVersion -split ' ')[1] + $path = $path.Trim('[', ']') + if (Test-Path $path) { + return (Split-Path -Path $path -Parent) + } + } + } + + $IsLinux ? '/usr/share/dotnet' : 'C:\Program Files\dotnet' +} + if (Get-Command -Name dotnet -ErrorAction SilentlyContinue) { $versions = dotnet --list-sdks foreach ($installedVersion in $versions) { @@ -34,17 +49,16 @@ if (Get-Command -Name dotnet -ErrorAction SilentlyContinue) { $test = ($installedVersion -split ' ')[0] if (Test-Version -Target $Version -Test $test) { - Write-Output ".net sdk $test is alredy installed" + Write-Output ".net sdk $test is already installed" return } } } -$installDir = 'C:\Program Files\dotnet' +$installDir = Get-InstallationPath $installScript = 'dotnet-install.ps1' if ($IsLinux) { - $installDir = '/usr/share/dotnet' $installScript = 'dotnet-install.sh' } @@ -63,4 +77,9 @@ if ($IsLinux) { } "$dotnetInstall -Version $Version -InstallDir $installDir" -& $dotnetInstall -Version $Version -InstallDir $installDir +if ($IsLinux -and (Get-Command -Name sudo -ErrorAction SilentlyContinue)) { + sudo /bin/bash $dotnetInstall -Version $Version -InstallDir $installDir +} +else { + & $dotnetInstall -Version $Version -InstallDir $installDir +} \ No newline at end of file From e7991e3510d367a2eface3e6260484cf6f9d4bc3 Mon Sep 17 00:00:00 2001 From: max-ieremenko Date: Sat, 8 Feb 2025 13:37:51 +0100 Subject: [PATCH 03/14] .sln remove .net6 target --- Sources/Directory.Build.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Directory.Build.props b/Sources/Directory.Build.props index f3fe653b..15ae359f 100644 --- a/Sources/Directory.Build.props +++ b/Sources/Directory.Build.props @@ -1,6 +1,6 @@ - net6.0;net8.0;net9.0 + net8.0;net9.0 Library true From 76e7f813de681b69b26e86c2b86ca6ac024c471b Mon Sep 17 00:00:00 2001 From: max-ieremenko Date: Sat, 8 Feb 2025 13:38:44 +0100 Subject: [PATCH 04/14] build remove .net6 target --- Build/build-tasks.ps1 | 6 +++--- Build/install-dependencies.ps1 | 3 +-- Build/tasks/pack-manual-download.ps1 | 2 +- Build/tasks/unit-test.ps1 | 2 +- 4 files changed, 6 insertions(+), 7 deletions(-) diff --git a/Build/build-tasks.ps1 b/Build/build-tasks.ps1 index f51e6a7c..7915dcc4 100644 --- a/Build/build-tasks.ps1 +++ b/Build/build-tasks.ps1 @@ -17,7 +17,7 @@ Enter-Build { bin = [System.IO.Path]::GetFullPath((Join-Path $PSScriptRoot '../Sources/bin')) repository = [System.IO.Path]::GetFullPath((Join-Path $PSScriptRoot '../ThirdPartyLibraries')) examples = [System.IO.Path]::GetFullPath((Join-Path $PSScriptRoot '../Examples')) - frameworks = 'net6.0', 'net8.0', 'net9.0' + frameworks = 'net8.0', 'net9.0' version = $( $buildProps = [System.IO.Path]::GetFullPath((Join-Path $PSScriptRoot '../Sources/Directory.Build.props')) $packageVersion = (Select-Xml -Path $buildProps -XPath 'Project/PropertyGroup/DefaultPackageVersion').Node.InnerText @@ -52,7 +52,7 @@ task Build { task ThirdPartyNotices { Invoke-Build ` -File 'tasks/third-party-notices.ps1' ` - -AppPath (Join-Path $settings.bin 'app/net6.0/ThirdPartyLibraries.dll') ` + -AppPath (Join-Path $settings.bin 'app/net8.0/ThirdPartyLibraries.dll') ` -Version $settings.version ` -SourcesPath $settings.sources ` -RepositoryPath $settings.repository ` @@ -146,7 +146,7 @@ task PsCoreTest { } task UpdateExamples { - $appPath = Join-Path $settings.bin 'app/net6.0/ThirdPartyLibraries.dll' + $appPath = Join-Path $settings.bin 'app/net8.0/ThirdPartyLibraries.dll' $builds = @() $examples = Get-ChildItem -Path (Join-Path $settings.examples 'third-party-notices-template') -Directory diff --git a/Build/install-dependencies.ps1 b/Build/install-dependencies.ps1 index f99cc32a..d181b3d6 100644 --- a/Build/install-dependencies.ps1 +++ b/Build/install-dependencies.ps1 @@ -15,8 +15,7 @@ $ErrorActionPreference = 'Stop' if (-not $List -or ('.net' -in $List)) { $install = Join-Path $PSScriptRoot 'scripts/Install-DotNet.ps1' - & $install '6.0.418' - & $install '9.0.100-rc.2.24474.11' + & $install '8.0.403' & $install (Get-Content -Raw (Join-Path $PSScriptRoot '../Sources/global.json') | ConvertFrom-Json).sdk.version } diff --git a/Build/tasks/pack-manual-download.ps1 b/Build/tasks/pack-manual-download.ps1 index 0b21f5dc..0d4b89b4 100644 --- a/Build/tasks/pack-manual-download.ps1 +++ b/Build/tasks/pack-manual-download.ps1 @@ -10,7 +10,7 @@ param( $Version, [Parameter(Mandatory = $true)] - [ValidateSet('net6.0', 'net8.0', 'net9.0')] + [ValidateSet('net8.0', 'net9.0')] [string] $Framework, diff --git a/Build/tasks/unit-test.ps1 b/Build/tasks/unit-test.ps1 index 866ef75e..b297c13c 100644 --- a/Build/tasks/unit-test.ps1 +++ b/Build/tasks/unit-test.ps1 @@ -6,7 +6,7 @@ param ( $BinPath, [Parameter(Mandatory = $true)] - [ValidateSet('net6.0', 'net8.0', 'net9.0')] + [ValidateSet('net8.0', 'net9.0')] [string] $Framework ) From b58057c5f003d369c2023b511de2e696ac40bdc1 Mon Sep 17 00:00:00 2001 From: max-ieremenko Date: Sat, 8 Feb 2025 13:39:30 +0100 Subject: [PATCH 05/14] update third party notices --- .../configureawaitchecker.analyzer/5.0.0.1/index.json | 1 - .../configureawaitchecker.analyzer/5.0.0.1/readme.md | 2 +- .../microsoft.bcl.asyncinterfaces/8.0.0/index.json | 2 -- .../microsoft.bcl.asyncinterfaces/8.0.0/readme.md | 2 +- .../nuget.org/microsoft.codecoverage/17.11.1/index.json | 1 - .../nuget.org/microsoft.codecoverage/17.11.1/readme.md | 2 +- .../8.0.0/index.json | 2 -- .../8.0.0/readme.md | 2 +- .../8.0.2/index.json | 2 -- .../8.0.2/readme.md | 2 +- .../8.0.0/index.json | 2 -- .../8.0.0/readme.md | 2 +- .../8.0.1/index.json | 2 -- .../8.0.1/readme.md | 2 +- .../8.0.1/index.json | 6 ------ .../8.0.1/readme.md | 5 ++--- .../8.0.1/index.json | 2 -- .../8.0.1/readme.md | 2 +- .../microsoft.extensions.configuration/8.0.0/index.json | 2 -- .../microsoft.extensions.configuration/8.0.0/readme.md | 2 +- .../8.0.0/index.json | 2 -- .../8.0.0/readme.md | 2 +- .../8.0.0/index.json | 2 -- .../8.0.0/readme.md | 2 +- .../8.0.0/index.json | 2 -- .../8.0.0/readme.md | 2 +- .../microsoft.extensions.primitives/8.0.0/index.json | 8 -------- .../microsoft.extensions.primitives/8.0.0/readme.md | 7 ++----- .../nuget.org/microsoft.net.test.sdk/17.11.1/index.json | 1 - .../nuget.org/microsoft.net.test.sdk/17.11.1/readme.md | 2 +- .../microsoft.sourcelink.github/8.0.0/index.json | 1 - .../nuget.org/microsoft.sourcelink.github/8.0.0/readme.md | 2 +- .../microsoft.testplatform.objectmodel/17.11.1/index.json | 1 - .../microsoft.testplatform.objectmodel/17.11.1/readme.md | 2 +- .../microsoft.testplatform.testhost/17.11.1/index.json | 1 - .../microsoft.testplatform.testhost/17.11.1/readme.md | 2 +- .../packages/nuget.org/newtonsoft.json/13.0.1/index.json | 1 - .../packages/nuget.org/newtonsoft.json/13.0.1/readme.md | 2 +- .../packages/nuget.org/nunit3testadapter/4.6.0/index.json | 2 -- .../packages/nuget.org/nunit3testadapter/4.6.0/readme.md | 2 +- .../stylecop.analyzers.unstable/1.2.0.556/index.json | 1 - .../stylecop.analyzers.unstable/1.2.0.556/readme.md | 2 +- .../packages/nuget.org/system.buffers/4.5.1/index.json | 2 -- .../packages/nuget.org/system.buffers/4.5.1/readme.md | 2 +- .../packages/nuget.org/system.memory/4.5.5/index.json | 1 - .../packages/nuget.org/system.memory/4.5.5/readme.md | 2 +- .../nuget.org/system.numerics.vectors/4.4.0/index.json | 2 -- .../nuget.org/system.numerics.vectors/4.4.0/readme.md | 2 +- .../nuget.org/system.reflection.metadata/1.6.0/index.json | 2 -- .../nuget.org/system.reflection.metadata/1.6.0/readme.md | 2 +- .../6.0.0/index.json | 3 --- .../6.0.0/readme.md | 2 +- .../nuget.org/system.text.encodings.web/8.0.0/index.json | 1 - .../nuget.org/system.text.encodings.web/8.0.0/readme.md | 2 +- .../packages/nuget.org/system.text.json/8.0.5/index.json | 1 - .../packages/nuget.org/system.text.json/8.0.5/readme.md | 2 +- .../system.threading.tasks.extensions/4.5.4/index.json | 1 - .../system.threading.tasks.extensions/4.5.4/readme.md | 2 +- 58 files changed, 31 insertions(+), 92 deletions(-) diff --git a/ThirdPartyLibraries/packages/nuget.org/configureawaitchecker.analyzer/5.0.0.1/index.json b/ThirdPartyLibraries/packages/nuget.org/configureawaitchecker.analyzer/5.0.0.1/index.json index 17a7f187..80d4bf6d 100644 --- a/ThirdPartyLibraries/packages/nuget.org/configureawaitchecker.analyzer/5.0.0.1/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/configureawaitchecker.analyzer/5.0.0.1/index.json @@ -9,7 +9,6 @@ "Name": "ThirdPartyLibraries", "InternalOnly": true, "TargetFrameworks": [ - "net6.0", "net8.0", "net9.0", "netstandard2.1" diff --git a/ThirdPartyLibraries/packages/nuget.org/configureawaitchecker.analyzer/5.0.0.1/readme.md b/ThirdPartyLibraries/packages/nuget.org/configureawaitchecker.analyzer/5.0.0.1/readme.md index da1a3951..b8e1a24f 100644 --- a/ThirdPartyLibraries/packages/nuget.org/configureawaitchecker.analyzer/5.0.0.1/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/configureawaitchecker.analyzer/5.0.0.1/readme.md @@ -3,7 +3,7 @@ ConfigureAwaitChecker.Analyzer [5.0.0.1](https://www.nuget.org/packages/Configur Used by: ThirdPartyLibraries internal -Target frameworks: net6.0, net8.0, net9.0, netstandard2.1 +Target frameworks: net8.0, net9.0, netstandard2.1 License: [MIT](../../../../licenses/mit) diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/index.json index c9760d67..c63be3fa 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/index.json @@ -9,7 +9,6 @@ "Name": "ThirdPartyLibraries", "InternalOnly": false, "TargetFrameworks": [ - "net6.0", "net8.0", "net9.0", "netstandard2.1" @@ -29,7 +28,6 @@ }, { "Subject": "project", - "Code": null, "HRef": "https://dot.net/" } ] diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/readme.md index 27b83375..ffbe86bc 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/readme.md @@ -3,7 +3,7 @@ Microsoft.Bcl.AsyncInterfaces [8.0.0](https://www.nuget.org/packages/Microsoft.B Used by: ThirdPartyLibraries -Target frameworks: net6.0, net8.0, net9.0, netstandard2.1 +Target frameworks: net8.0, net9.0, netstandard2.1 License: [MIT](../../../../licenses/mit) diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.11.1/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.11.1/index.json index 0d530281..9832dc50 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.11.1/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.11.1/index.json @@ -9,7 +9,6 @@ "Name": "ThirdPartyLibraries", "InternalOnly": true, "TargetFrameworks": [ - "net6.0", "net8.0", "net9.0" ] diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.11.1/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.11.1/readme.md index 189c4306..01f5f9f9 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.11.1/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.11.1/readme.md @@ -3,7 +3,7 @@ Microsoft.CodeCoverage [17.11.1](https://www.nuget.org/packages/Microsoft.CodeCo Used by: ThirdPartyLibraries internal -Target frameworks: net6.0, net8.0, net9.0 +Target frameworks: net8.0, net9.0 License: [MIT](../../../../licenses/mit) diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/index.json index 97d922e3..ebeab4cf 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/index.json @@ -9,7 +9,6 @@ "Name": "ThirdPartyLibraries", "InternalOnly": false, "TargetFrameworks": [ - "net6.0", "net8.0", "net9.0", "netstandard2.1" @@ -35,7 +34,6 @@ }, { "Subject": "project", - "Code": null, "HRef": "https://dot.net/" } ] diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/readme.md index 4b9225f4..f388577b 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/readme.md @@ -3,7 +3,7 @@ Microsoft.Extensions.Configuration.Abstractions [8.0.0](https://www.nuget.org/pa Used by: ThirdPartyLibraries -Target frameworks: net6.0, net8.0, net9.0, netstandard2.1 +Target frameworks: net8.0, net9.0, netstandard2.1 License: [MIT](../../../../licenses/mit) diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.2/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.2/index.json index 7f1309e1..95270e39 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.2/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.2/index.json @@ -9,7 +9,6 @@ "Name": "ThirdPartyLibraries", "InternalOnly": false, "TargetFrameworks": [ - "net6.0", "net8.0", "net9.0", "netstandard2.1" @@ -35,7 +34,6 @@ }, { "Subject": "project", - "Code": null, "HRef": "https://dot.net/" } ] diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.2/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.2/readme.md index 64aa5784..a6ee33d4 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.2/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.2/readme.md @@ -3,7 +3,7 @@ Microsoft.Extensions.Configuration.Binder [8.0.2](https://www.nuget.org/packages Used by: ThirdPartyLibraries -Target frameworks: net6.0, net8.0, net9.0, netstandard2.1 +Target frameworks: net8.0, net9.0, netstandard2.1 License: [MIT](../../../../licenses/mit) diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/8.0.0/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/8.0.0/index.json index 3530f964..3359d6f2 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/8.0.0/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/8.0.0/index.json @@ -9,7 +9,6 @@ "Name": "ThirdPartyLibraries", "InternalOnly": false, "TargetFrameworks": [ - "net6.0", "net8.0", "net9.0", "netstandard2.1" @@ -39,7 +38,6 @@ }, { "Subject": "project", - "Code": null, "HRef": "https://dot.net/" } ] diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/8.0.0/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/8.0.0/readme.md index 86a2fedc..301ae831 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/8.0.0/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/8.0.0/readme.md @@ -3,7 +3,7 @@ Microsoft.Extensions.Configuration.EnvironmentVariables [8.0.0](https://www.nuge Used by: ThirdPartyLibraries -Target frameworks: net6.0, net8.0, net9.0, netstandard2.1 +Target frameworks: net8.0, net9.0, netstandard2.1 License: [MIT](../../../../licenses/mit) diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/8.0.1/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/8.0.1/index.json index 8377b54b..2fe9518c 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/8.0.1/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/8.0.1/index.json @@ -9,7 +9,6 @@ "Name": "ThirdPartyLibraries", "InternalOnly": false, "TargetFrameworks": [ - "net6.0", "net8.0", "net9.0", "netstandard2.1" @@ -51,7 +50,6 @@ }, { "Subject": "project", - "Code": null, "HRef": "https://dot.net/" } ] diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/8.0.1/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/8.0.1/readme.md index 6fbe7a73..3861bddc 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/8.0.1/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/8.0.1/readme.md @@ -3,7 +3,7 @@ Microsoft.Extensions.Configuration.FileExtensions [8.0.1](https://www.nuget.org/ Used by: ThirdPartyLibraries -Target frameworks: net6.0, net8.0, net9.0, netstandard2.1 +Target frameworks: net8.0, net9.0, netstandard2.1 License: [MIT](../../../../licenses/mit) diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/8.0.1/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/8.0.1/index.json index 6a67c146..69a13cf8 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/8.0.1/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/8.0.1/index.json @@ -9,7 +9,6 @@ "Name": "ThirdPartyLibraries", "InternalOnly": false, "TargetFrameworks": [ - "net6.0", "net8.0", "net9.0", "netstandard2.1" @@ -30,10 +29,6 @@ { "Name": "Microsoft.Extensions.FileProviders.Abstractions", "Version": "8.0.0" - }, - { - "Name": "System.Text.Json", - "Version": "8.0.5" } ] } @@ -51,7 +46,6 @@ }, { "Subject": "project", - "Code": null, "HRef": "https://dot.net/" } ] diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/8.0.1/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/8.0.1/readme.md index 8c8853de..9ae95ec5 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/8.0.1/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/8.0.1/readme.md @@ -3,7 +3,7 @@ Microsoft.Extensions.Configuration.Json [8.0.1](https://www.nuget.org/packages/M Used by: ThirdPartyLibraries -Target frameworks: net6.0, net8.0, net9.0, netstandard2.1 +Target frameworks: net8.0, net9.0, netstandard2.1 License: [MIT](../../../../licenses/mit) @@ -20,7 +20,7 @@ Remarks no remarks -Dependencies 5 +Dependencies 4 ----------- |Name|Version| @@ -29,6 +29,5 @@ Dependencies 5 |[Microsoft.Extensions.Configuration.Abstractions](../../../../packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0)|8.0.0| |[Microsoft.Extensions.Configuration.FileExtensions](../../../../packages/nuget.org/microsoft.extensions.configuration.fileextensions/8.0.1)|8.0.1| |[Microsoft.Extensions.FileProviders.Abstractions](../../../../packages/nuget.org/microsoft.extensions.fileproviders.abstractions/8.0.0)|8.0.0| -|[System.Text.Json](../../../../packages/nuget.org/system.text.json/8.0.5)|8.0.5| *This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/8.0.1/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/8.0.1/index.json index b6c8c81c..18cbeca1 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/8.0.1/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/8.0.1/index.json @@ -9,7 +9,6 @@ "Name": "ThirdPartyLibraries", "InternalOnly": false, "TargetFrameworks": [ - "net6.0", "net8.0", "net9.0", "netstandard2.1" @@ -47,7 +46,6 @@ }, { "Subject": "project", - "Code": null, "HRef": "https://dot.net/" } ] diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/8.0.1/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/8.0.1/readme.md index cb40ae01..562c9ea7 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/8.0.1/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/8.0.1/readme.md @@ -3,7 +3,7 @@ Microsoft.Extensions.Configuration.UserSecrets [8.0.1](https://www.nuget.org/pac Used by: ThirdPartyLibraries -Target frameworks: net6.0, net8.0, net9.0, netstandard2.1 +Target frameworks: net8.0, net9.0, netstandard2.1 License: [MIT](../../../../licenses/mit) diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/index.json index 8b7c5c05..56805067 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/index.json @@ -9,7 +9,6 @@ "Name": "ThirdPartyLibraries", "InternalOnly": false, "TargetFrameworks": [ - "net6.0", "net8.0", "net9.0", "netstandard2.1" @@ -39,7 +38,6 @@ }, { "Subject": "project", - "Code": null, "HRef": "https://dot.net/" } ] diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/readme.md index 5c5367c3..10a233f9 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/readme.md @@ -3,7 +3,7 @@ Microsoft.Extensions.Configuration [8.0.0](https://www.nuget.org/packages/Micros Used by: ThirdPartyLibraries -Target frameworks: net6.0, net8.0, net9.0, netstandard2.1 +Target frameworks: net8.0, net9.0, netstandard2.1 License: [MIT](../../../../licenses/mit) diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/8.0.0/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/8.0.0/index.json index 97d922e3..ebeab4cf 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/8.0.0/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/8.0.0/index.json @@ -9,7 +9,6 @@ "Name": "ThirdPartyLibraries", "InternalOnly": false, "TargetFrameworks": [ - "net6.0", "net8.0", "net9.0", "netstandard2.1" @@ -35,7 +34,6 @@ }, { "Subject": "project", - "Code": null, "HRef": "https://dot.net/" } ] diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/8.0.0/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/8.0.0/readme.md index 6f4d76e6..a682f12a 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/8.0.0/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/8.0.0/readme.md @@ -3,7 +3,7 @@ Microsoft.Extensions.FileProviders.Abstractions [8.0.0](https://www.nuget.org/pa Used by: ThirdPartyLibraries -Target frameworks: net6.0, net8.0, net9.0, netstandard2.1 +Target frameworks: net8.0, net9.0, netstandard2.1 License: [MIT](../../../../licenses/mit) diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/8.0.0/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/8.0.0/index.json index 2a8ea0b5..9f52d721 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/8.0.0/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/8.0.0/index.json @@ -9,7 +9,6 @@ "Name": "ThirdPartyLibraries", "InternalOnly": false, "TargetFrameworks": [ - "net6.0", "net8.0", "net9.0", "netstandard2.1" @@ -43,7 +42,6 @@ }, { "Subject": "project", - "Code": null, "HRef": "https://dot.net/" } ] diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/8.0.0/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/8.0.0/readme.md index 0a9f1c52..c3993059 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/8.0.0/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/8.0.0/readme.md @@ -3,7 +3,7 @@ Microsoft.Extensions.FileProviders.Physical [8.0.0](https://www.nuget.org/packag Used by: ThirdPartyLibraries -Target frameworks: net6.0, net8.0, net9.0, netstandard2.1 +Target frameworks: net8.0, net9.0, netstandard2.1 License: [MIT](../../../../licenses/mit) diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/8.0.0/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/8.0.0/index.json index c9760d67..c63be3fa 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/8.0.0/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/8.0.0/index.json @@ -9,7 +9,6 @@ "Name": "ThirdPartyLibraries", "InternalOnly": false, "TargetFrameworks": [ - "net6.0", "net8.0", "net9.0", "netstandard2.1" @@ -29,7 +28,6 @@ }, { "Subject": "project", - "Code": null, "HRef": "https://dot.net/" } ] diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/8.0.0/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/8.0.0/readme.md index 8da5bc94..c05ccb04 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/8.0.0/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/8.0.0/readme.md @@ -3,7 +3,7 @@ Microsoft.Extensions.FileSystemGlobbing [8.0.0](https://www.nuget.org/packages/M Used by: ThirdPartyLibraries -Target frameworks: net6.0, net8.0, net9.0, netstandard2.1 +Target frameworks: net8.0, net9.0, netstandard2.1 License: [MIT](../../../../licenses/mit) diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/index.json index 47bbf27b..c63be3fa 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/index.json @@ -9,16 +9,9 @@ "Name": "ThirdPartyLibraries", "InternalOnly": false, "TargetFrameworks": [ - "net6.0", "net8.0", "net9.0", "netstandard2.1" - ], - "Dependencies": [ - { - "Name": "System.Runtime.CompilerServices.Unsafe", - "Version": "6.0.0" - } ] } ], @@ -35,7 +28,6 @@ }, { "Subject": "project", - "Code": null, "HRef": "https://dot.net/" } ] diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/readme.md index 18f750f2..f80ee9a8 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/readme.md @@ -3,7 +3,7 @@ Microsoft.Extensions.Primitives [8.0.0](https://www.nuget.org/packages/Microsoft Used by: ThirdPartyLibraries -Target frameworks: net6.0, net8.0, net9.0, netstandard2.1 +Target frameworks: net8.0, net9.0, netstandard2.1 License: [MIT](../../../../licenses/mit) @@ -25,11 +25,8 @@ Remarks no remarks -Dependencies 1 +Dependencies 0 ----------- -|Name|Version| -|----------|:----| -|[System.Runtime.CompilerServices.Unsafe](../../../../packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0)|6.0.0| *This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/index.json index e58d5d0d..70c832c2 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/index.json @@ -9,7 +9,6 @@ "Name": "ThirdPartyLibraries", "InternalOnly": true, "TargetFrameworks": [ - "net6.0", "net8.0", "net9.0" ], diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/readme.md index b790cd08..542406e2 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/readme.md @@ -3,7 +3,7 @@ Microsoft.NET.Test.Sdk [17.11.1](https://www.nuget.org/packages/Microsoft.NET.Te Used by: ThirdPartyLibraries internal -Target frameworks: net6.0, net8.0, net9.0 +Target frameworks: net8.0, net9.0 License: [MIT](../../../../licenses/mit) diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.sourcelink.github/8.0.0/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.sourcelink.github/8.0.0/index.json index afcc60de..06608f2c 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.sourcelink.github/8.0.0/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.sourcelink.github/8.0.0/index.json @@ -9,7 +9,6 @@ "Name": "ThirdPartyLibraries", "InternalOnly": true, "TargetFrameworks": [ - "net6.0", "net8.0", "net9.0", "netstandard2.1" diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.sourcelink.github/8.0.0/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.sourcelink.github/8.0.0/readme.md index 85bb2155..6a03ce51 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.sourcelink.github/8.0.0/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.sourcelink.github/8.0.0/readme.md @@ -3,7 +3,7 @@ Microsoft.SourceLink.GitHub [8.0.0](https://www.nuget.org/packages/Microsoft.Sou Used by: ThirdPartyLibraries internal -Target frameworks: net6.0, net8.0, net9.0, netstandard2.1 +Target frameworks: net8.0, net9.0, netstandard2.1 License: [MIT](../../../../licenses/mit) diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/index.json index 1e5877de..5834e659 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/index.json @@ -9,7 +9,6 @@ "Name": "ThirdPartyLibraries", "InternalOnly": true, "TargetFrameworks": [ - "net6.0", "net8.0", "net9.0" ], diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/readme.md index 9bbd0e84..62a22607 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/readme.md @@ -3,7 +3,7 @@ Microsoft.TestPlatform.ObjectModel [17.11.1](https://www.nuget.org/packages/Micr Used by: ThirdPartyLibraries internal -Target frameworks: net6.0, net8.0, net9.0 +Target frameworks: net8.0, net9.0 License: [MIT](../../../../licenses/mit) diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/index.json index d625182a..319d922b 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/index.json @@ -9,7 +9,6 @@ "Name": "ThirdPartyLibraries", "InternalOnly": true, "TargetFrameworks": [ - "net6.0", "net8.0", "net9.0" ], diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/readme.md index 900f65d3..8c168b32 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/readme.md @@ -3,7 +3,7 @@ Microsoft.TestPlatform.TestHost [17.11.1](https://www.nuget.org/packages/Microso Used by: ThirdPartyLibraries internal -Target frameworks: net6.0, net8.0, net9.0 +Target frameworks: net8.0, net9.0 License: [MIT](../../../../licenses/mit) diff --git a/ThirdPartyLibraries/packages/nuget.org/newtonsoft.json/13.0.1/index.json b/ThirdPartyLibraries/packages/nuget.org/newtonsoft.json/13.0.1/index.json index 5513de6d..e3874eeb 100644 --- a/ThirdPartyLibraries/packages/nuget.org/newtonsoft.json/13.0.1/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/newtonsoft.json/13.0.1/index.json @@ -9,7 +9,6 @@ "Name": "ThirdPartyLibraries", "InternalOnly": true, "TargetFrameworks": [ - "net6.0", "net8.0", "net9.0" ] diff --git a/ThirdPartyLibraries/packages/nuget.org/newtonsoft.json/13.0.1/readme.md b/ThirdPartyLibraries/packages/nuget.org/newtonsoft.json/13.0.1/readme.md index f510f6ff..5c9319da 100644 --- a/ThirdPartyLibraries/packages/nuget.org/newtonsoft.json/13.0.1/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/newtonsoft.json/13.0.1/readme.md @@ -3,7 +3,7 @@ Newtonsoft.Json [13.0.1](https://www.nuget.org/packages/Newtonsoft.Json/13.0.1) Used by: ThirdPartyLibraries internal -Target frameworks: net6.0, net8.0, net9.0 +Target frameworks: net8.0, net9.0 License: [MIT](../../../../licenses/mit) diff --git a/ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/4.6.0/index.json b/ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/4.6.0/index.json index bbf6b541..2e548157 100644 --- a/ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/4.6.0/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/4.6.0/index.json @@ -9,7 +9,6 @@ "Name": "ThirdPartyLibraries", "InternalOnly": true, "TargetFrameworks": [ - "net6.0", "net8.0", "net9.0" ] @@ -28,7 +27,6 @@ }, { "Subject": "project", - "Code": null, "HRef": "https://docs.nunit.org/articles/vs-test-adapter/Index.html" } ] diff --git a/ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/4.6.0/readme.md b/ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/4.6.0/readme.md index 5853a54f..34507118 100644 --- a/ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/4.6.0/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/4.6.0/readme.md @@ -3,7 +3,7 @@ NUnit3TestAdapter [4.6.0](https://www.nuget.org/packages/NUnit3TestAdapter/4.6.0 Used by: ThirdPartyLibraries internal -Target frameworks: net6.0, net8.0, net9.0 +Target frameworks: net8.0, net9.0 License: [MIT](../../../../licenses/mit) diff --git a/ThirdPartyLibraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.556/index.json b/ThirdPartyLibraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.556/index.json index 712c5b3d..5b36284e 100644 --- a/ThirdPartyLibraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.556/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.556/index.json @@ -9,7 +9,6 @@ "Name": "ThirdPartyLibraries", "InternalOnly": true, "TargetFrameworks": [ - "net6.0", "net8.0", "net9.0", "netstandard2.1" diff --git a/ThirdPartyLibraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.556/readme.md b/ThirdPartyLibraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.556/readme.md index 9c3a5066..fc4ed572 100644 --- a/ThirdPartyLibraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.556/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.556/readme.md @@ -3,7 +3,7 @@ StyleCop.Analyzers.Unstable [1.2.0.556](https://www.nuget.org/packages/StyleCop. Used by: ThirdPartyLibraries internal -Target frameworks: net6.0, net8.0, net9.0, netstandard2.1 +Target frameworks: net8.0, net9.0, netstandard2.1 License: [MIT](../../../../licenses/mit) diff --git a/ThirdPartyLibraries/packages/nuget.org/system.buffers/4.5.1/index.json b/ThirdPartyLibraries/packages/nuget.org/system.buffers/4.5.1/index.json index 1b45804d..88b952dc 100644 --- a/ThirdPartyLibraries/packages/nuget.org/system.buffers/4.5.1/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/system.buffers/4.5.1/index.json @@ -9,7 +9,6 @@ "Name": "ThirdPartyLibraries", "InternalOnly": false, "TargetFrameworks": [ - "net6.0", "net8.0", "net9.0", "netstandard2.1" @@ -24,7 +23,6 @@ }, { "Subject": "project", - "Code": null, "HRef": "https://dot.net/", "Description": "License should be verified on https://dot.net/" } diff --git a/ThirdPartyLibraries/packages/nuget.org/system.buffers/4.5.1/readme.md b/ThirdPartyLibraries/packages/nuget.org/system.buffers/4.5.1/readme.md index 89355cf3..c152e891 100644 --- a/ThirdPartyLibraries/packages/nuget.org/system.buffers/4.5.1/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/system.buffers/4.5.1/readme.md @@ -3,7 +3,7 @@ System.Buffers [4.5.1](https://www.nuget.org/packages/System.Buffers/4.5.1) Used by: ThirdPartyLibraries -Target frameworks: net6.0, net8.0, net9.0, netstandard2.1 +Target frameworks: net8.0, net9.0, netstandard2.1 License: [MIT](../../../../licenses/mit) diff --git a/ThirdPartyLibraries/packages/nuget.org/system.memory/4.5.5/index.json b/ThirdPartyLibraries/packages/nuget.org/system.memory/4.5.5/index.json index 3afe42c7..ac0e1165 100644 --- a/ThirdPartyLibraries/packages/nuget.org/system.memory/4.5.5/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/system.memory/4.5.5/index.json @@ -9,7 +9,6 @@ "Name": "ThirdPartyLibraries", "InternalOnly": false, "TargetFrameworks": [ - "net6.0", "net8.0", "net9.0", "netstandard2.1" diff --git a/ThirdPartyLibraries/packages/nuget.org/system.memory/4.5.5/readme.md b/ThirdPartyLibraries/packages/nuget.org/system.memory/4.5.5/readme.md index fad71256..ce9407da 100644 --- a/ThirdPartyLibraries/packages/nuget.org/system.memory/4.5.5/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/system.memory/4.5.5/readme.md @@ -3,7 +3,7 @@ System.Memory [4.5.5](https://www.nuget.org/packages/System.Memory/4.5.5) Used by: ThirdPartyLibraries -Target frameworks: net6.0, net8.0, net9.0, netstandard2.1 +Target frameworks: net8.0, net9.0, netstandard2.1 License: [MIT](../../../../licenses/mit) diff --git a/ThirdPartyLibraries/packages/nuget.org/system.numerics.vectors/4.4.0/index.json b/ThirdPartyLibraries/packages/nuget.org/system.numerics.vectors/4.4.0/index.json index 1b45804d..88b952dc 100644 --- a/ThirdPartyLibraries/packages/nuget.org/system.numerics.vectors/4.4.0/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/system.numerics.vectors/4.4.0/index.json @@ -9,7 +9,6 @@ "Name": "ThirdPartyLibraries", "InternalOnly": false, "TargetFrameworks": [ - "net6.0", "net8.0", "net9.0", "netstandard2.1" @@ -24,7 +23,6 @@ }, { "Subject": "project", - "Code": null, "HRef": "https://dot.net/", "Description": "License should be verified on https://dot.net/" } diff --git a/ThirdPartyLibraries/packages/nuget.org/system.numerics.vectors/4.4.0/readme.md b/ThirdPartyLibraries/packages/nuget.org/system.numerics.vectors/4.4.0/readme.md index b53e5c69..ba29ad86 100644 --- a/ThirdPartyLibraries/packages/nuget.org/system.numerics.vectors/4.4.0/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/system.numerics.vectors/4.4.0/readme.md @@ -3,7 +3,7 @@ System.Numerics.Vectors [4.4.0](https://www.nuget.org/packages/System.Numerics.V Used by: ThirdPartyLibraries -Target frameworks: net6.0, net8.0, net9.0, netstandard2.1 +Target frameworks: net8.0, net9.0, netstandard2.1 License: [MIT](../../../../licenses/mit) diff --git a/ThirdPartyLibraries/packages/nuget.org/system.reflection.metadata/1.6.0/index.json b/ThirdPartyLibraries/packages/nuget.org/system.reflection.metadata/1.6.0/index.json index 18ad57bd..96bc16bc 100644 --- a/ThirdPartyLibraries/packages/nuget.org/system.reflection.metadata/1.6.0/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/system.reflection.metadata/1.6.0/index.json @@ -9,7 +9,6 @@ "Name": "ThirdPartyLibraries", "InternalOnly": true, "TargetFrameworks": [ - "net6.0", "net8.0", "net9.0" ] @@ -23,7 +22,6 @@ }, { "Subject": "project", - "Code": null, "HRef": "https://dot.net/", "Description": "License should be verified on https://dot.net/" } diff --git a/ThirdPartyLibraries/packages/nuget.org/system.reflection.metadata/1.6.0/readme.md b/ThirdPartyLibraries/packages/nuget.org/system.reflection.metadata/1.6.0/readme.md index 11e3628c..64701c2e 100644 --- a/ThirdPartyLibraries/packages/nuget.org/system.reflection.metadata/1.6.0/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/system.reflection.metadata/1.6.0/readme.md @@ -3,7 +3,7 @@ System.Reflection.Metadata [1.6.0](https://www.nuget.org/packages/System.Reflect Used by: ThirdPartyLibraries internal -Target frameworks: net6.0, net8.0, net9.0 +Target frameworks: net8.0, net9.0 License: [MIT](../../../../licenses/mit) diff --git a/ThirdPartyLibraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0/index.json b/ThirdPartyLibraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0/index.json index ac4520f5..b9ad1ec1 100644 --- a/ThirdPartyLibraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0/index.json @@ -9,7 +9,6 @@ "Name": "ThirdPartyLibraries", "InternalOnly": false, "TargetFrameworks": [ - "net6.0", "net8.0", "net9.0", "netstandard2.1" @@ -24,13 +23,11 @@ }, { "Subject": "repository", - "Code": null, "HRef": "https://github.com/dotnet/runtime", "Description": "License should be verified on https://github.com/dotnet/runtime" }, { "Subject": "project", - "Code": null, "HRef": "https://dot.net/", "Description": "License should be verified on https://dot.net/" } diff --git a/ThirdPartyLibraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0/readme.md b/ThirdPartyLibraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0/readme.md index e488085b..76f3ac85 100644 --- a/ThirdPartyLibraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0/readme.md @@ -3,7 +3,7 @@ System.Runtime.CompilerServices.Unsafe [6.0.0](https://www.nuget.org/packages/Sy Used by: ThirdPartyLibraries -Target frameworks: net6.0, net8.0, net9.0, netstandard2.1 +Target frameworks: net8.0, net9.0, netstandard2.1 License: [MIT](../../../../licenses/mit) diff --git a/ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/8.0.0/index.json b/ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/8.0.0/index.json index 748d986d..9b9a108f 100644 --- a/ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/8.0.0/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/8.0.0/index.json @@ -9,7 +9,6 @@ "Name": "ThirdPartyLibraries", "InternalOnly": false, "TargetFrameworks": [ - "net6.0", "net8.0", "net9.0", "netstandard2.1" diff --git a/ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/8.0.0/readme.md b/ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/8.0.0/readme.md index 8d4179d5..8a46c078 100644 --- a/ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/8.0.0/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/8.0.0/readme.md @@ -3,7 +3,7 @@ System.Text.Encodings.Web [8.0.0](https://www.nuget.org/packages/System.Text.Enc Used by: ThirdPartyLibraries -Target frameworks: net6.0, net8.0, net9.0, netstandard2.1 +Target frameworks: net8.0, net9.0, netstandard2.1 License: [MIT](../../../../licenses/mit) diff --git a/ThirdPartyLibraries/packages/nuget.org/system.text.json/8.0.5/index.json b/ThirdPartyLibraries/packages/nuget.org/system.text.json/8.0.5/index.json index 0f04eb98..6fa7e321 100644 --- a/ThirdPartyLibraries/packages/nuget.org/system.text.json/8.0.5/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/system.text.json/8.0.5/index.json @@ -9,7 +9,6 @@ "Name": "ThirdPartyLibraries", "InternalOnly": false, "TargetFrameworks": [ - "net6.0", "net8.0", "net9.0", "netstandard2.1" diff --git a/ThirdPartyLibraries/packages/nuget.org/system.text.json/8.0.5/readme.md b/ThirdPartyLibraries/packages/nuget.org/system.text.json/8.0.5/readme.md index 314304e8..16bfffd5 100644 --- a/ThirdPartyLibraries/packages/nuget.org/system.text.json/8.0.5/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/system.text.json/8.0.5/readme.md @@ -3,7 +3,7 @@ System.Text.Json [8.0.5](https://www.nuget.org/packages/System.Text.Json/8.0.5) Used by: ThirdPartyLibraries -Target frameworks: net6.0, net8.0, net9.0, netstandard2.1 +Target frameworks: net8.0, net9.0, netstandard2.1 License: [MIT](../../../../licenses/mit) diff --git a/ThirdPartyLibraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/index.json b/ThirdPartyLibraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/index.json index 6b9105b8..2e1201e5 100644 --- a/ThirdPartyLibraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/index.json @@ -9,7 +9,6 @@ "Name": "ThirdPartyLibraries", "InternalOnly": false, "TargetFrameworks": [ - "net6.0", "net8.0", "net9.0", "netstandard2.1" diff --git a/ThirdPartyLibraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/readme.md b/ThirdPartyLibraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/readme.md index b3fc100a..6f070887 100644 --- a/ThirdPartyLibraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/readme.md @@ -3,7 +3,7 @@ System.Threading.Tasks.Extensions [4.5.4](https://www.nuget.org/packages/System. Used by: ThirdPartyLibraries -Target frameworks: net6.0, net8.0, net9.0, netstandard2.1 +Target frameworks: net8.0, net9.0, netstandard2.1 License: [MIT](../../../../licenses/mit) From 74b5248e823c6bbb8f089612c2c76c46fd38d925 Mon Sep 17 00:00:00 2001 From: max-ieremenko Date: Sat, 8 Feb 2025 13:59:21 +0100 Subject: [PATCH 06/14] .net sdk 9.0.102 --- Sources/global.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/global.json b/Sources/global.json index fc56567f..f6f48957 100644 --- a/Sources/global.json +++ b/Sources/global.json @@ -1,7 +1,7 @@ { "sdk": { - "version": "9.0.100-rc.2.24474.11", - "allowPrerelease": true, + "version": "9.0.102", + "allowPrerelease": false, "rollForward": "latestFeature" } } \ No newline at end of file From d8a5d7a629adc05acdebc65548b53e73d2d797bd Mon Sep 17 00:00:00 2001 From: max-ieremenko Date: Sat, 8 Feb 2025 14:03:50 +0100 Subject: [PATCH 07/14] update InvokeBuild --- Build/build-ci.ps1 | 2 +- Build/build-locally.ps1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Build/build-ci.ps1 b/Build/build-ci.ps1 index 13320045..1cbaaf83 100644 --- a/Build/build-ci.ps1 +++ b/Build/build-ci.ps1 @@ -1,5 +1,5 @@ #Requires -Version "7.0" -#Requires -Modules @{ ModuleName="InvokeBuild"; ModuleVersion="5.11.3" } +#Requires -Modules @{ ModuleName="InvokeBuild"; ModuleVersion="5.12.1" } [CmdletBinding()] param ( diff --git a/Build/build-locally.ps1 b/Build/build-locally.ps1 index 434f77c4..0e94f13e 100644 --- a/Build/build-locally.ps1 +++ b/Build/build-locally.ps1 @@ -1,5 +1,5 @@ #Requires -Version "7.0" -#Requires -Modules @{ ModuleName="InvokeBuild"; ModuleVersion="5.11.3" } +#Requires -Modules @{ ModuleName="InvokeBuild"; ModuleVersion="5.12.1" } $ErrorActionPreference = 'Stop' Set-StrictMode -Version Latest From b4b5f576a5d86f9f158c8d0a8da33ccec7b1d4de Mon Sep 17 00:00:00 2001 From: max-ieremenko Date: Sat, 8 Feb 2025 14:10:34 +0100 Subject: [PATCH 08/14] powershell 7.5 test coverage --- Build/build-tasks.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Build/build-tasks.ps1 b/Build/build-tasks.ps1 index 7915dcc4..074570c2 100644 --- a/Build/build-tasks.ps1 +++ b/Build/build-tasks.ps1 @@ -128,7 +128,7 @@ task PsCoreTest { , 'mcr.microsoft.com/powershell:7.2.2-ubuntu-20.04' , 'mcr.microsoft.com/powershell:7.3-ubuntu-20.04' , 'mcr.microsoft.com/powershell:7.4-ubuntu-20.04' - , 'mcr.microsoft.com/powershell:preview-7.5-ubuntu-20.04') + , 'mcr.microsoft.com/powershell:7.5-ubuntu-22.04') $builds = @() foreach ($image in $images) { From d14b8cac42b934ba257b3741bf29f3baebeb3f71 Mon Sep 17 00:00:00 2001 From: max-ieremenko Date: Sat, 8 Feb 2025 14:16:44 +0100 Subject: [PATCH 09/14] powershell 7.6 preview test coverage --- Build/build-tasks.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Build/build-tasks.ps1 b/Build/build-tasks.ps1 index 074570c2..9c0185a5 100644 --- a/Build/build-tasks.ps1 +++ b/Build/build-tasks.ps1 @@ -128,7 +128,8 @@ task PsCoreTest { , 'mcr.microsoft.com/powershell:7.2.2-ubuntu-20.04' , 'mcr.microsoft.com/powershell:7.3-ubuntu-20.04' , 'mcr.microsoft.com/powershell:7.4-ubuntu-20.04' - , 'mcr.microsoft.com/powershell:7.5-ubuntu-22.04') + , 'mcr.microsoft.com/powershell:7.5-ubuntu-22.04' + , 'mcr.microsoft.com/powershell:preview-7.6-ubuntu-22.04') $builds = @() foreach ($image in $images) { From 6132da5db632ed639e1e1af024e325ca674268c6 Mon Sep 17 00:00:00 2001 From: max-ieremenko Date: Sat, 8 Feb 2025 14:38:29 +0100 Subject: [PATCH 10/14] minimal pwsh version 7.2+ --- Build/build-tasks.ps1 | 12 +----------- Build/show-powershell-images.ps1 | 1 + README.md | 4 ++-- .../ThirdPartyLibraries.psd1 | Bin 2368 -> 2590 bytes .../ThirdPartyLibraries.psm1 | 6 +++--- 5 files changed, 7 insertions(+), 16 deletions(-) diff --git a/Build/build-tasks.ps1 b/Build/build-tasks.ps1 index 9c0185a5..7da373ee 100644 --- a/Build/build-tasks.ps1 +++ b/Build/build-tasks.ps1 @@ -113,17 +113,7 @@ task PackTest { task PsCoreTest { # show-powershell-images.ps1 $images = $( - 'mcr.microsoft.com/powershell:7.0.0-ubuntu-18.04' - , 'mcr.microsoft.com/powershell:7.0.1-ubuntu-18.04' - , 'mcr.microsoft.com/powershell:7.0.2-ubuntu-18.04' - , 'mcr.microsoft.com/powershell:7.0.3-ubuntu-18.04' - , 'mcr.microsoft.com/powershell:7.1.0-ubuntu-18.04' - , 'mcr.microsoft.com/powershell:7.1.1-ubuntu-20.04' - , 'mcr.microsoft.com/powershell:7.1.2-ubuntu-20.04' - , 'mcr.microsoft.com/powershell:7.1.3-ubuntu-20.04' - , 'mcr.microsoft.com/powershell:7.1.4-ubuntu-20.04' - , 'mcr.microsoft.com/powershell:7.1.5-ubuntu-20.04' - , 'mcr.microsoft.com/powershell:7.2.0-ubuntu-20.04' + 'mcr.microsoft.com/powershell:7.2.0-ubuntu-20.04' , 'mcr.microsoft.com/powershell:7.2.1-ubuntu-20.04' , 'mcr.microsoft.com/powershell:7.2.2-ubuntu-20.04' , 'mcr.microsoft.com/powershell:7.3-ubuntu-20.04' diff --git a/Build/show-powershell-images.ps1 b/Build/show-powershell-images.ps1 index 7d9f580c..4b3eb013 100644 --- a/Build/show-powershell-images.ps1 +++ b/Build/show-powershell-images.ps1 @@ -32,4 +32,5 @@ function Get-ShortVersion { (Invoke-RestMethod -Uri 'https://mcr.microsoft.com/v2/powershell/tags/list').tags ` | Where-Object { ($_ -Like '[0-9]*') -or ($_ -Like 'preview-[0-9]*') } ` | Get-ShortVersion ` +| Where-Object { ($_ -ge '7.2') } ` | Sort-Object -Unique \ No newline at end of file diff --git a/README.md b/README.md index 25d753e2..24e2ffef 100644 --- a/README.md +++ b/README.md @@ -35,8 +35,8 @@ Table of Contents Requirements ---------------------------------------- -- tool can be installed on SDKs .NET 9.0, .NET 8.0, .NET 6.0 -- PowerShell module is compatible with Powershell Core 7.0+ +- tool can be installed on SDKs .NET 9.0, .NET 8.0 +- PowerShell module is compatible with Powershell Core 7.2+ - supported project format: [SDK-style](https://docs.microsoft.com/en-us/nuget/resources/check-project-format) - supported project references: [NuGet](https://www.nuget.org/) and [npm](https://www.npmjs.com) packages - non-supported references can me managed via [custom packages](#custom) diff --git a/Sources/ThirdPartyLibraries.PowerShell/ThirdPartyLibraries.psd1 b/Sources/ThirdPartyLibraries.PowerShell/ThirdPartyLibraries.psd1 index 02e4d4bd6e1368b9ccd9fa52cce31ecc4536b34a..f710f9c7ed823a9a97d5e7f42d0e25a3cd4443dc 100644 GIT binary patch delta 724 zcmX>gG*4uLlC%N?HfReJRiA9gs?MlB(O*3hT?ts4!I(jh!3c;A8Ppkg8MqiY8Qd8{ z89W(Wuo{WgjEQr7fi}FBR7RIY>Pv-)I7W<#J1NX&sj z1L%K{dx{uRfqG(@ExFYh{DAyCFn=MlHcB9a^k_iCixa5+HnS(MI)e_9h#`wBnn*K? zF`CF>mT*xNT@1m%P{?N}pFEL8d~yJb5T_^5{xqP7`s74bW4JFszJa@X@?2J5c91Ec z$o|M`3Jf20HdR5GkKy!WPc~a!I1i{A1R>#(0}TIUpg;2%ih*P?FeD(RooADryoZek zZu)sPZ8)2eT@h%LGP@!t+?>gb9GR0hv1~NAm5lt8OqOR`pRv< zpbfMJWQNk@d}e)Ki1p?`F$18;W@bZSkcb0=2GAkSVAE59;y;-!xs@3Ffc!iL5Z{(X zTNI>D1L{~#pz2VD0)~{y>)B){zhf1eypC0bSBXIfAwT&hiz}LlHmfn3NH%LYn#g%p zOQ0V(*^D{i?wTCP=F1K;8x)R9*-U}*x7k!Di?CbCLVT0Mkjan?bY~tzF_0_ Date: Sat, 8 Feb 2025 14:45:43 +0100 Subject: [PATCH 11/14] c 2025 --- LICENSE | 2 +- Sources/Directory.Build.props | 2 +- .../ThirdPartyLibraries.psd1 | Bin 2590 -> 2590 bytes 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/LICENSE b/LICENSE index 7af38051..e93b58a1 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2019-2024 max-ieremenko +Copyright (c) 2019-2025 max-ieremenko Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/Sources/Directory.Build.props b/Sources/Directory.Build.props index 15ae359f..9325fee1 100644 --- a/Sources/Directory.Build.props +++ b/Sources/Directory.Build.props @@ -27,7 +27,7 @@ $(DefaultPackageVersion).0 Third Party Libraries Max Ieremenko - (C) 2019-2024 Max Ieremenko. + (C) 2019-2025 Max Ieremenko. true MIT https://github.com/max-ieremenko/ThirdPartyLibraries diff --git a/Sources/ThirdPartyLibraries.PowerShell/ThirdPartyLibraries.psd1 b/Sources/ThirdPartyLibraries.PowerShell/ThirdPartyLibraries.psd1 index f710f9c7ed823a9a97d5e7f42d0e25a3cd4443dc..5c9f5843f57ba1a6ac3747e1c00b55c6b00efcf2 100644 GIT binary patch delta 14 VcmbOyGEZc~9Y#je&373cIRGhR1p)v7 delta 14 VcmbOyGEZc~9Y#iz&373cIRGhL1pxp6 From 1e90abddf431c833488afc350475d162de0abf9b Mon Sep 17 00:00:00 2001 From: max-ieremenko Date: Sat, 8 Feb 2025 15:13:27 +0100 Subject: [PATCH 12/14] .sln update dependencies --- Sources/Directory.Packages.props | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/Sources/Directory.Packages.props b/Sources/Directory.Packages.props index 934eb96d..6a098b93 100644 --- a/Sources/Directory.Packages.props +++ b/Sources/Directory.Packages.props @@ -4,27 +4,27 @@ - - - - - - - - + + + + + + + + - - - - + + + + - + - + From d034b3eeabe16b3b9623316fd08a70549cb3ce4e Mon Sep 17 00:00:00 2001 From: max-ieremenko Date: Sat, 8 Feb 2025 15:14:51 +0100 Subject: [PATCH 13/14] update third party notices --- ThirdPartyLibraries/licenses/ms-pl/index.json | 9 + .../licenses/ms-pl/license.txt | 22 +++ .../nuget.org/dotliquid/2.2.692/index.json | 29 --- .../nuget.org/dotliquid/2.2.692/readme.md | 26 --- .../nuget.org/dotliquid/2.3.18/index.json | 32 ++++ .../{2.2.692 => 2.3.18}/package-LICENSE.txt | 0 .../{2.2.692 => 2.3.18}/package.nuspec | 9 +- .../nuget.org/dotliquid/2.3.18/readme.md | 27 +++ .../dotliquid/{2.2.692 => 2.3.18}/remarks.md | 0 .../dotliquid/2.3.18/repository-LICENSE.txt | 175 ++++++++++++++++++ .../third-party-notices.txt | 0 .../nuget.org/emptyfiles/4.4.0/index.json | 2 +- .../nuget.org/emptyfiles/4.4.0/readme.md | 2 +- .../2.22.0/index.json | 39 ++++ .../2.22.0/package.nuspec | 37 ++++ .../2.22.0/readme.md | 30 +++ .../2.22.0}/remarks.md | 0 .../2.22.0/repository-LICENSE | 21 +++ .../2.22.0}/third-party-notices.txt | 0 .../{8.0.0 => 9.0.1}/index.json | 0 .../{8.0.0 => 9.0.1}/package-LICENSE.TXT | 0 .../{8.0.0 => 9.0.1}/package.nuspec | 11 +- .../{8.0.0 => 9.0.1}/readme.md | 7 +- .../9.0.1}/remarks.md | 0 .../{8.0.0 => 9.0.1}/repository-LICENSE.TXT | 0 .../9.0.1}/third-party-notices.txt | 0 .../{17.11.1 => 17.12.0}/index.json | 0 .../{17.11.1 => 17.12.0}/package.nuspec | 4 +- .../{17.11.1 => 17.12.0}/project-LICENSE | 0 .../{17.11.1 => 17.12.0}/readme.md | 2 +- .../17.12.0}/remarks.md | 0 .../{17.11.1 => 17.12.0}/repository-LICENSE | 0 .../17.12.0}/third-party-notices.txt | 0 .../9.0.1}/index.json | 2 +- .../{8.0.0 => 9.0.1}/package-LICENSE.TXT | 0 .../{8.0.0 => 9.0.1}/package.nuspec | 19 +- .../{8.0.0 => 9.0.1}/readme.md | 4 +- .../9.0.1}/remarks.md | 0 .../{8.0.0 => 9.0.1}/repository-LICENSE.TXT | 0 .../9.0.1}/third-party-notices.txt | 0 .../{8.0.2 => 9.0.1}/index.json | 2 +- .../{8.0.2 => 9.0.1}/package-LICENSE.TXT | 0 .../{8.0.2 => 9.0.1}/package.nuspec | 19 +- .../{8.0.2 => 9.0.1}/readme.md | 4 +- .../9.0.1}/remarks.md | 0 .../{8.0.2 => 9.0.1}/repository-LICENSE.TXT | 0 .../9.0.1}/third-party-notices.txt | 0 .../{8.0.0 => 9.0.1}/index.json | 4 +- .../{8.0.0 => 9.0.1}/package-LICENSE.TXT | 0 .../{8.0.0 => 9.0.1}/package.nuspec | 28 ++- .../{8.0.0 => 9.0.1}/readme.md | 6 +- .../9.0.1}/remarks.md | 0 .../{8.0.0 => 9.0.1}/repository-LICENSE.TXT | 0 .../9.0.1}/third-party-notices.txt | 0 .../{8.0.1 => 9.0.1}/index.json | 10 +- .../{8.0.1 => 9.0.1}/package-LICENSE.TXT | 0 .../{8.0.1 => 9.0.1}/package.nuspec | 55 +++--- .../{8.0.1 => 9.0.1}/readme.md | 12 +- .../9.0.1}/remarks.md | 0 .../{8.0.1 => 9.0.1}/repository-LICENSE.TXT | 0 .../9.0.1}/third-party-notices.txt | 0 .../{8.0.1 => 9.0.1}/index.json | 12 +- .../{8.0.1 => 9.0.1}/package-LICENSE.TXT | 0 .../{8.0.1 => 9.0.1}/package.nuspec | 63 +++---- .../{8.0.1 => 9.0.1}/readme.md | 13 +- .../9.0.1}/remarks.md | 0 .../{8.0.1 => 9.0.1}/repository-LICENSE.TXT | 0 .../9.0.1}/third-party-notices.txt | 0 .../{8.0.1 => 9.0.1}/index.json | 8 +- .../{8.0.1 => 9.0.1}/package-LICENSE.TXT | 0 .../{8.0.1 => 9.0.1}/package.nuspec | 46 ++--- .../{8.0.1 => 9.0.1}/readme.md | 10 +- .../9.0.1}/remarks.md | 0 .../{8.0.1 => 9.0.1}/repository-LICENSE.TXT | 0 .../9.0.1}/third-party-notices.txt | 0 .../{8.0.0 => 9.0.1}/index.json | 4 +- .../{8.0.0 => 9.0.1}/package-LICENSE.TXT | 0 .../{8.0.0 => 9.0.1}/package.nuspec | 28 ++- .../{8.0.0 => 9.0.1}/readme.md | 6 +- .../9.0.1}/remarks.md | 0 .../{8.0.0 => 9.0.1}/repository-LICENSE.TXT | 0 .../9.0.1}/third-party-notices.txt | 0 .../{8.0.2 => 9.0.1}/index.json | 1 - .../{8.0.2 => 9.0.1}/package-LICENSE.TXT | 0 .../{8.0.2 => 9.0.1}/package.nuspec | 11 +- .../{8.0.2 => 9.0.1}/readme.md | 2 +- .../9.0.1}/remarks.md | 0 .../{8.0.2 => 9.0.1}/repository-LICENSE.TXT | 0 .../9.0.1}/third-party-notices.txt | 0 .../{8.0.1 => 9.0.1}/index.json | 3 +- .../{8.0.1 => 9.0.1}/package-LICENSE.TXT | 0 .../{8.0.1 => 9.0.1}/package.nuspec | 25 ++- .../{8.0.1 => 9.0.1}/readme.md | 4 +- .../9.0.1}/remarks.md | 0 .../{8.0.1 => 9.0.1}/repository-LICENSE.TXT | 0 .../9.0.1}/third-party-notices.txt | 0 .../9.0.1}/index.json | 2 +- .../{8.0.0 => 9.0.1}/package-LICENSE.TXT | 0 .../{8.0.0 => 9.0.1}/package.nuspec | 16 +- .../{8.0.0 => 9.0.1}/readme.md | 4 +- .../9.0.1}/remarks.md | 0 .../{8.0.0 => 9.0.1}/repository-LICENSE.TXT | 0 .../9.0.1}/third-party-notices.txt | 0 .../{8.0.0 => 9.0.1}/index.json | 6 +- .../{8.0.0 => 9.0.1}/package-LICENSE.TXT | 0 .../{8.0.0 => 9.0.1}/package.nuspec | 37 ++-- .../{8.0.0 => 9.0.1}/readme.md | 8 +- .../9.0.1}/remarks.md | 0 .../{8.0.0 => 9.0.1}/repository-LICENSE.TXT | 0 .../9.0.1}/third-party-notices.txt | 0 .../{8.0.0 => 9.0.1}/index.json | 0 .../{8.0.0 => 9.0.1}/package-LICENSE.TXT | 0 .../{8.0.0 => 9.0.1}/package.nuspec | 7 +- .../{8.0.0 => 9.0.1}/readme.md | 2 +- .../9.0.1}/remarks.md | 0 .../{8.0.0 => 9.0.1}/repository-LICENSE.TXT | 0 .../9.0.1}/third-party-notices.txt | 0 .../{8.0.0 => 9.0.1}/index.json | 11 +- .../{8.0.0 => 9.0.1}/package-LICENSE.TXT | 0 .../{8.0.0 => 9.0.1}/package.nuspec | 55 +++--- .../{8.0.0 => 9.0.1}/readme.md | 12 +- .../9.0.1}/remarks.md | 0 .../{8.0.0 => 9.0.1}/repository-LICENSE.TXT | 0 .../9.0.1}/third-party-notices.txt | 0 .../{8.0.0 => 9.0.1}/index.json | 5 +- .../{8.0.0 => 9.0.1}/package-LICENSE.TXT | 0 .../{8.0.0 => 9.0.1}/package.nuspec | 32 ++-- .../{8.0.0 => 9.0.1}/readme.md | 6 +- .../9.0.1}/remarks.md | 0 .../{8.0.0 => 9.0.1}/repository-LICENSE.TXT | 0 .../9.0.1}/third-party-notices.txt | 0 .../{8.0.0 => 9.0.1}/index.json | 0 .../{8.0.0 => 9.0.1}/package-LICENSE.TXT | 0 .../{8.0.0 => 9.0.1}/package.nuspec | 9 +- .../{8.0.0 => 9.0.1}/readme.md | 2 +- .../9.0.1}/remarks.md | 0 .../{8.0.0 => 9.0.1}/repository-LICENSE.TXT | 0 .../9.0.1}/third-party-notices.txt | 0 .../{17.11.1 => 17.12.0}/index.json | 4 +- .../{17.11.1 => 17.12.0}/package.nuspec | 10 +- .../{17.11.1 => 17.12.0}/project-LICENSE | 0 .../{17.11.1 => 17.12.0}/readme.md | 6 +- .../17.12.0}/remarks.md | 0 .../{17.11.1 => 17.12.0}/repository-LICENSE | 0 .../17.12.0}/third-party-notices.txt | 0 .../1.5.3/index.json | 44 +++++ .../1.5.3/package.nuspec | 43 +++++ .../1.5.3}/project-LICENSE | 0 .../1.5.3/readme.md | 33 ++++ .../1.5.3}/remarks.md | 0 .../1.5.3}/repository-LICENSE | 0 .../1.5.3}/third-party-notices.txt | 0 .../1.5.3/index.json | 40 ++++ .../1.5.3/package.nuspec | 36 ++++ .../1.5.3}/project-LICENSE | 0 .../1.5.3/readme.md | 30 +++ .../1.5.3}/remarks.md | 0 .../1.5.3}/repository-LICENSE | 0 .../1.5.3}/third-party-notices.txt | 0 .../1.5.3/index.json | 56 ++++++ .../1.5.3/package.nuspec | 58 ++++++ .../1.5.3/project-LICENSE | 23 +++ .../1.5.3/readme.md | 36 ++++ .../1.5.3}/remarks.md | 0 .../1.5.3/repository-LICENSE | 23 +++ .../1.5.3}/third-party-notices.txt | 0 .../1.5.3/index.json | 40 ++++ .../1.5.3/package.nuspec | 38 ++++ .../1.5.3/project-LICENSE | 23 +++ .../1.5.3/readme.md | 32 ++++ .../1.5.3}/remarks.md | 0 .../1.5.3/repository-LICENSE | 23 +++ .../1.5.3}/third-party-notices.txt | 0 .../1.5.3}/index.json | 5 +- .../1.5.3/package.nuspec | 28 +++ .../1.5.3/project-LICENSE | 23 +++ .../1.5.3/readme.md | 29 +++ .../1.5.3}/remarks.md | 0 .../1.5.3/repository-LICENSE | 23 +++ .../1.5.3}/third-party-notices.txt | 0 .../{17.11.1 => 17.12.0}/index.json | 0 .../{17.11.1 => 17.12.0}/package.nuspec | 4 +- .../17.12.0/project-LICENSE | 23 +++ .../{17.11.1 => 17.12.0}/readme.md | 2 +- .../17.12.0}/remarks.md | 0 .../17.12.0/repository-LICENSE | 23 +++ .../17.12.0}/third-party-notices.txt | 0 .../{17.11.1 => 17.12.0}/index.json | 2 +- .../{17.11.1 => 17.12.0}/package.nuspec | 6 +- .../17.12.0/project-LICENSE | 23 +++ .../{17.11.1 => 17.12.0}/readme.md | 4 +- .../17.12.0}/remarks.md | 0 .../17.12.0/repository-LICENSE | 23 +++ .../17.12.0}/third-party-notices.txt | 0 .../{6.11.1 => 6.12.1}/index.json | 2 - .../{6.11.1 => 6.12.1}/package.nuspec | 4 +- .../{6.11.1 => 6.12.1}/readme.md | 2 +- .../6.12.1}/remarks.md | 0 .../{6.11.1 => 6.12.1}/repository-LICENSE.txt | 0 .../6.12.1}/third-party-notices.txt | 0 .../{6.11.1 => 6.12.1}/index.json | 2 - .../{6.11.1 => 6.12.1}/package.nuspec | 4 +- .../{6.11.1 => 6.12.1}/readme.md | 2 +- .../nuget.versioning/6.12.1/remarks.md | 0 .../{6.11.1 => 6.12.1}/repository-LICENSE.txt | 0 .../6.12.1/third-party-notices.txt | 0 .../nunit/{4.2.2 => 4.3.2}/index.json | 3 +- .../{4.2.2 => 4.3.2}/package-LICENSE.txt | 0 .../nunit/{4.2.2 => 4.3.2}/package.nuspec | 10 +- .../nunit/{4.2.2 => 4.3.2}/readme.md | 5 +- .../packages/nuget.org/nunit/4.3.2/remarks.md | 0 .../{4.2.2 => 4.3.2}/repository-LICENSE.txt | 0 .../nunit/4.3.2/third-party-notices.txt | 0 .../nunit3testadapter/5.0.0/index.json | 43 +++++ .../{4.6.0 => 5.0.0}/package.nuspec | 16 +- .../{4.6.0 => 5.0.0}/readme.md | 8 +- .../nunit3testadapter/5.0.0/remarks.md | 0 .../{4.6.0 => 5.0.0}/repository-LICENSE | 0 .../5.0.0/third-party-notices.txt | 0 .../shouldly/{4.2.1 => 4.3.0}/index.json | 13 +- .../shouldly/{4.2.1 => 4.3.0}/package.nuspec | 18 +- .../shouldly/{4.2.1 => 4.3.0}/readme.md | 10 +- .../nuget.org/shouldly/4.3.0/remarks.md | 0 .../{4.2.1 => 4.3.0}/repository-LICENSE.txt | 4 +- .../shouldly/4.3.0/third-party-notices.txt | 0 .../nuget.org/system.buffers/4.6.0/index.json | 33 ++++ .../system.buffers/4.6.0/package.nuspec | 23 +++ .../4.6.0/project-LICENSE} | 0 .../nuget.org/system.buffers/4.6.0/readme.md | 27 +++ .../nuget.org/system.buffers/4.6.0/remarks.md | 0 .../4.6.0/repository-LICENSE} | 0 .../4.6.0/third-party-notices.txt | 0 .../5.0.0/index.json | 34 ++++ .../5.0.0}/package-LICENSE.TXT | 0 .../5.0.0/package.nuspec | 101 ++++++++++ .../5.0.0/project-LICENSE.TXT} | 0 .../5.0.0/readme.md | 33 ++++ .../5.0.0/remarks.md | 0 .../5.0.0/repository-LICENSE.TXT | 23 +++ .../5.0.0/third-party-notices.txt | 0 .../system.io.pipelines/9.0.1/index.json | 48 +++++ .../9.0.1/package-LICENSE.TXT | 23 +++ .../system.io.pipelines/9.0.1/package.nuspec | 37 ++++ .../system.io.pipelines/9.0.1/readme.md | 37 ++++ .../system.io.pipelines/9.0.1/remarks.md | 0 .../9.0.1/repository-LICENSE.TXT | 23 +++ .../9.0.1/third-party-notices.txt | 0 .../nuget.org/system.memory/4.6.0/index.json | 47 +++++ .../system.memory/4.6.0/package.nuspec | 31 ++++ .../system.memory/4.6.0/project-LICENSE | 23 +++ .../nuget.org/system.memory/4.6.0/readme.md | 32 ++++ .../nuget.org/system.memory/4.6.0/remarks.md | 0 .../system.memory/4.6.0/repository-LICENSE | 23 +++ .../4.6.0/third-party-notices.txt | 0 .../system.numerics.vectors/4.6.0/index.json | 33 ++++ .../4.6.0/package.nuspec | 26 +++ .../4.6.0/project-LICENSE | 23 +++ .../system.numerics.vectors/4.6.0/readme.md | 27 +++ .../system.numerics.vectors/4.6.0/remarks.md | 0 .../4.6.0/repository-LICENSE | 23 +++ .../4.6.0/third-party-notices.txt | 0 .../6.1.0/index.json | 33 ++++ .../6.1.0/package.nuspec | 29 +++ .../6.1.0/project-LICENSE | 23 +++ .../6.1.0/readme.md | 30 +++ .../6.1.0/remarks.md | 0 .../6.1.0/repository-LICENSE | 23 +++ .../6.1.0/third-party-notices.txt | 0 .../{8.0.0 => 9.0.1}/index.json | 6 +- .../9.0.1/package-LICENSE.TXT | 23 +++ .../{8.0.0 => 9.0.1}/package.nuspec | 10 +- .../{8.0.0 => 9.0.1}/readme.md | 8 +- .../9.0.1/remarks.md | 0 .../9.0.1/repository-LICENSE.TXT | 23 +++ .../9.0.1/third-party-notices.txt | 0 .../{8.0.5 => 9.0.1}/index.json | 14 +- .../9.0.1/package-LICENSE.TXT | 23 +++ .../{8.0.5 => 9.0.1}/package.nuspec | 25 ++- .../{8.0.5 => 9.0.1}/readme.md | 15 +- .../system.text.json/9.0.1/remarks.md | 0 .../9.0.1/repository-LICENSE.TXT | 23 +++ .../9.0.1/third-party-notices.txt | 0 .../4.5.4/index.json | 4 + .../4.5.4/readme.md | 3 +- ThirdPartyLibraries/readme.md | 77 ++++---- 285 files changed, 2634 insertions(+), 549 deletions(-) create mode 100644 ThirdPartyLibraries/licenses/ms-pl/index.json create mode 100644 ThirdPartyLibraries/licenses/ms-pl/license.txt delete mode 100644 ThirdPartyLibraries/packages/nuget.org/dotliquid/2.2.692/index.json delete mode 100644 ThirdPartyLibraries/packages/nuget.org/dotliquid/2.2.692/readme.md create mode 100644 ThirdPartyLibraries/packages/nuget.org/dotliquid/2.3.18/index.json rename ThirdPartyLibraries/packages/nuget.org/dotliquid/{2.2.692 => 2.3.18}/package-LICENSE.txt (100%) rename ThirdPartyLibraries/packages/nuget.org/dotliquid/{2.2.692 => 2.3.18}/package.nuspec (73%) create mode 100644 ThirdPartyLibraries/packages/nuget.org/dotliquid/2.3.18/readme.md rename ThirdPartyLibraries/packages/nuget.org/dotliquid/{2.2.692 => 2.3.18}/remarks.md (100%) create mode 100644 ThirdPartyLibraries/packages/nuget.org/dotliquid/2.3.18/repository-LICENSE.txt rename ThirdPartyLibraries/packages/nuget.org/dotliquid/{2.2.692 => 2.3.18}/third-party-notices.txt (100%) create mode 100644 ThirdPartyLibraries/packages/nuget.org/microsoft.applicationinsights/2.22.0/index.json create mode 100644 ThirdPartyLibraries/packages/nuget.org/microsoft.applicationinsights/2.22.0/package.nuspec create mode 100644 ThirdPartyLibraries/packages/nuget.org/microsoft.applicationinsights/2.22.0/readme.md rename ThirdPartyLibraries/packages/nuget.org/{microsoft.bcl.asyncinterfaces/8.0.0 => microsoft.applicationinsights/2.22.0}/remarks.md (100%) create mode 100644 ThirdPartyLibraries/packages/nuget.org/microsoft.applicationinsights/2.22.0/repository-LICENSE rename ThirdPartyLibraries/packages/nuget.org/{microsoft.bcl.asyncinterfaces/8.0.0 => microsoft.applicationinsights/2.22.0}/third-party-notices.txt (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/{8.0.0 => 9.0.1}/index.json (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/{8.0.0 => 9.0.1}/package-LICENSE.TXT (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/{8.0.0 => 9.0.1}/package.nuspec (84%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/{8.0.0 => 9.0.1}/readme.md (72%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.codecoverage/17.11.1 => microsoft.bcl.asyncinterfaces/9.0.1}/remarks.md (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/{8.0.0 => 9.0.1}/repository-LICENSE.TXT (100%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.codecoverage/17.11.1 => microsoft.bcl.asyncinterfaces/9.0.1}/third-party-notices.txt (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/{17.11.1 => 17.12.0}/index.json (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/{17.11.1 => 17.12.0}/package.nuspec (92%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/{17.11.1 => 17.12.0}/project-LICENSE (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/{17.11.1 => 17.12.0}/readme.md (85%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.extensions.configuration.abstractions/8.0.0 => microsoft.codecoverage/17.12.0}/remarks.md (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/{17.11.1 => 17.12.0}/repository-LICENSE (100%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.extensions.configuration.abstractions/8.0.0 => microsoft.codecoverage/17.12.0}/third-party-notices.txt (100%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.extensions.fileproviders.abstractions/8.0.0 => microsoft.extensions.configuration.abstractions/9.0.1}/index.json (96%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/{8.0.0 => 9.0.1}/package-LICENSE.TXT (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/{8.0.0 => 9.0.1}/package.nuspec (77%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/{8.0.0 => 9.0.1}/readme.md (86%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.extensions.configuration.binder/8.0.2 => microsoft.extensions.configuration.abstractions/9.0.1}/remarks.md (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/{8.0.0 => 9.0.1}/repository-LICENSE.TXT (100%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.extensions.configuration.binder/8.0.2 => microsoft.extensions.configuration.abstractions/9.0.1}/third-party-notices.txt (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/{8.0.2 => 9.0.1}/index.json (96%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/{8.0.2 => 9.0.1}/package-LICENSE.TXT (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/{8.0.2 => 9.0.1}/package.nuspec (77%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/{8.0.2 => 9.0.1}/readme.md (88%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.extensions.configuration.environmentvariables/8.0.0 => microsoft.extensions.configuration.binder/9.0.1}/remarks.md (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/{8.0.2 => 9.0.1}/repository-LICENSE.TXT (100%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.extensions.configuration.environmentvariables/8.0.0 => microsoft.extensions.configuration.binder/9.0.1}/third-party-notices.txt (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/{8.0.0 => 9.0.1}/index.json (93%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/{8.0.0 => 9.0.1}/package-LICENSE.TXT (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/{8.0.0 => 9.0.1}/package.nuspec (70%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/{8.0.0 => 9.0.1}/readme.md (87%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.extensions.configuration.fileextensions/8.0.1 => microsoft.extensions.configuration.environmentvariables/9.0.1}/remarks.md (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/{8.0.0 => 9.0.1}/repository-LICENSE.TXT (100%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.extensions.configuration.fileextensions/8.0.1 => microsoft.extensions.configuration.environmentvariables/9.0.1}/third-party-notices.txt (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/{8.0.1 => 9.0.1}/index.json (88%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/{8.0.1 => 9.0.1}/package-LICENSE.TXT (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/{8.0.1 => 9.0.1}/package.nuspec (58%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/{8.0.1 => 9.0.1}/readme.md (79%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.extensions.configuration.json/8.0.1 => microsoft.extensions.configuration.fileextensions/9.0.1}/remarks.md (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/{8.0.1 => 9.0.1}/repository-LICENSE.TXT (100%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.extensions.configuration.json/8.0.1 => microsoft.extensions.configuration.fileextensions/9.0.1}/third-party-notices.txt (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/{8.0.1 => 9.0.1}/index.json (83%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/{8.0.1 => 9.0.1}/package-LICENSE.TXT (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/{8.0.1 => 9.0.1}/package.nuspec (57%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/{8.0.1 => 9.0.1}/readme.md (78%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.extensions.configuration.usersecrets/8.0.1 => microsoft.extensions.configuration.json/9.0.1}/remarks.md (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/{8.0.1 => 9.0.1}/repository-LICENSE.TXT (100%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.extensions.configuration.usersecrets/8.0.1 => microsoft.extensions.configuration.json/9.0.1}/third-party-notices.txt (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/{8.0.1 => 9.0.1}/index.json (89%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/{8.0.1 => 9.0.1}/package-LICENSE.TXT (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/{8.0.1 => 9.0.1}/package.nuspec (62%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/{8.0.1 => 9.0.1}/readme.md (84%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.extensions.configuration/8.0.0 => microsoft.extensions.configuration.usersecrets/9.0.1}/remarks.md (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/{8.0.1 => 9.0.1}/repository-LICENSE.TXT (100%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.extensions.configuration/8.0.0 => microsoft.extensions.configuration.usersecrets/9.0.1}/third-party-notices.txt (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/{8.0.0 => 9.0.1}/index.json (93%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/{8.0.0 => 9.0.1}/package-LICENSE.TXT (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/{8.0.0 => 9.0.1}/package.nuspec (67%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/{8.0.0 => 9.0.1}/readme.md (81%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.extensions.dependencyinjection.abstractions/8.0.2 => microsoft.extensions.configuration/9.0.1}/remarks.md (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/{8.0.0 => 9.0.1}/repository-LICENSE.TXT (100%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.extensions.dependencyinjection.abstractions/8.0.2 => microsoft.extensions.configuration/9.0.1}/third-party-notices.txt (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/{8.0.2 => 9.0.1}/index.json (96%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/{8.0.2 => 9.0.1}/package-LICENSE.TXT (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/{8.0.2 => 9.0.1}/package.nuspec (85%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/{8.0.2 => 9.0.1}/readme.md (87%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.extensions.dependencyinjection/8.0.1 => microsoft.extensions.dependencyinjection.abstractions/9.0.1}/remarks.md (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/{8.0.2 => 9.0.1}/repository-LICENSE.TXT (100%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.extensions.dependencyinjection/8.0.1 => microsoft.extensions.dependencyinjection.abstractions/9.0.1}/third-party-notices.txt (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/{8.0.1 => 9.0.1}/index.json (93%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/{8.0.1 => 9.0.1}/package-LICENSE.TXT (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/{8.0.1 => 9.0.1}/package.nuspec (72%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/{8.0.1 => 9.0.1}/readme.md (81%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.extensions.fileproviders.abstractions/8.0.0 => microsoft.extensions.dependencyinjection/9.0.1}/remarks.md (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/{8.0.1 => 9.0.1}/repository-LICENSE.TXT (100%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.extensions.fileproviders.abstractions/8.0.0 => microsoft.extensions.dependencyinjection/9.0.1}/third-party-notices.txt (100%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.extensions.configuration.abstractions/8.0.0 => microsoft.extensions.fileproviders.abstractions/9.0.1}/index.json (96%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/{8.0.0 => 9.0.1}/package-LICENSE.TXT (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/{8.0.0 => 9.0.1}/package.nuspec (83%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/{8.0.0 => 9.0.1}/readme.md (86%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.extensions.fileproviders.physical/8.0.0 => microsoft.extensions.fileproviders.abstractions/9.0.1}/remarks.md (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/{8.0.0 => 9.0.1}/repository-LICENSE.TXT (100%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.extensions.fileproviders.physical/8.0.0 => microsoft.extensions.fileproviders.abstractions/9.0.1}/third-party-notices.txt (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/{8.0.0 => 9.0.1}/index.json (91%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/{8.0.0 => 9.0.1}/package-LICENSE.TXT (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/{8.0.0 => 9.0.1}/package.nuspec (63%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/{8.0.0 => 9.0.1}/readme.md (75%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.extensions.filesystemglobbing/8.0.0 => microsoft.extensions.fileproviders.physical/9.0.1}/remarks.md (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/{8.0.0 => 9.0.1}/repository-LICENSE.TXT (100%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.extensions.filesystemglobbing/8.0.0 => microsoft.extensions.fileproviders.physical/9.0.1}/third-party-notices.txt (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/{8.0.0 => 9.0.1}/index.json (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/{8.0.0 => 9.0.1}/package-LICENSE.TXT (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/{8.0.0 => 9.0.1}/package.nuspec (85%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/{8.0.0 => 9.0.1}/readme.md (80%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.extensions.options.configurationextensions/8.0.0 => microsoft.extensions.filesystemglobbing/9.0.1}/remarks.md (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/{8.0.0 => 9.0.1}/repository-LICENSE.TXT (100%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.extensions.options.configurationextensions/8.0.0 => microsoft.extensions.filesystemglobbing/9.0.1}/third-party-notices.txt (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/{8.0.0 => 9.0.1}/index.json (86%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/{8.0.0 => 9.0.1}/package-LICENSE.TXT (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/{8.0.0 => 9.0.1}/package.nuspec (51%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/{8.0.0 => 9.0.1}/readme.md (78%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.extensions.options/8.0.0 => microsoft.extensions.options.configurationextensions/9.0.1}/remarks.md (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/{8.0.0 => 9.0.1}/repository-LICENSE.TXT (100%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.extensions.options/8.0.0 => microsoft.extensions.options.configurationextensions/9.0.1}/third-party-notices.txt (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/{8.0.0 => 9.0.1}/index.json (92%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/{8.0.0 => 9.0.1}/package-LICENSE.TXT (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/{8.0.0 => 9.0.1}/package.nuspec (71%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/{8.0.0 => 9.0.1}/readme.md (82%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.extensions.primitives/8.0.0 => microsoft.extensions.options/9.0.1}/remarks.md (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/{8.0.0 => 9.0.1}/repository-LICENSE.TXT (100%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.extensions.primitives/8.0.0 => microsoft.extensions.options/9.0.1}/third-party-notices.txt (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/{8.0.0 => 9.0.1}/index.json (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/{8.0.0 => 9.0.1}/package-LICENSE.TXT (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/{8.0.0 => 9.0.1}/package.nuspec (84%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/{8.0.0 => 9.0.1}/readme.md (85%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.net.test.sdk/17.11.1 => microsoft.extensions.primitives/9.0.1}/remarks.md (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/{8.0.0 => 9.0.1}/repository-LICENSE.TXT (100%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.net.test.sdk/17.11.1 => microsoft.extensions.primitives/9.0.1}/third-party-notices.txt (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/{17.11.1 => 17.12.0}/index.json (93%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/{17.11.1 => 17.12.0}/package.nuspec (82%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/{17.11.1 => 17.12.0}/project-LICENSE (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/{17.11.1 => 17.12.0}/readme.md (78%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.testplatform.objectmodel/17.11.1 => microsoft.net.test.sdk/17.12.0}/remarks.md (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/{17.11.1 => 17.12.0}/repository-LICENSE (100%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.testplatform.objectmodel/17.11.1 => microsoft.net.test.sdk/17.12.0}/third-party-notices.txt (100%) create mode 100644 ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.5.3/index.json create mode 100644 ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.5.3/package.nuspec rename ThirdPartyLibraries/packages/nuget.org/{microsoft.testplatform.objectmodel/17.11.1 => microsoft.testing.extensions.telemetry/1.5.3}/project-LICENSE (100%) create mode 100644 ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.5.3/readme.md rename ThirdPartyLibraries/packages/nuget.org/{microsoft.testplatform.testhost/17.11.1 => microsoft.testing.extensions.telemetry/1.5.3}/remarks.md (100%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.testplatform.objectmodel/17.11.1 => microsoft.testing.extensions.telemetry/1.5.3}/repository-LICENSE (100%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.testplatform.testhost/17.11.1 => microsoft.testing.extensions.telemetry/1.5.3}/third-party-notices.txt (100%) create mode 100644 ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.5.3/index.json create mode 100644 ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.5.3/package.nuspec rename ThirdPartyLibraries/packages/nuget.org/{microsoft.testplatform.testhost/17.11.1 => microsoft.testing.extensions.trxreport.abstractions/1.5.3}/project-LICENSE (100%) create mode 100644 ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.5.3/readme.md rename ThirdPartyLibraries/packages/nuget.org/{nuget.frameworks/6.11.1 => microsoft.testing.extensions.trxreport.abstractions/1.5.3}/remarks.md (100%) rename ThirdPartyLibraries/packages/nuget.org/{microsoft.testplatform.testhost/17.11.1 => microsoft.testing.extensions.trxreport.abstractions/1.5.3}/repository-LICENSE (100%) rename ThirdPartyLibraries/packages/nuget.org/{nuget.frameworks/6.11.1 => microsoft.testing.extensions.trxreport.abstractions/1.5.3}/third-party-notices.txt (100%) create mode 100644 ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.5.3/index.json create mode 100644 ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.5.3/package.nuspec create mode 100644 ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.5.3/project-LICENSE create mode 100644 ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.5.3/readme.md rename ThirdPartyLibraries/packages/nuget.org/{nuget.versioning/6.11.1 => microsoft.testing.extensions.vstestbridge/1.5.3}/remarks.md (100%) create mode 100644 ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.5.3/repository-LICENSE rename ThirdPartyLibraries/packages/nuget.org/{nuget.versioning/6.11.1 => microsoft.testing.extensions.vstestbridge/1.5.3}/third-party-notices.txt (100%) create mode 100644 ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.5.3/index.json create mode 100644 ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.5.3/package.nuspec create mode 100644 ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.5.3/project-LICENSE create mode 100644 ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.5.3/readme.md rename ThirdPartyLibraries/packages/nuget.org/{nunit/4.2.2 => microsoft.testing.platform.msbuild/1.5.3}/remarks.md (100%) create mode 100644 ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.5.3/repository-LICENSE rename ThirdPartyLibraries/packages/nuget.org/{nunit/4.2.2 => microsoft.testing.platform.msbuild/1.5.3}/third-party-notices.txt (100%) rename ThirdPartyLibraries/packages/nuget.org/{nunit3testadapter/4.6.0 => microsoft.testing.platform/1.5.3}/index.json (79%) create mode 100644 ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform/1.5.3/package.nuspec create mode 100644 ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform/1.5.3/project-LICENSE create mode 100644 ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform/1.5.3/readme.md rename ThirdPartyLibraries/packages/nuget.org/{nunit3testadapter/4.6.0 => microsoft.testing.platform/1.5.3}/remarks.md (100%) create mode 100644 ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform/1.5.3/repository-LICENSE rename ThirdPartyLibraries/packages/nuget.org/{nunit3testadapter/4.6.0 => microsoft.testing.platform/1.5.3}/third-party-notices.txt (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/{17.11.1 => 17.12.0}/index.json (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/{17.11.1 => 17.12.0}/package.nuspec (95%) create mode 100644 ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.12.0/project-LICENSE rename ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/{17.11.1 => 17.12.0}/readme.md (83%) rename ThirdPartyLibraries/packages/nuget.org/{shouldly/4.2.1 => microsoft.testplatform.objectmodel/17.12.0}/remarks.md (100%) create mode 100644 ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.12.0/repository-LICENSE rename ThirdPartyLibraries/packages/nuget.org/{shouldly/4.2.1 => microsoft.testplatform.objectmodel/17.12.0}/third-party-notices.txt (100%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/{17.11.1 => 17.12.0}/index.json (96%) rename ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/{17.11.1 => 17.12.0}/package.nuspec (91%) create mode 100644 ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.12.0/project-LICENSE rename ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/{17.11.1 => 17.12.0}/readme.md (80%) rename ThirdPartyLibraries/packages/nuget.org/{system.text.encodings.web/8.0.0 => microsoft.testplatform.testhost/17.12.0}/remarks.md (100%) create mode 100644 ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.12.0/repository-LICENSE rename ThirdPartyLibraries/packages/nuget.org/{system.text.encodings.web/8.0.0 => microsoft.testplatform.testhost/17.12.0}/third-party-notices.txt (100%) rename ThirdPartyLibraries/packages/nuget.org/nuget.frameworks/{6.11.1 => 6.12.1}/index.json (94%) rename ThirdPartyLibraries/packages/nuget.org/nuget.frameworks/{6.11.1 => 6.12.1}/package.nuspec (91%) rename ThirdPartyLibraries/packages/nuget.org/nuget.frameworks/{6.11.1 => 6.12.1}/readme.md (86%) rename ThirdPartyLibraries/packages/nuget.org/{system.text.json/8.0.5 => nuget.frameworks/6.12.1}/remarks.md (100%) rename ThirdPartyLibraries/packages/nuget.org/nuget.frameworks/{6.11.1 => 6.12.1}/repository-LICENSE.txt (100%) rename ThirdPartyLibraries/packages/nuget.org/{system.text.json/8.0.5 => nuget.frameworks/6.12.1}/third-party-notices.txt (100%) rename ThirdPartyLibraries/packages/nuget.org/nuget.versioning/{6.11.1 => 6.12.1}/index.json (94%) rename ThirdPartyLibraries/packages/nuget.org/nuget.versioning/{6.11.1 => 6.12.1}/package.nuspec (91%) rename ThirdPartyLibraries/packages/nuget.org/nuget.versioning/{6.11.1 => 6.12.1}/readme.md (86%) create mode 100644 ThirdPartyLibraries/packages/nuget.org/nuget.versioning/6.12.1/remarks.md rename ThirdPartyLibraries/packages/nuget.org/nuget.versioning/{6.11.1 => 6.12.1}/repository-LICENSE.txt (100%) create mode 100644 ThirdPartyLibraries/packages/nuget.org/nuget.versioning/6.12.1/third-party-notices.txt rename ThirdPartyLibraries/packages/nuget.org/nunit/{4.2.2 => 4.3.2}/index.json (94%) rename ThirdPartyLibraries/packages/nuget.org/nunit/{4.2.2 => 4.3.2}/package-LICENSE.txt (100%) rename ThirdPartyLibraries/packages/nuget.org/nunit/{4.2.2 => 4.3.2}/package.nuspec (90%) rename ThirdPartyLibraries/packages/nuget.org/nunit/{4.2.2 => 4.3.2}/readme.md (94%) create mode 100644 ThirdPartyLibraries/packages/nuget.org/nunit/4.3.2/remarks.md rename ThirdPartyLibraries/packages/nuget.org/nunit/{4.2.2 => 4.3.2}/repository-LICENSE.txt (100%) create mode 100644 ThirdPartyLibraries/packages/nuget.org/nunit/4.3.2/third-party-notices.txt create mode 100644 ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/5.0.0/index.json rename ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/{4.6.0 => 5.0.0}/package.nuspec (69%) rename ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/{4.6.0 => 5.0.0}/readme.md (70%) create mode 100644 ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/5.0.0/remarks.md rename ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/{4.6.0 => 5.0.0}/repository-LICENSE (100%) create mode 100644 ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/5.0.0/third-party-notices.txt rename ThirdPartyLibraries/packages/nuget.org/shouldly/{4.2.1 => 4.3.0}/index.json (67%) rename ThirdPartyLibraries/packages/nuget.org/shouldly/{4.2.1 => 4.3.0}/package.nuspec (62%) rename ThirdPartyLibraries/packages/nuget.org/shouldly/{4.2.1 => 4.3.0}/readme.md (61%) create mode 100644 ThirdPartyLibraries/packages/nuget.org/shouldly/4.3.0/remarks.md rename ThirdPartyLibraries/packages/nuget.org/shouldly/{4.2.1 => 4.3.0}/repository-LICENSE.txt (95%) create mode 100644 ThirdPartyLibraries/packages/nuget.org/shouldly/4.3.0/third-party-notices.txt create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.buffers/4.6.0/index.json create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.buffers/4.6.0/package.nuspec rename ThirdPartyLibraries/packages/nuget.org/{system.text.encodings.web/8.0.0/package-LICENSE.TXT => system.buffers/4.6.0/project-LICENSE} (100%) create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.buffers/4.6.0/readme.md create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.buffers/4.6.0/remarks.md rename ThirdPartyLibraries/packages/nuget.org/{system.text.encodings.web/8.0.0/repository-LICENSE.TXT => system.buffers/4.6.0/repository-LICENSE} (100%) create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.buffers/4.6.0/third-party-notices.txt create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/index.json rename ThirdPartyLibraries/packages/nuget.org/{system.text.json/8.0.5 => system.diagnostics.diagnosticsource/5.0.0}/package-LICENSE.TXT (100%) create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/package.nuspec rename ThirdPartyLibraries/packages/nuget.org/{system.text.json/8.0.5/repository-LICENSE.TXT => system.diagnostics.diagnosticsource/5.0.0/project-LICENSE.TXT} (100%) create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/readme.md create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/remarks.md create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/repository-LICENSE.TXT create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/third-party-notices.txt create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.io.pipelines/9.0.1/index.json create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.io.pipelines/9.0.1/package-LICENSE.TXT create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.io.pipelines/9.0.1/package.nuspec create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.io.pipelines/9.0.1/readme.md create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.io.pipelines/9.0.1/remarks.md create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.io.pipelines/9.0.1/repository-LICENSE.TXT create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.io.pipelines/9.0.1/third-party-notices.txt create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.memory/4.6.0/index.json create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.memory/4.6.0/package.nuspec create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.memory/4.6.0/project-LICENSE create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.memory/4.6.0/readme.md create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.memory/4.6.0/remarks.md create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.memory/4.6.0/repository-LICENSE create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.memory/4.6.0/third-party-notices.txt create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.numerics.vectors/4.6.0/index.json create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.numerics.vectors/4.6.0/package.nuspec create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.numerics.vectors/4.6.0/project-LICENSE create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.numerics.vectors/4.6.0/readme.md create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.numerics.vectors/4.6.0/remarks.md create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.numerics.vectors/4.6.0/repository-LICENSE create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.numerics.vectors/4.6.0/third-party-notices.txt create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.0/index.json create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.0/package.nuspec create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.0/project-LICENSE create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.0/readme.md create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.0/remarks.md create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.0/repository-LICENSE create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.0/third-party-notices.txt rename ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/{8.0.0 => 9.0.1}/index.json (90%) create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/9.0.1/package-LICENSE.TXT rename ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/{8.0.0 => 9.0.1}/package.nuspec (85%) rename ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/{8.0.0 => 9.0.1}/readme.md (83%) create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/9.0.1/remarks.md create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/9.0.1/repository-LICENSE.TXT create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/9.0.1/third-party-notices.txt rename ThirdPartyLibraries/packages/nuget.org/system.text.json/{8.0.5 => 9.0.1}/index.json (82%) create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.text.json/9.0.1/package-LICENSE.TXT rename ThirdPartyLibraries/packages/nuget.org/system.text.json/{8.0.5 => 9.0.1}/package.nuspec (75%) rename ThirdPartyLibraries/packages/nuget.org/system.text.json/{8.0.5 => 9.0.1}/readme.md (80%) create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.text.json/9.0.1/remarks.md create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.text.json/9.0.1/repository-LICENSE.TXT create mode 100644 ThirdPartyLibraries/packages/nuget.org/system.text.json/9.0.1/third-party-notices.txt diff --git a/ThirdPartyLibraries/licenses/ms-pl/index.json b/ThirdPartyLibraries/licenses/ms-pl/index.json new file mode 100644 index 00000000..0b0916f7 --- /dev/null +++ b/ThirdPartyLibraries/licenses/ms-pl/index.json @@ -0,0 +1,9 @@ +{ + "Code": "MS-PL", + "FullName": "Microsoft Public License", + "RequiresApproval": false, + "RequiresThirdPartyNotices": false, + "HRef": "https://spdx.org/licenses/MS-PL", + "FileName": "license.txt", + "Dependencies": [] +} \ No newline at end of file diff --git a/ThirdPartyLibraries/licenses/ms-pl/license.txt b/ThirdPartyLibraries/licenses/ms-pl/license.txt new file mode 100644 index 00000000..c61790bc --- /dev/null +++ b/ThirdPartyLibraries/licenses/ms-pl/license.txt @@ -0,0 +1,22 @@ +Microsoft Public License (Ms-PL) + +This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. + +1. Definitions +The terms "reproduce," "reproduction," "derivative works," and "distribution" have the same meaning here as under U.S. copyright law. A "contribution" is the original software, or any additions or changes to the software. A "contributor" is any person that distributes its contribution under this license. "Licensed patents" are a contributor's patent claims that read directly on its contribution. + +2. Grant of Rights + (A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create. + + (B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works of the contribution in the software. + +3. Conditions and Limitations + (A) No Trademark License- This license does not grant you rights to use any contributors' name, logo, or trademarks. + + (B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically. + + (C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software. + + (D) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license. + + (E) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees, or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement. diff --git a/ThirdPartyLibraries/packages/nuget.org/dotliquid/2.2.692/index.json b/ThirdPartyLibraries/packages/nuget.org/dotliquid/2.2.692/index.json deleted file mode 100644 index be4788b8..00000000 --- a/ThirdPartyLibraries/packages/nuget.org/dotliquid/2.2.692/index.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "Source": "https://api.nuget.org/v3/index.json", - "License": { - "Code": "Apache-2.0", - "Status": "AutomaticallyApproved" - }, - "UsedBy": [ - { - "Name": "ThirdPartyLibraries", - "InternalOnly": false, - "TargetFrameworks": [ - "netstandard2.1" - ] - } - ], - "Licenses": [ - { - "Subject": "package", - "Code": "Apache-2.0", - "HRef": "http://www.apache.org/licenses/LICENSE-2.0" - }, - { - "Subject": "project", - "Code": null, - "HRef": "http://dotliquidmarkup.org/", - "Description": "License should be verified on http://dotliquidmarkup.org/" - } - ] -} \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/dotliquid/2.2.692/readme.md b/ThirdPartyLibraries/packages/nuget.org/dotliquid/2.2.692/readme.md deleted file mode 100644 index ba96c281..00000000 --- a/ThirdPartyLibraries/packages/nuget.org/dotliquid/2.2.692/readme.md +++ /dev/null @@ -1,26 +0,0 @@ -DotLiquid [2.2.692](https://www.nuget.org/packages/DotLiquid/2.2.692) --------------------- - -Used by: ThirdPartyLibraries - -Target frameworks: netstandard2.1 - -License: [Apache-2.0](../../../../licenses/apache-2.0) - -- package license: [Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0) -- project license: [Unknown](http://dotliquidmarkup.org/) , License should be verified on http://dotliquidmarkup.org/ - -Description ------------ -DotLiquid is a templating system ported to the .NET framework from Ruby’s Liquid Markup. - -Remarks ------------ -no remarks - - -Dependencies 0 ------------ - - -*This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/dotliquid/2.3.18/index.json b/ThirdPartyLibraries/packages/nuget.org/dotliquid/2.3.18/index.json new file mode 100644 index 00000000..114640b5 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/dotliquid/2.3.18/index.json @@ -0,0 +1,32 @@ +{ + "Source": "https://api.nuget.org/v3/index.json", + "License": { + "Code": "Apache-2.0 OR MS-PL", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "ThirdPartyLibraries", + "InternalOnly": false, + "TargetFrameworks": [ + "netstandard2.1" + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "Apache-2.0 OR MS-PL", + "HRef": "https://licenses.nuget.org/Apache-2.0%20OR%20MS-PL" + }, + { + "Subject": "repository", + "HRef": "https://github.com/dotliquid/dotliquid.git", + "Description": "License code NOASSERTION" + }, + { + "Subject": "project", + "HRef": "https://www.dotliquid.org/" + } + ] +} \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/dotliquid/2.2.692/package-LICENSE.txt b/ThirdPartyLibraries/packages/nuget.org/dotliquid/2.3.18/package-LICENSE.txt similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/dotliquid/2.2.692/package-LICENSE.txt rename to ThirdPartyLibraries/packages/nuget.org/dotliquid/2.3.18/package-LICENSE.txt diff --git a/ThirdPartyLibraries/packages/nuget.org/dotliquid/2.2.692/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/dotliquid/2.3.18/package.nuspec similarity index 73% rename from ThirdPartyLibraries/packages/nuget.org/dotliquid/2.2.692/package.nuspec rename to ThirdPartyLibraries/packages/nuget.org/dotliquid/2.3.18/package.nuspec index 45645dac..fe896f3d 100644 --- a/ThirdPartyLibraries/packages/nuget.org/dotliquid/2.2.692/package.nuspec +++ b/ThirdPartyLibraries/packages/nuget.org/dotliquid/2.3.18/package.nuspec @@ -2,22 +2,25 @@ DotLiquid - 2.2.692 + 2.3.18 DotLiquid Tim Jones, Alessandro Petrelli Tim Jones false - http://www.apache.org/licenses/LICENSE-2.0 - http://dotliquidmarkup.org/ + Apache-2.0 OR MS-PL + https://licenses.nuget.org/Apache-2.0%20OR%20MS-PL + https://www.dotliquid.org/ https://raw.githubusercontent.com/dotliquid/dotliquid/master/src/DotLiquid/logo_nuget.png DotLiquid is a templating system ported to the .NET framework from Ruby’s Liquid Markup. DotLiquid is a templating system ported to the .NET framework from Ruby’s Liquid Markup. en-US template templating language liquid markup + + \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/dotliquid/2.3.18/readme.md b/ThirdPartyLibraries/packages/nuget.org/dotliquid/2.3.18/readme.md new file mode 100644 index 00000000..25dd7f2c --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/dotliquid/2.3.18/readme.md @@ -0,0 +1,27 @@ +DotLiquid [2.3.18](https://www.nuget.org/packages/DotLiquid/2.3.18) +-------------------- + +Used by: ThirdPartyLibraries + +Target frameworks: netstandard2.1 + +License: [Apache-2.0](../../../../licenses/apache-2.0) OR [MS-PL](../../../../licenses/ms-pl) + +- package license: [Apache-2.0 OR MS-PL](https://licenses.nuget.org/Apache-2.0%20OR%20MS-PL) +- repository license: [Unknown](https://github.com/dotliquid/dotliquid.git) , License code NOASSERTION +- project license: [Unknown](https://www.dotliquid.org/) + +Description +----------- +DotLiquid is a templating system ported to the .NET framework from Ruby’s Liquid Markup. + +Remarks +----------- +no remarks + + +Dependencies 0 +----------- + + +*This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/dotliquid/2.2.692/remarks.md b/ThirdPartyLibraries/packages/nuget.org/dotliquid/2.3.18/remarks.md similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/dotliquid/2.2.692/remarks.md rename to ThirdPartyLibraries/packages/nuget.org/dotliquid/2.3.18/remarks.md diff --git a/ThirdPartyLibraries/packages/nuget.org/dotliquid/2.3.18/repository-LICENSE.txt b/ThirdPartyLibraries/packages/nuget.org/dotliquid/2.3.18/repository-LICENSE.txt new file mode 100644 index 00000000..b0b02794 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/dotliquid/2.3.18/repository-LICENSE.txt @@ -0,0 +1,175 @@ +DotLiquid is intended to be used in both open-source and commercial environments. To allow its use in as many +situations as possible, DotLiquid is dual-licensed. You may choose to use DotLiquid under either the Apache License, +Version 2.0, or the Microsoft Public License (Ms-PL). These licenses are essentially identical, but you are +encouraged to evaluate both to determine which best fits your intended use. + +----- + +Apache License, Version 2.0 + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 +through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, +or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, +direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or +(ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source +code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, +including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, +as indicated by a copyright notice that is included in or attached to the work (an example is provided in the +Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) +the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, +as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include +works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative +Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications +or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion +in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the +copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written +communication sent to the Licensor or its representatives, including but not limited to communication on electronic +mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, +the Licensor for the purpose of discussing and improving the Work, but excluding communication that is +conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been +received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. + +Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, +non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, +publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or +Object form. + +3. Grant of Patent License. + +Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, +non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, +have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to +those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone +or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You +institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging +that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent +infringement, then any patent licenses granted to You under this License for that Work shall terminate as of +the date such litigation is filed. + +4. Redistribution. + +You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without +modifications, and in Source or Object form, provided that You meet the following conditions: + + 1. You must give any other recipients of the Work or Derivative Works a copy of this License; and + 2. You must cause any modified files to carry prominent notices stating that You changed the files; and + 3. You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, + trademark, and attribution notices from the Source form of the Work, excluding those notices that do not + pertain to any part of the Derivative Works; and + 4. If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You + distribute must include a readable copy of the attribution notices contained within such NOTICE file, + excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the + following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source + form or documentation, if provided along with the Derivative Works; or, within a display generated by the + Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file + are for informational purposes only and do not modify the License. You may add Your own attribution notices + within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, + provided that such additional attribution notices cannot be construed as modifying the License. + 5. You may add Your own copyright statement to Your modifications and may provide additional or different license + terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative + Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the + conditions stated in this License. + +5. Submission of Contributions. + +Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You +to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. +Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you +may have executed with Licensor regarding such Contributions. + +6. Trademarks. + +This License does not grant permission to use the trade names, trademarks, service marks, or product names of the +Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing +the content of the NOTICE file. + +7. Disclaimer of Warranty. + +Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides +its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, +including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS +FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing +the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. + +In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless +required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any +Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential +damages of any character arising as a result of this License or out of the use or inability to use the Work +(including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, +or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility +of such damages. + +9. Accepting Warranty or Additional Liability. + +While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, +acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this +License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole +responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold +each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason +of your accepting any such warranty or additional liability. + +----- + +Microsoft Public License (Ms-PL) + +This license governs use of the accompanying software. If you use the software, you +accept this license. If you do not accept the license, do not use the software. + +1. Definitions +The terms "reproduce," "reproduction," "derivative works," and "distribution" have the +same meaning here as under U.S. copyright law. +A "contribution" is the original software, or any additions or changes to the software. +A "contributor" is any person that distributes its contribution under this license. +"Licensed patents" are a contributor's patent claims that read directly on its contribution. + +2. Grant of Rights +(A) Copyright Grant- Subject to the terms of this license, including the license conditions and + limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free + copyright license to reproduce its contribution, prepare derivative works of its contribution, + and distribute its contribution or any derivative works that you create. +(B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations + in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under + its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose + of its contribution in the software or derivative works of the contribution in the software. + +3. Conditions and Limitations +(A) No Trademark License- This license does not grant you rights to use any contributors' name, logo, + or trademarks. +(B) If you bring a patent claim against any contributor over patents that you claim are infringed by + the software, your patent license from such contributor to the software ends automatically. +(C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, + and attribution notices that are present in the software. +(D) If you distribute any portion of the software in source code form, you may do so only under this + license by including a complete copy of this license with your distribution. If you distribute + any portion of the software in compiled or object code form, you may only do so under a license + that complies with this license. +(E) The software is licensed "as-is." You bear the risk of using it. The contributors give no express + warranties, guarantees or conditions. You may have additional consumer rights under your local laws + which this license cannot change. To the extent permitted under your local laws, the contributors + exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement. \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/dotliquid/2.2.692/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/dotliquid/2.3.18/third-party-notices.txt similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/dotliquid/2.2.692/third-party-notices.txt rename to ThirdPartyLibraries/packages/nuget.org/dotliquid/2.3.18/third-party-notices.txt diff --git a/ThirdPartyLibraries/packages/nuget.org/emptyfiles/4.4.0/index.json b/ThirdPartyLibraries/packages/nuget.org/emptyfiles/4.4.0/index.json index a156e771..2fcda50c 100644 --- a/ThirdPartyLibraries/packages/nuget.org/emptyfiles/4.4.0/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/emptyfiles/4.4.0/index.json @@ -14,7 +14,7 @@ "Dependencies": [ { "Name": "System.Memory", - "Version": "4.5.5" + "Version": "4.6.0" } ] } diff --git a/ThirdPartyLibraries/packages/nuget.org/emptyfiles/4.4.0/readme.md b/ThirdPartyLibraries/packages/nuget.org/emptyfiles/4.4.0/readme.md index 90859321..a19cb2e2 100644 --- a/ThirdPartyLibraries/packages/nuget.org/emptyfiles/4.4.0/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/emptyfiles/4.4.0/readme.md @@ -25,6 +25,6 @@ Dependencies 1 |Name|Version| |----------|:----| -|[System.Memory](../../../../packages/nuget.org/system.memory/4.5.5)|4.5.5| +|[System.Memory](../../../../packages/nuget.org/system.memory/4.6.0)|4.6.0| *This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.applicationinsights/2.22.0/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.applicationinsights/2.22.0/index.json new file mode 100644 index 00000000..1a3a6b09 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.applicationinsights/2.22.0/index.json @@ -0,0 +1,39 @@ +{ + "Source": "https://api.nuget.org/v3/index.json", + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "ThirdPartyLibraries", + "InternalOnly": true, + "TargetFrameworks": [ + "net8.0", + "net9.0" + ], + "Dependencies": [ + { + "Name": "System.Diagnostics.DiagnosticSource", + "Version": "5.0.0" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://licenses.nuget.org/MIT" + }, + { + "Subject": "repository", + "Code": "MIT", + "HRef": "https://github.com/Microsoft/ApplicationInsights-dotnet" + }, + { + "Subject": "project", + "HRef": "https://go.microsoft.com/fwlink/?LinkId=392727" + } + ] +} \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.applicationinsights/2.22.0/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/microsoft.applicationinsights/2.22.0/package.nuspec new file mode 100644 index 00000000..f148de18 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.applicationinsights/2.22.0/package.nuspec @@ -0,0 +1,37 @@ + + + + Microsoft.ApplicationInsights + 2.22.0 + Application Insights API + Microsoft + true + MIT + https://licenses.nuget.org/MIT + icon.png + https://go.microsoft.com/fwlink/?LinkId=392727 + Application Insights Base API. This package provides core functionality for transmission of all Application Insights Telemetry Types and is a dependent package for all other Application Insights packages. Please install the platform specific package for the best experience. Privacy statement: https://go.microsoft.com/fwlink/?LinkId=512156 + You should not use this nuget package for Win Phone, WinStore and UWP applications. It is not supported starting 2.0.0. + For the release notes please follow http://go.microsoft.com/fwlink/?LinkId=535037 + © Microsoft Corporation. All rights reserved. + Analytics Azure ApplicationInsights Telemetry Monitoring SDK + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.applicationinsights/2.22.0/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.applicationinsights/2.22.0/readme.md new file mode 100644 index 00000000..d332620c --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.applicationinsights/2.22.0/readme.md @@ -0,0 +1,30 @@ +Microsoft.ApplicationInsights [2.22.0](https://www.nuget.org/packages/Microsoft.ApplicationInsights/2.22.0) +-------------------- + +Used by: ThirdPartyLibraries internal + +Target frameworks: net8.0, net9.0 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://licenses.nuget.org/MIT) +- repository license: [MIT](https://github.com/Microsoft/ApplicationInsights-dotnet) +- project license: [Unknown](https://go.microsoft.com/fwlink/?LinkId=392727) + +Description +----------- +Application Insights Base API. This package provides core functionality for transmission of all Application Insights Telemetry Types and is a dependent package for all other Application Insights packages. Please install the platform specific package for the best experience. Privacy statement: https://go.microsoft.com/fwlink/?LinkId=512156 + +Remarks +----------- +no remarks + + +Dependencies 1 +----------- + +|Name|Version| +|----------|:----| +|[System.Diagnostics.DiagnosticSource](../../../../packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0)|5.0.0| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/remarks.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.applicationinsights/2.22.0/remarks.md similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/remarks.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.applicationinsights/2.22.0/remarks.md diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.applicationinsights/2.22.0/repository-LICENSE b/ThirdPartyLibraries/packages/nuget.org/microsoft.applicationinsights/2.22.0/repository-LICENSE new file mode 100644 index 00000000..3423e958 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.applicationinsights/2.22.0/repository-LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2015 Microsoft + +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/ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/microsoft.applicationinsights/2.22.0/third-party-notices.txt similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/third-party-notices.txt rename to ThirdPartyLibraries/packages/nuget.org/microsoft.applicationinsights/2.22.0/third-party-notices.txt diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/9.0.1/index.json similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/index.json rename to ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/9.0.1/index.json diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/package-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/9.0.1/package-LICENSE.TXT similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/package-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/9.0.1/package-LICENSE.TXT diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/9.0.1/package.nuspec similarity index 84% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/package.nuspec rename to ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/9.0.1/package.nuspec index fafb2c6b..5ee701e1 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/package.nuspec +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/9.0.1/package.nuspec @@ -2,23 +2,18 @@ Microsoft.Bcl.AsyncInterfaces - 8.0.0 + 9.0.1 Microsoft MIT https://licenses.nuget.org/MIT Icon.png PACKAGE.md https://dot.net/ - Provides the IAsyncEnumerable<T> and IAsyncDisposable interfaces and helper types for .NET Standard 2.0. This package is not required starting with .NET Standard 2.1 and .NET Core 3.0. - -Commonly Used Types: -System.IAsyncDisposable -System.Collections.Generic.IAsyncEnumerable -System.Collections.Generic.IAsyncEnumerator + Provides the IAsyncEnumerable<T> and IAsyncDisposable interfaces and helper types for .NET Standard 2.0. This package is not required starting with .NET Standard 2.1 and .NET Core 3.0. https://go.microsoft.com/fwlink/?LinkID=799421 © Microsoft Corporation. All rights reserved. true - + diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/9.0.1/readme.md similarity index 72% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/readme.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/9.0.1/readme.md index ffbe86bc..03af3f09 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/9.0.1/readme.md @@ -1,4 +1,4 @@ -Microsoft.Bcl.AsyncInterfaces [8.0.0](https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/8.0.0) +Microsoft.Bcl.AsyncInterfaces [9.0.1](https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/9.0.1) -------------------- Used by: ThirdPartyLibraries @@ -15,11 +15,6 @@ Description ----------- Provides the IAsyncEnumerable and IAsyncDisposable interfaces and helper types for .NET Standard 2.0. This package is not required starting with .NET Standard 2.1 and .NET Core 3.0. -Commonly Used Types: -System.IAsyncDisposable -System.Collections.Generic.IAsyncEnumerable -System.Collections.Generic.IAsyncEnumerator - Remarks ----------- no remarks diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.11.1/remarks.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/9.0.1/remarks.md similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.11.1/remarks.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/9.0.1/remarks.md diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/repository-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/9.0.1/repository-LICENSE.TXT similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/repository-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/9.0.1/repository-LICENSE.TXT diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.11.1/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/9.0.1/third-party-notices.txt similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.11.1/third-party-notices.txt rename to ThirdPartyLibraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/9.0.1/third-party-notices.txt diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.11.1/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.12.0/index.json similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.11.1/index.json rename to ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.12.0/index.json diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.11.1/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.12.0/package.nuspec similarity index 92% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.11.1/package.nuspec rename to ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.12.0/package.nuspec index d3434865..33c7d9dc 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.11.1/package.nuspec +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.12.0/package.nuspec @@ -2,7 +2,7 @@ Microsoft.CodeCoverage - 17.11.1 + 17.12.0 Microsoft true MIT @@ -13,7 +13,7 @@ © Microsoft Corporation. All rights reserved. vstest visual-studio unittest testplatform mstest microsoft test testing codecoverage code-coverage true - + diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.11.1/project-LICENSE b/ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.12.0/project-LICENSE similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.11.1/project-LICENSE rename to ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.12.0/project-LICENSE diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.11.1/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.12.0/readme.md similarity index 85% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.11.1/readme.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.12.0/readme.md index 01f5f9f9..f81d3d15 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.11.1/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.12.0/readme.md @@ -1,4 +1,4 @@ -Microsoft.CodeCoverage [17.11.1](https://www.nuget.org/packages/Microsoft.CodeCoverage/17.11.1) +Microsoft.CodeCoverage [17.12.0](https://www.nuget.org/packages/Microsoft.CodeCoverage/17.12.0) -------------------- Used by: ThirdPartyLibraries internal diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/remarks.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.12.0/remarks.md similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/remarks.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.12.0/remarks.md diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.11.1/repository-LICENSE b/ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.12.0/repository-LICENSE similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.11.1/repository-LICENSE rename to ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.12.0/repository-LICENSE diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.12.0/third-party-notices.txt similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/third-party-notices.txt rename to ThirdPartyLibraries/packages/nuget.org/microsoft.codecoverage/17.12.0/third-party-notices.txt diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/8.0.0/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/9.0.1/index.json similarity index 96% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/8.0.0/index.json rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/9.0.1/index.json index ebeab4cf..6078088f 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/8.0.0/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/9.0.1/index.json @@ -16,7 +16,7 @@ "Dependencies": [ { "Name": "Microsoft.Extensions.Primitives", - "Version": "8.0.0" + "Version": "9.0.1" } ] } diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/package-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/9.0.1/package-LICENSE.TXT similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/package-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/9.0.1/package-LICENSE.TXT diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/9.0.1/package.nuspec similarity index 77% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/package.nuspec rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/9.0.1/package.nuspec index 13f09806..ac94d363 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/package.nuspec +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/9.0.1/package.nuspec @@ -2,7 +2,7 @@ Microsoft.Extensions.Configuration.Abstractions - 8.0.0 + 9.0.1 Microsoft MIT https://licenses.nuget.org/MIT @@ -13,23 +13,20 @@ https://go.microsoft.com/fwlink/?LinkID=799421 © Microsoft Corporation. All rights reserved. true - + - + - - - - - - - + + + + - + diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/9.0.1/readme.md similarity index 86% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/readme.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/9.0.1/readme.md index f388577b..316ab634 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/9.0.1/readme.md @@ -1,4 +1,4 @@ -Microsoft.Extensions.Configuration.Abstractions [8.0.0](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Abstractions/8.0.0) +Microsoft.Extensions.Configuration.Abstractions [9.0.1](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Abstractions/9.0.1) -------------------- Used by: ThirdPartyLibraries @@ -25,6 +25,6 @@ Dependencies 1 |Name|Version| |----------|:----| -|[Microsoft.Extensions.Primitives](../../../../packages/nuget.org/microsoft.extensions.primitives/8.0.0)|8.0.0| +|[Microsoft.Extensions.Primitives](../../../../packages/nuget.org/microsoft.extensions.primitives/9.0.1)|9.0.1| *This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.2/remarks.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/9.0.1/remarks.md similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.2/remarks.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/9.0.1/remarks.md diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/repository-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/9.0.1/repository-LICENSE.TXT similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/repository-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/9.0.1/repository-LICENSE.TXT diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.2/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/9.0.1/third-party-notices.txt similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.2/third-party-notices.txt rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/9.0.1/third-party-notices.txt diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.2/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/9.0.1/index.json similarity index 96% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.2/index.json rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/9.0.1/index.json index 95270e39..82ac2cae 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.2/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/9.0.1/index.json @@ -16,7 +16,7 @@ "Dependencies": [ { "Name": "Microsoft.Extensions.Configuration.Abstractions", - "Version": "8.0.0" + "Version": "9.0.1" } ] } diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.2/package-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/9.0.1/package-LICENSE.TXT similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.2/package-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/9.0.1/package-LICENSE.TXT diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.2/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/9.0.1/package.nuspec similarity index 77% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.2/package.nuspec rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/9.0.1/package.nuspec index e6cd30db..08ef164e 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.2/package.nuspec +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/9.0.1/package.nuspec @@ -2,7 +2,7 @@ Microsoft.Extensions.Configuration.Binder - 8.0.2 + 9.0.1 Microsoft MIT https://licenses.nuget.org/MIT @@ -13,22 +13,19 @@ https://go.microsoft.com/fwlink/?LinkID=799421 © Microsoft Corporation. All rights reserved. true - + - - - - - - - + - + + + + - + diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.2/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/9.0.1/readme.md similarity index 88% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.2/readme.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/9.0.1/readme.md index a6ee33d4..541bc76e 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.2/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/9.0.1/readme.md @@ -1,4 +1,4 @@ -Microsoft.Extensions.Configuration.Binder [8.0.2](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Binder/8.0.2) +Microsoft.Extensions.Configuration.Binder [9.0.1](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Binder/9.0.1) -------------------- Used by: ThirdPartyLibraries @@ -25,6 +25,6 @@ Dependencies 1 |Name|Version| |----------|:----| -|[Microsoft.Extensions.Configuration.Abstractions](../../../../packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0)|8.0.0| +|[Microsoft.Extensions.Configuration.Abstractions](../../../../packages/nuget.org/microsoft.extensions.configuration.abstractions/9.0.1)|9.0.1| *This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/8.0.0/remarks.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/9.0.1/remarks.md similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/8.0.0/remarks.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/9.0.1/remarks.md diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.2/repository-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/9.0.1/repository-LICENSE.TXT similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/8.0.2/repository-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/9.0.1/repository-LICENSE.TXT diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/8.0.0/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/9.0.1/third-party-notices.txt similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/8.0.0/third-party-notices.txt rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.binder/9.0.1/third-party-notices.txt diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/8.0.0/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/9.0.1/index.json similarity index 93% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/8.0.0/index.json rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/9.0.1/index.json index 3359d6f2..281f5be9 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/8.0.0/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/9.0.1/index.json @@ -16,11 +16,11 @@ "Dependencies": [ { "Name": "Microsoft.Extensions.Configuration", - "Version": "8.0.0" + "Version": "9.0.1" }, { "Name": "Microsoft.Extensions.Configuration.Abstractions", - "Version": "8.0.0" + "Version": "9.0.1" } ] } diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/8.0.0/package-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/9.0.1/package-LICENSE.TXT similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/8.0.0/package-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/9.0.1/package-LICENSE.TXT diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/8.0.0/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/9.0.1/package.nuspec similarity index 70% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/8.0.0/package.nuspec rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/9.0.1/package.nuspec index 29a35dd9..bc06e8b4 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/8.0.0/package.nuspec +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/9.0.1/package.nuspec @@ -2,7 +2,7 @@ Microsoft.Extensions.Configuration.EnvironmentVariables - 8.0.0 + 9.0.1 Microsoft MIT https://licenses.nuget.org/MIT @@ -13,27 +13,23 @@ https://go.microsoft.com/fwlink/?LinkID=799421 © Microsoft Corporation. All rights reserved. true - + - - - - - - - - - - + + - - + + + + + + - - + + diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/8.0.0/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/9.0.1/readme.md similarity index 87% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/8.0.0/readme.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/9.0.1/readme.md index 301ae831..41369e59 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/8.0.0/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/9.0.1/readme.md @@ -1,4 +1,4 @@ -Microsoft.Extensions.Configuration.EnvironmentVariables [8.0.0](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.EnvironmentVariables/8.0.0) +Microsoft.Extensions.Configuration.EnvironmentVariables [9.0.1](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.1) -------------------- Used by: ThirdPartyLibraries @@ -25,7 +25,7 @@ Dependencies 2 |Name|Version| |----------|:----| -|[Microsoft.Extensions.Configuration](../../../../packages/nuget.org/microsoft.extensions.configuration/8.0.0)|8.0.0| -|[Microsoft.Extensions.Configuration.Abstractions](../../../../packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0)|8.0.0| +|[Microsoft.Extensions.Configuration](../../../../packages/nuget.org/microsoft.extensions.configuration/9.0.1)|9.0.1| +|[Microsoft.Extensions.Configuration.Abstractions](../../../../packages/nuget.org/microsoft.extensions.configuration.abstractions/9.0.1)|9.0.1| *This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/8.0.1/remarks.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/9.0.1/remarks.md similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/8.0.1/remarks.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/9.0.1/remarks.md diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/8.0.0/repository-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/9.0.1/repository-LICENSE.TXT similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/8.0.0/repository-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/9.0.1/repository-LICENSE.TXT diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/8.0.1/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/9.0.1/third-party-notices.txt similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/8.0.1/third-party-notices.txt rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.environmentvariables/9.0.1/third-party-notices.txt diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/8.0.1/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/9.0.1/index.json similarity index 88% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/8.0.1/index.json rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/9.0.1/index.json index 2fe9518c..c603b531 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/8.0.1/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/9.0.1/index.json @@ -16,23 +16,23 @@ "Dependencies": [ { "Name": "Microsoft.Extensions.Configuration", - "Version": "8.0.0" + "Version": "9.0.1" }, { "Name": "Microsoft.Extensions.Configuration.Abstractions", - "Version": "8.0.0" + "Version": "9.0.1" }, { "Name": "Microsoft.Extensions.FileProviders.Abstractions", - "Version": "8.0.0" + "Version": "9.0.1" }, { "Name": "Microsoft.Extensions.FileProviders.Physical", - "Version": "8.0.0" + "Version": "9.0.1" }, { "Name": "Microsoft.Extensions.Primitives", - "Version": "8.0.0" + "Version": "9.0.1" } ] } diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/8.0.1/package-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/9.0.1/package-LICENSE.TXT similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/8.0.1/package-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/9.0.1/package-LICENSE.TXT diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/8.0.1/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/9.0.1/package.nuspec similarity index 58% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/8.0.1/package.nuspec rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/9.0.1/package.nuspec index 6d9d4f26..93346b4d 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/8.0.1/package.nuspec +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/9.0.1/package.nuspec @@ -2,7 +2,7 @@ Microsoft.Extensions.Configuration.FileExtensions - 8.0.1 + 9.0.1 Microsoft MIT https://licenses.nuget.org/MIT @@ -13,42 +13,35 @@ https://go.microsoft.com/fwlink/?LinkID=799421 © Microsoft Corporation. All rights reserved. true - + - - - - - - - - - - - - - - - - - - - + + + + + - - - - - + + + + + + + + + + + + - - - - - + + + + + diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/8.0.1/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/9.0.1/readme.md similarity index 79% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/8.0.1/readme.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/9.0.1/readme.md index 3861bddc..feb27910 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/8.0.1/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/9.0.1/readme.md @@ -1,4 +1,4 @@ -Microsoft.Extensions.Configuration.FileExtensions [8.0.1](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.FileExtensions/8.0.1) +Microsoft.Extensions.Configuration.FileExtensions [9.0.1](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.FileExtensions/9.0.1) -------------------- Used by: ThirdPartyLibraries @@ -25,10 +25,10 @@ Dependencies 5 |Name|Version| |----------|:----| -|[Microsoft.Extensions.Configuration](../../../../packages/nuget.org/microsoft.extensions.configuration/8.0.0)|8.0.0| -|[Microsoft.Extensions.Configuration.Abstractions](../../../../packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0)|8.0.0| -|[Microsoft.Extensions.FileProviders.Abstractions](../../../../packages/nuget.org/microsoft.extensions.fileproviders.abstractions/8.0.0)|8.0.0| -|[Microsoft.Extensions.FileProviders.Physical](../../../../packages/nuget.org/microsoft.extensions.fileproviders.physical/8.0.0)|8.0.0| -|[Microsoft.Extensions.Primitives](../../../../packages/nuget.org/microsoft.extensions.primitives/8.0.0)|8.0.0| +|[Microsoft.Extensions.Configuration](../../../../packages/nuget.org/microsoft.extensions.configuration/9.0.1)|9.0.1| +|[Microsoft.Extensions.Configuration.Abstractions](../../../../packages/nuget.org/microsoft.extensions.configuration.abstractions/9.0.1)|9.0.1| +|[Microsoft.Extensions.FileProviders.Abstractions](../../../../packages/nuget.org/microsoft.extensions.fileproviders.abstractions/9.0.1)|9.0.1| +|[Microsoft.Extensions.FileProviders.Physical](../../../../packages/nuget.org/microsoft.extensions.fileproviders.physical/9.0.1)|9.0.1| +|[Microsoft.Extensions.Primitives](../../../../packages/nuget.org/microsoft.extensions.primitives/9.0.1)|9.0.1| *This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/8.0.1/remarks.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/9.0.1/remarks.md similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/8.0.1/remarks.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/9.0.1/remarks.md diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/8.0.1/repository-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/9.0.1/repository-LICENSE.TXT similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/8.0.1/repository-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/9.0.1/repository-LICENSE.TXT diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/8.0.1/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/9.0.1/third-party-notices.txt similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/8.0.1/third-party-notices.txt rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.fileextensions/9.0.1/third-party-notices.txt diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/8.0.1/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/9.0.1/index.json similarity index 83% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/8.0.1/index.json rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/9.0.1/index.json index 69a13cf8..ff327981 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/8.0.1/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/9.0.1/index.json @@ -16,19 +16,23 @@ "Dependencies": [ { "Name": "Microsoft.Extensions.Configuration", - "Version": "8.0.0" + "Version": "9.0.1" }, { "Name": "Microsoft.Extensions.Configuration.Abstractions", - "Version": "8.0.0" + "Version": "9.0.1" }, { "Name": "Microsoft.Extensions.Configuration.FileExtensions", - "Version": "8.0.1" + "Version": "9.0.1" }, { "Name": "Microsoft.Extensions.FileProviders.Abstractions", - "Version": "8.0.0" + "Version": "9.0.1" + }, + { + "Name": "System.Text.Json", + "Version": "9.0.1" } ] } diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/8.0.1/package-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/9.0.1/package-LICENSE.TXT similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/8.0.1/package-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/9.0.1/package-LICENSE.TXT diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/8.0.1/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/9.0.1/package.nuspec similarity index 57% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/8.0.1/package.nuspec rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/9.0.1/package.nuspec index 44f13b9f..fce13c99 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/8.0.1/package.nuspec +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/9.0.1/package.nuspec @@ -2,7 +2,7 @@ Microsoft.Extensions.Configuration.Json - 8.0.1 + 9.0.1 Microsoft MIT https://licenses.nuget.org/MIT @@ -13,48 +13,41 @@ https://go.microsoft.com/fwlink/?LinkID=799421 © Microsoft Corporation. All rights reserved. true - + - - - - - - - - - - - - - - - - - - - + + + + + - - - - + + + + + + + + + + + - - - - - + + + + + - - - - - + + + + + diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/8.0.1/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/9.0.1/readme.md similarity index 78% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/8.0.1/readme.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/9.0.1/readme.md index 9ae95ec5..f627d8db 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/8.0.1/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/9.0.1/readme.md @@ -1,4 +1,4 @@ -Microsoft.Extensions.Configuration.Json [8.0.1](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Json/8.0.1) +Microsoft.Extensions.Configuration.Json [9.0.1](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Json/9.0.1) -------------------- Used by: ThirdPartyLibraries @@ -20,14 +20,15 @@ Remarks no remarks -Dependencies 4 +Dependencies 5 ----------- |Name|Version| |----------|:----| -|[Microsoft.Extensions.Configuration](../../../../packages/nuget.org/microsoft.extensions.configuration/8.0.0)|8.0.0| -|[Microsoft.Extensions.Configuration.Abstractions](../../../../packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0)|8.0.0| -|[Microsoft.Extensions.Configuration.FileExtensions](../../../../packages/nuget.org/microsoft.extensions.configuration.fileextensions/8.0.1)|8.0.1| -|[Microsoft.Extensions.FileProviders.Abstractions](../../../../packages/nuget.org/microsoft.extensions.fileproviders.abstractions/8.0.0)|8.0.0| +|[Microsoft.Extensions.Configuration](../../../../packages/nuget.org/microsoft.extensions.configuration/9.0.1)|9.0.1| +|[Microsoft.Extensions.Configuration.Abstractions](../../../../packages/nuget.org/microsoft.extensions.configuration.abstractions/9.0.1)|9.0.1| +|[Microsoft.Extensions.Configuration.FileExtensions](../../../../packages/nuget.org/microsoft.extensions.configuration.fileextensions/9.0.1)|9.0.1| +|[Microsoft.Extensions.FileProviders.Abstractions](../../../../packages/nuget.org/microsoft.extensions.fileproviders.abstractions/9.0.1)|9.0.1| +|[System.Text.Json](../../../../packages/nuget.org/system.text.json/9.0.1)|9.0.1| *This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/8.0.1/remarks.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/9.0.1/remarks.md similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/8.0.1/remarks.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/9.0.1/remarks.md diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/8.0.1/repository-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/9.0.1/repository-LICENSE.TXT similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/8.0.1/repository-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/9.0.1/repository-LICENSE.TXT diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/8.0.1/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/9.0.1/third-party-notices.txt similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/8.0.1/third-party-notices.txt rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.json/9.0.1/third-party-notices.txt diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/8.0.1/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/9.0.1/index.json similarity index 89% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/8.0.1/index.json rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/9.0.1/index.json index 18cbeca1..60e842ef 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/8.0.1/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/9.0.1/index.json @@ -16,19 +16,19 @@ "Dependencies": [ { "Name": "Microsoft.Extensions.Configuration.Abstractions", - "Version": "8.0.0" + "Version": "9.0.1" }, { "Name": "Microsoft.Extensions.Configuration.Json", - "Version": "8.0.1" + "Version": "9.0.1" }, { "Name": "Microsoft.Extensions.FileProviders.Abstractions", - "Version": "8.0.0" + "Version": "9.0.1" }, { "Name": "Microsoft.Extensions.FileProviders.Physical", - "Version": "8.0.0" + "Version": "9.0.1" } ] } diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/8.0.1/package-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/9.0.1/package-LICENSE.TXT similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/8.0.1/package-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/9.0.1/package-LICENSE.TXT diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/8.0.1/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/9.0.1/package.nuspec similarity index 62% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/8.0.1/package.nuspec rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/9.0.1/package.nuspec index 81630b08..253a2e5b 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/8.0.1/package.nuspec +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/9.0.1/package.nuspec @@ -2,7 +2,7 @@ Microsoft.Extensions.Configuration.UserSecrets - 8.0.1 + 9.0.1 Microsoft MIT https://licenses.nuget.org/MIT @@ -13,37 +13,31 @@ https://go.microsoft.com/fwlink/?LinkID=799421 © Microsoft Corporation. All rights reserved. true - + - - - - - - - - - - - - - - - - + + + + - - - - + + + + + + + + + + - - - - + + + + diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/8.0.1/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/9.0.1/readme.md similarity index 84% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/8.0.1/readme.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/9.0.1/readme.md index 562c9ea7..56179f41 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/8.0.1/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/9.0.1/readme.md @@ -1,4 +1,4 @@ -Microsoft.Extensions.Configuration.UserSecrets [8.0.1](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.UserSecrets/8.0.1) +Microsoft.Extensions.Configuration.UserSecrets [9.0.1](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.UserSecrets/9.0.1) -------------------- Used by: ThirdPartyLibraries @@ -25,9 +25,9 @@ Dependencies 4 |Name|Version| |----------|:----| -|[Microsoft.Extensions.Configuration.Abstractions](../../../../packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0)|8.0.0| -|[Microsoft.Extensions.Configuration.Json](../../../../packages/nuget.org/microsoft.extensions.configuration.json/8.0.1)|8.0.1| -|[Microsoft.Extensions.FileProviders.Abstractions](../../../../packages/nuget.org/microsoft.extensions.fileproviders.abstractions/8.0.0)|8.0.0| -|[Microsoft.Extensions.FileProviders.Physical](../../../../packages/nuget.org/microsoft.extensions.fileproviders.physical/8.0.0)|8.0.0| +|[Microsoft.Extensions.Configuration.Abstractions](../../../../packages/nuget.org/microsoft.extensions.configuration.abstractions/9.0.1)|9.0.1| +|[Microsoft.Extensions.Configuration.Json](../../../../packages/nuget.org/microsoft.extensions.configuration.json/9.0.1)|9.0.1| +|[Microsoft.Extensions.FileProviders.Abstractions](../../../../packages/nuget.org/microsoft.extensions.fileproviders.abstractions/9.0.1)|9.0.1| +|[Microsoft.Extensions.FileProviders.Physical](../../../../packages/nuget.org/microsoft.extensions.fileproviders.physical/9.0.1)|9.0.1| *This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/remarks.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/9.0.1/remarks.md similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/remarks.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/9.0.1/remarks.md diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/8.0.1/repository-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/9.0.1/repository-LICENSE.TXT similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/8.0.1/repository-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/9.0.1/repository-LICENSE.TXT diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/9.0.1/third-party-notices.txt similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/third-party-notices.txt rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.usersecrets/9.0.1/third-party-notices.txt diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/9.0.1/index.json similarity index 93% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/index.json rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/9.0.1/index.json index 56805067..dc863a75 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/9.0.1/index.json @@ -16,11 +16,11 @@ "Dependencies": [ { "Name": "Microsoft.Extensions.Configuration.Abstractions", - "Version": "8.0.0" + "Version": "9.0.1" }, { "Name": "Microsoft.Extensions.Primitives", - "Version": "8.0.0" + "Version": "9.0.1" } ] } diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/package-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/9.0.1/package-LICENSE.TXT similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/package-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/9.0.1/package-LICENSE.TXT diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/9.0.1/package.nuspec similarity index 67% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/package.nuspec rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/9.0.1/package.nuspec index be871bb3..aef93d84 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/package.nuspec +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/9.0.1/package.nuspec @@ -2,7 +2,7 @@ Microsoft.Extensions.Configuration - 8.0.0 + 9.0.1 Microsoft MIT https://licenses.nuget.org/MIT @@ -13,27 +13,23 @@ https://go.microsoft.com/fwlink/?LinkID=799421 © Microsoft Corporation. All rights reserved. true - + - - - - - - - - - - + + - - + + + + + + - - + + diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/9.0.1/readme.md similarity index 81% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/readme.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/9.0.1/readme.md index 10a233f9..d2f130bf 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/9.0.1/readme.md @@ -1,4 +1,4 @@ -Microsoft.Extensions.Configuration [8.0.0](https://www.nuget.org/packages/Microsoft.Extensions.Configuration/8.0.0) +Microsoft.Extensions.Configuration [9.0.1](https://www.nuget.org/packages/Microsoft.Extensions.Configuration/9.0.1) -------------------- Used by: ThirdPartyLibraries @@ -25,7 +25,7 @@ Dependencies 2 |Name|Version| |----------|:----| -|[Microsoft.Extensions.Configuration.Abstractions](../../../../packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0)|8.0.0| -|[Microsoft.Extensions.Primitives](../../../../packages/nuget.org/microsoft.extensions.primitives/8.0.0)|8.0.0| +|[Microsoft.Extensions.Configuration.Abstractions](../../../../packages/nuget.org/microsoft.extensions.configuration.abstractions/9.0.1)|9.0.1| +|[Microsoft.Extensions.Primitives](../../../../packages/nuget.org/microsoft.extensions.primitives/9.0.1)|9.0.1| *This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2/remarks.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/9.0.1/remarks.md similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2/remarks.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/9.0.1/remarks.md diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/repository-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/9.0.1/repository-LICENSE.TXT similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/8.0.0/repository-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/9.0.1/repository-LICENSE.TXT diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/9.0.1/third-party-notices.txt similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2/third-party-notices.txt rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration/9.0.1/third-party-notices.txt diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/9.0.1/index.json similarity index 96% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2/index.json rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/9.0.1/index.json index 45240ed3..d4884caf 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/9.0.1/index.json @@ -26,7 +26,6 @@ }, { "Subject": "project", - "Code": null, "HRef": "https://dot.net/" } ] diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2/package-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/9.0.1/package-LICENSE.TXT similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2/package-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/9.0.1/package-LICENSE.TXT diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/9.0.1/package.nuspec similarity index 85% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2/package.nuspec rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/9.0.1/package.nuspec index 7dbf41b5..af9a0454 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2/package.nuspec +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/9.0.1/package.nuspec @@ -2,7 +2,7 @@ Microsoft.Extensions.DependencyInjection.Abstractions - 8.0.2 + 9.0.1 Microsoft MIT https://licenses.nuget.org/MIT @@ -16,17 +16,16 @@ Microsoft.Extensions.DependencyInjection.IServiceCollection https://go.microsoft.com/fwlink/?LinkID=799421 © Microsoft Corporation. All rights reserved. true - + - + - - + - + diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/9.0.1/readme.md similarity index 87% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2/readme.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/9.0.1/readme.md index 528255cf..198fbd5d 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/9.0.1/readme.md @@ -1,4 +1,4 @@ -Microsoft.Extensions.DependencyInjection.Abstractions [8.0.2](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2) +Microsoft.Extensions.DependencyInjection.Abstractions [9.0.1](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection.Abstractions/9.0.1) -------------------- Used by: ThirdPartyLibraries diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/8.0.1/remarks.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/9.0.1/remarks.md similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/8.0.1/remarks.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/9.0.1/remarks.md diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2/repository-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/9.0.1/repository-LICENSE.TXT similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2/repository-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/9.0.1/repository-LICENSE.TXT diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/8.0.1/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/9.0.1/third-party-notices.txt similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/8.0.1/third-party-notices.txt rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/9.0.1/third-party-notices.txt diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/8.0.1/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/9.0.1/index.json similarity index 93% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/8.0.1/index.json rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/9.0.1/index.json index f5d9f19a..33317a9a 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/8.0.1/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/9.0.1/index.json @@ -14,7 +14,7 @@ "Dependencies": [ { "Name": "Microsoft.Extensions.DependencyInjection.Abstractions", - "Version": "8.0.2" + "Version": "9.0.1" } ] } @@ -32,7 +32,6 @@ }, { "Subject": "project", - "Code": null, "HRef": "https://dot.net/" } ] diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/8.0.1/package-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/9.0.1/package-LICENSE.TXT similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/8.0.1/package-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/9.0.1/package-LICENSE.TXT diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/8.0.1/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/9.0.1/package.nuspec similarity index 72% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/8.0.1/package.nuspec rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/9.0.1/package.nuspec index 2cb18dff..8ba173f6 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/8.0.1/package.nuspec +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/9.0.1/package.nuspec @@ -2,7 +2,7 @@ Microsoft.Extensions.DependencyInjection - 8.0.1 + 9.0.1 Microsoft MIT https://licenses.nuget.org/MIT @@ -13,29 +13,26 @@ https://go.microsoft.com/fwlink/?LinkID=799421 © Microsoft Corporation. All rights reserved. true - + - - + + - - - - - - - + + + + - - + + - + diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/8.0.1/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/9.0.1/readme.md similarity index 81% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/8.0.1/readme.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/9.0.1/readme.md index 9c0b73b1..fd12fae5 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/8.0.1/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/9.0.1/readme.md @@ -1,4 +1,4 @@ -Microsoft.Extensions.DependencyInjection [8.0.1](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection/8.0.1) +Microsoft.Extensions.DependencyInjection [9.0.1](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection/9.0.1) -------------------- Used by: ThirdPartyLibraries @@ -25,6 +25,6 @@ Dependencies 1 |Name|Version| |----------|:----| -|[Microsoft.Extensions.DependencyInjection.Abstractions](../../../../packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2)|8.0.2| +|[Microsoft.Extensions.DependencyInjection.Abstractions](../../../../packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/9.0.1)|9.0.1| *This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/8.0.0/remarks.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/9.0.1/remarks.md similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/8.0.0/remarks.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/9.0.1/remarks.md diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/8.0.1/repository-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/9.0.1/repository-LICENSE.TXT similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/8.0.1/repository-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/9.0.1/repository-LICENSE.TXT diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/8.0.0/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/9.0.1/third-party-notices.txt similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/8.0.0/third-party-notices.txt rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.dependencyinjection/9.0.1/third-party-notices.txt diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/9.0.1/index.json similarity index 96% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/index.json rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/9.0.1/index.json index ebeab4cf..6078088f 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/9.0.1/index.json @@ -16,7 +16,7 @@ "Dependencies": [ { "Name": "Microsoft.Extensions.Primitives", - "Version": "8.0.0" + "Version": "9.0.1" } ] } diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/8.0.0/package-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/9.0.1/package-LICENSE.TXT similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/8.0.0/package-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/9.0.1/package-LICENSE.TXT diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/8.0.0/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/9.0.1/package.nuspec similarity index 83% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/8.0.0/package.nuspec rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/9.0.1/package.nuspec index 9f657286..287f6aec 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/8.0.0/package.nuspec +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/9.0.1/package.nuspec @@ -2,7 +2,7 @@ Microsoft.Extensions.FileProviders.Abstractions - 8.0.0 + 9.0.1 Microsoft MIT https://licenses.nuget.org/MIT @@ -18,19 +18,19 @@ Microsoft.Extensions.FileProviders.IFileProvider https://go.microsoft.com/fwlink/?LinkID=799421 © Microsoft Corporation. All rights reserved. true - + - - - - + - + + + + - + diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/8.0.0/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/9.0.1/readme.md similarity index 86% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/8.0.0/readme.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/9.0.1/readme.md index a682f12a..87d3dd71 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/8.0.0/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/9.0.1/readme.md @@ -1,4 +1,4 @@ -Microsoft.Extensions.FileProviders.Abstractions [8.0.0](https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Abstractions/8.0.0) +Microsoft.Extensions.FileProviders.Abstractions [9.0.1](https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Abstractions/9.0.1) -------------------- Used by: ThirdPartyLibraries @@ -30,6 +30,6 @@ Dependencies 1 |Name|Version| |----------|:----| -|[Microsoft.Extensions.Primitives](../../../../packages/nuget.org/microsoft.extensions.primitives/8.0.0)|8.0.0| +|[Microsoft.Extensions.Primitives](../../../../packages/nuget.org/microsoft.extensions.primitives/9.0.1)|9.0.1| *This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/8.0.0/remarks.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/9.0.1/remarks.md similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/8.0.0/remarks.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/9.0.1/remarks.md diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/8.0.0/repository-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/9.0.1/repository-LICENSE.TXT similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/8.0.0/repository-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/9.0.1/repository-LICENSE.TXT diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/8.0.0/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/9.0.1/third-party-notices.txt similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/8.0.0/third-party-notices.txt rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.abstractions/9.0.1/third-party-notices.txt diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/8.0.0/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/9.0.1/index.json similarity index 91% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/8.0.0/index.json rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/9.0.1/index.json index 9f52d721..4d306846 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/8.0.0/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/9.0.1/index.json @@ -16,15 +16,15 @@ "Dependencies": [ { "Name": "Microsoft.Extensions.FileProviders.Abstractions", - "Version": "8.0.0" + "Version": "9.0.1" }, { "Name": "Microsoft.Extensions.FileSystemGlobbing", - "Version": "8.0.0" + "Version": "9.0.1" }, { "Name": "Microsoft.Extensions.Primitives", - "Version": "8.0.0" + "Version": "9.0.1" } ] } diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/8.0.0/package-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/9.0.1/package-LICENSE.TXT similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/8.0.0/package-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/9.0.1/package-LICENSE.TXT diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/8.0.0/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/9.0.1/package.nuspec similarity index 63% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/8.0.0/package.nuspec rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/9.0.1/package.nuspec index 25662c14..b9e27b19 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/8.0.0/package.nuspec +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/9.0.1/package.nuspec @@ -2,7 +2,7 @@ Microsoft.Extensions.FileProviders.Physical - 8.0.0 + 9.0.1 Microsoft MIT https://licenses.nuget.org/MIT @@ -13,32 +13,27 @@ https://go.microsoft.com/fwlink/?LinkID=799421 © Microsoft Corporation. All rights reserved. true - + - - - - - - - - - - - - - + + + - - - + + + + + + + + - - - + + + diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/8.0.0/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/9.0.1/readme.md similarity index 75% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/8.0.0/readme.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/9.0.1/readme.md index c3993059..2617c45b 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/8.0.0/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/9.0.1/readme.md @@ -1,4 +1,4 @@ -Microsoft.Extensions.FileProviders.Physical [8.0.0](https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Physical/8.0.0) +Microsoft.Extensions.FileProviders.Physical [9.0.1](https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Physical/9.0.1) -------------------- Used by: ThirdPartyLibraries @@ -25,8 +25,8 @@ Dependencies 3 |Name|Version| |----------|:----| -|[Microsoft.Extensions.FileProviders.Abstractions](../../../../packages/nuget.org/microsoft.extensions.fileproviders.abstractions/8.0.0)|8.0.0| -|[Microsoft.Extensions.FileSystemGlobbing](../../../../packages/nuget.org/microsoft.extensions.filesystemglobbing/8.0.0)|8.0.0| -|[Microsoft.Extensions.Primitives](../../../../packages/nuget.org/microsoft.extensions.primitives/8.0.0)|8.0.0| +|[Microsoft.Extensions.FileProviders.Abstractions](../../../../packages/nuget.org/microsoft.extensions.fileproviders.abstractions/9.0.1)|9.0.1| +|[Microsoft.Extensions.FileSystemGlobbing](../../../../packages/nuget.org/microsoft.extensions.filesystemglobbing/9.0.1)|9.0.1| +|[Microsoft.Extensions.Primitives](../../../../packages/nuget.org/microsoft.extensions.primitives/9.0.1)|9.0.1| *This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/8.0.0/remarks.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/9.0.1/remarks.md similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/8.0.0/remarks.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/9.0.1/remarks.md diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/8.0.0/repository-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/9.0.1/repository-LICENSE.TXT similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/8.0.0/repository-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/9.0.1/repository-LICENSE.TXT diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/8.0.0/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/9.0.1/third-party-notices.txt similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/8.0.0/third-party-notices.txt rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.fileproviders.physical/9.0.1/third-party-notices.txt diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/8.0.0/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/9.0.1/index.json similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/8.0.0/index.json rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/9.0.1/index.json diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/8.0.0/package-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/9.0.1/package-LICENSE.TXT similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/8.0.0/package-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/9.0.1/package-LICENSE.TXT diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/8.0.0/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/9.0.1/package.nuspec similarity index 85% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/8.0.0/package.nuspec rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/9.0.1/package.nuspec index ff87d191..3b1daa41 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/8.0.0/package.nuspec +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/9.0.1/package.nuspec @@ -2,7 +2,7 @@ Microsoft.Extensions.FileSystemGlobbing - 8.0.0 + 9.0.1 Microsoft MIT https://licenses.nuget.org/MIT @@ -13,12 +13,11 @@ https://go.microsoft.com/fwlink/?LinkID=799421 © Microsoft Corporation. All rights reserved. true - + - - + diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/8.0.0/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/9.0.1/readme.md similarity index 80% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/8.0.0/readme.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/9.0.1/readme.md index c05ccb04..d19c413d 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/8.0.0/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/9.0.1/readme.md @@ -1,4 +1,4 @@ -Microsoft.Extensions.FileSystemGlobbing [8.0.0](https://www.nuget.org/packages/Microsoft.Extensions.FileSystemGlobbing/8.0.0) +Microsoft.Extensions.FileSystemGlobbing [9.0.1](https://www.nuget.org/packages/Microsoft.Extensions.FileSystemGlobbing/9.0.1) -------------------- Used by: ThirdPartyLibraries diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/remarks.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/9.0.1/remarks.md similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/remarks.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/9.0.1/remarks.md diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/8.0.0/repository-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/9.0.1/repository-LICENSE.TXT similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/8.0.0/repository-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/9.0.1/repository-LICENSE.TXT diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/9.0.1/third-party-notices.txt similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/third-party-notices.txt rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.filesystemglobbing/9.0.1/third-party-notices.txt diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/9.0.1/index.json similarity index 86% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/index.json rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/9.0.1/index.json index e7708e9e..1b4ff257 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/9.0.1/index.json @@ -14,23 +14,23 @@ "Dependencies": [ { "Name": "Microsoft.Extensions.Configuration.Abstractions", - "Version": "8.0.0" + "Version": "9.0.1" }, { "Name": "Microsoft.Extensions.Configuration.Binder", - "Version": "8.0.2" + "Version": "9.0.1" }, { "Name": "Microsoft.Extensions.DependencyInjection.Abstractions", - "Version": "8.0.2" + "Version": "9.0.1" }, { "Name": "Microsoft.Extensions.Options", - "Version": "8.0.0" + "Version": "9.0.1" }, { "Name": "Microsoft.Extensions.Primitives", - "Version": "8.0.0" + "Version": "9.0.1" } ] } @@ -48,7 +48,6 @@ }, { "Subject": "project", - "Code": null, "HRef": "https://dot.net/" } ] diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/package-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/9.0.1/package-LICENSE.TXT similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/package-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/9.0.1/package-LICENSE.TXT diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/9.0.1/package.nuspec similarity index 51% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/package.nuspec rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/9.0.1/package.nuspec index fdf660e8..5e249b9e 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/package.nuspec +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/9.0.1/package.nuspec @@ -2,7 +2,7 @@ Microsoft.Extensions.Options.ConfigurationExtensions - 8.0.0 + 9.0.1 Microsoft MIT https://licenses.nuget.org/MIT @@ -13,42 +13,35 @@ https://go.microsoft.com/fwlink/?LinkID=799421 © Microsoft Corporation. All rights reserved. true - + - - - - - - - - - - - - - - - - - - - + + + + + - - - - - + + + + + + + + + + + + - - - - - + + + + + diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/9.0.1/readme.md similarity index 78% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/readme.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/9.0.1/readme.md index 887cf2b8..2538a695 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/9.0.1/readme.md @@ -1,4 +1,4 @@ -Microsoft.Extensions.Options.ConfigurationExtensions [8.0.0](https://www.nuget.org/packages/Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0) +Microsoft.Extensions.Options.ConfigurationExtensions [9.0.1](https://www.nuget.org/packages/Microsoft.Extensions.Options.ConfigurationExtensions/9.0.1) -------------------- Used by: ThirdPartyLibraries @@ -25,10 +25,10 @@ Dependencies 5 |Name|Version| |----------|:----| -|[Microsoft.Extensions.Configuration.Abstractions](../../../../packages/nuget.org/microsoft.extensions.configuration.abstractions/8.0.0)|8.0.0| -|[Microsoft.Extensions.Configuration.Binder](../../../../packages/nuget.org/microsoft.extensions.configuration.binder/8.0.2)|8.0.2| -|[Microsoft.Extensions.DependencyInjection.Abstractions](../../../../packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2)|8.0.2| -|[Microsoft.Extensions.Options](../../../../packages/nuget.org/microsoft.extensions.options/8.0.0)|8.0.0| -|[Microsoft.Extensions.Primitives](../../../../packages/nuget.org/microsoft.extensions.primitives/8.0.0)|8.0.0| +|[Microsoft.Extensions.Configuration.Abstractions](../../../../packages/nuget.org/microsoft.extensions.configuration.abstractions/9.0.1)|9.0.1| +|[Microsoft.Extensions.Configuration.Binder](../../../../packages/nuget.org/microsoft.extensions.configuration.binder/9.0.1)|9.0.1| +|[Microsoft.Extensions.DependencyInjection.Abstractions](../../../../packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/9.0.1)|9.0.1| +|[Microsoft.Extensions.Options](../../../../packages/nuget.org/microsoft.extensions.options/9.0.1)|9.0.1| +|[Microsoft.Extensions.Primitives](../../../../packages/nuget.org/microsoft.extensions.primitives/9.0.1)|9.0.1| *This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/8.0.0/remarks.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/9.0.1/remarks.md similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/8.0.0/remarks.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/9.0.1/remarks.md diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/repository-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/9.0.1/repository-LICENSE.TXT similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0/repository-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/9.0.1/repository-LICENSE.TXT diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/8.0.0/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/9.0.1/third-party-notices.txt similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/8.0.0/third-party-notices.txt rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options.configurationextensions/9.0.1/third-party-notices.txt diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/8.0.0/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/9.0.1/index.json similarity index 92% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/8.0.0/index.json rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/9.0.1/index.json index db5566aa..463df324 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/8.0.0/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/9.0.1/index.json @@ -14,11 +14,11 @@ "Dependencies": [ { "Name": "Microsoft.Extensions.DependencyInjection.Abstractions", - "Version": "8.0.2" + "Version": "9.0.1" }, { "Name": "Microsoft.Extensions.Primitives", - "Version": "8.0.0" + "Version": "9.0.1" }, { "Name": "System.ComponentModel.Annotations", @@ -40,7 +40,6 @@ }, { "Subject": "project", - "Code": null, "HRef": "https://dot.net/" } ] diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/8.0.0/package-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/9.0.1/package-LICENSE.TXT similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/8.0.0/package-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/9.0.1/package-LICENSE.TXT diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/8.0.0/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/9.0.1/package.nuspec similarity index 71% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/8.0.0/package.nuspec rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/9.0.1/package.nuspec index 0ed20287..c2504930 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/8.0.0/package.nuspec +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/9.0.1/package.nuspec @@ -2,7 +2,7 @@ Microsoft.Extensions.Options - 8.0.0 + 9.0.1 Microsoft MIT https://licenses.nuget.org/MIT @@ -13,33 +13,29 @@ https://go.microsoft.com/fwlink/?LinkID=799421 © Microsoft Corporation. All rights reserved. true - + - - + + - - - - - - - - - - + + + + + + - - + + - - + + diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/8.0.0/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/9.0.1/readme.md similarity index 82% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/8.0.0/readme.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/9.0.1/readme.md index b0e2c4b9..58aa28d7 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/8.0.0/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/9.0.1/readme.md @@ -1,4 +1,4 @@ -Microsoft.Extensions.Options [8.0.0](https://www.nuget.org/packages/Microsoft.Extensions.Options/8.0.0) +Microsoft.Extensions.Options [9.0.1](https://www.nuget.org/packages/Microsoft.Extensions.Options/9.0.1) -------------------- Used by: ThirdPartyLibraries @@ -25,8 +25,8 @@ Dependencies 3 |Name|Version| |----------|:----| -|[Microsoft.Extensions.DependencyInjection.Abstractions](../../../../packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2)|8.0.2| -|[Microsoft.Extensions.Primitives](../../../../packages/nuget.org/microsoft.extensions.primitives/8.0.0)|8.0.0| +|[Microsoft.Extensions.DependencyInjection.Abstractions](../../../../packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/9.0.1)|9.0.1| +|[Microsoft.Extensions.Primitives](../../../../packages/nuget.org/microsoft.extensions.primitives/9.0.1)|9.0.1| |[System.ComponentModel.Annotations](../../../../packages/nuget.org/system.componentmodel.annotations/5.0.0)|5.0.0| *This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/remarks.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/9.0.1/remarks.md similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/remarks.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/9.0.1/remarks.md diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/8.0.0/repository-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/9.0.1/repository-LICENSE.TXT similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/8.0.0/repository-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/9.0.1/repository-LICENSE.TXT diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/9.0.1/third-party-notices.txt similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/third-party-notices.txt rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.options/9.0.1/third-party-notices.txt diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/9.0.1/index.json similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/index.json rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/9.0.1/index.json diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/package-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/9.0.1/package-LICENSE.TXT similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/package-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/9.0.1/package-LICENSE.TXT diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/9.0.1/package.nuspec similarity index 84% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/package.nuspec rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/9.0.1/package.nuspec index c71411ea..67285192 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/package.nuspec +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/9.0.1/package.nuspec @@ -2,7 +2,7 @@ Microsoft.Extensions.Primitives - 8.0.0 + 9.0.1 Microsoft MIT https://licenses.nuget.org/MIT @@ -18,17 +18,14 @@ Microsoft.Extensions.Primitives.StringSegment https://go.microsoft.com/fwlink/?LinkID=799421 © Microsoft Corporation. All rights reserved. true - + - - - - + diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/9.0.1/readme.md similarity index 85% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/readme.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/9.0.1/readme.md index f80ee9a8..bd085460 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/9.0.1/readme.md @@ -1,4 +1,4 @@ -Microsoft.Extensions.Primitives [8.0.0](https://www.nuget.org/packages/Microsoft.Extensions.Primitives/8.0.0) +Microsoft.Extensions.Primitives [9.0.1](https://www.nuget.org/packages/Microsoft.Extensions.Primitives/9.0.1) -------------------- Used by: ThirdPartyLibraries diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/remarks.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/9.0.1/remarks.md similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/remarks.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/9.0.1/remarks.md diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/repository-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/9.0.1/repository-LICENSE.TXT similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/8.0.0/repository-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/9.0.1/repository-LICENSE.TXT diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/9.0.1/third-party-notices.txt similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/third-party-notices.txt rename to ThirdPartyLibraries/packages/nuget.org/microsoft.extensions.primitives/9.0.1/third-party-notices.txt diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.12.0/index.json similarity index 93% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/index.json rename to ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.12.0/index.json index 70c832c2..e9819c68 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.12.0/index.json @@ -15,11 +15,11 @@ "Dependencies": [ { "Name": "Microsoft.CodeCoverage", - "Version": "17.11.1" + "Version": "17.12.0" }, { "Name": "Microsoft.TestPlatform.TestHost", - "Version": "17.11.1" + "Version": "17.12.0" } ] } diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.12.0/package.nuspec similarity index 82% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/package.nuspec rename to ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.12.0/package.nuspec index b3355f4c..1c718549 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/package.nuspec +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.12.0/package.nuspec @@ -2,7 +2,7 @@ Microsoft.NET.Test.Sdk - 17.11.1 + 17.12.0 Microsoft true MIT @@ -13,14 +13,14 @@ © Microsoft Corporation. All rights reserved. vstest visual-studio unittest testplatform mstest microsoft test testing true - + - - + + - + diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/project-LICENSE b/ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.12.0/project-LICENSE similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/project-LICENSE rename to ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.12.0/project-LICENSE diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.12.0/readme.md similarity index 78% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/readme.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.12.0/readme.md index 542406e2..fec655e7 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.12.0/readme.md @@ -1,4 +1,4 @@ -Microsoft.NET.Test.Sdk [17.11.1](https://www.nuget.org/packages/Microsoft.NET.Test.Sdk/17.11.1) +Microsoft.NET.Test.Sdk [17.12.0](https://www.nuget.org/packages/Microsoft.NET.Test.Sdk/17.12.0) -------------------- Used by: ThirdPartyLibraries internal @@ -25,7 +25,7 @@ Dependencies 2 |Name|Version| |----------|:----| -|[Microsoft.CodeCoverage](../../../../packages/nuget.org/microsoft.codecoverage/17.11.1)|17.11.1| -|[Microsoft.TestPlatform.TestHost](../../../../packages/nuget.org/microsoft.testplatform.testhost/17.11.1)|17.11.1| +|[Microsoft.CodeCoverage](../../../../packages/nuget.org/microsoft.codecoverage/17.12.0)|17.12.0| +|[Microsoft.TestPlatform.TestHost](../../../../packages/nuget.org/microsoft.testplatform.testhost/17.12.0)|17.12.0| *This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/remarks.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.12.0/remarks.md similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/remarks.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.12.0/remarks.md diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/repository-LICENSE b/ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.12.0/repository-LICENSE similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/repository-LICENSE rename to ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.12.0/repository-LICENSE diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.12.0/third-party-notices.txt similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/third-party-notices.txt rename to ThirdPartyLibraries/packages/nuget.org/microsoft.net.test.sdk/17.12.0/third-party-notices.txt diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.5.3/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.5.3/index.json new file mode 100644 index 00000000..515abca8 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.5.3/index.json @@ -0,0 +1,44 @@ +{ + "Source": "https://api.nuget.org/v3/index.json", + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "ThirdPartyLibraries", + "InternalOnly": true, + "TargetFrameworks": [ + "net8.0", + "net9.0" + ], + "Dependencies": [ + { + "Name": "Microsoft.ApplicationInsights", + "Version": "2.22.0" + }, + { + "Name": "Microsoft.Testing.Platform", + "Version": "1.5.3" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://licenses.nuget.org/MIT" + }, + { + "Subject": "repository", + "Code": "MIT", + "HRef": "https://github.com/microsoft/testfx" + }, + { + "Subject": "project", + "Code": "MIT", + "HRef": "https://github.com/microsoft/testfx" + } + ] +} \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.5.3/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.5.3/package.nuspec new file mode 100644 index 00000000..8e0b5a9c --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.5.3/package.nuspec @@ -0,0 +1,43 @@ + + + + Microsoft.Testing.Extensions.Telemetry + 1.5.3 + Microsoft + true + MIT + https://licenses.nuget.org/MIT + Icon.png + PACKAGE.md + https://github.com/microsoft/testfx + Microsoft Testing is a set of platform, framework and protocol intended to make it possible to run any test on any target or device. + +This package provides telemetry for the platform. + © Microsoft Corporation. All rights reserved. + Microsoft test testing unittest unittesting unit-testing tdd + true + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/project-LICENSE b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.5.3/project-LICENSE similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/project-LICENSE rename to ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.5.3/project-LICENSE diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.5.3/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.5.3/readme.md new file mode 100644 index 00000000..f4de210d --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.5.3/readme.md @@ -0,0 +1,33 @@ +Microsoft.Testing.Extensions.Telemetry [1.5.3](https://www.nuget.org/packages/Microsoft.Testing.Extensions.Telemetry/1.5.3) +-------------------- + +Used by: ThirdPartyLibraries internal + +Target frameworks: net8.0, net9.0 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://licenses.nuget.org/MIT) +- repository license: [MIT](https://github.com/microsoft/testfx) +- project license: [MIT](https://github.com/microsoft/testfx) + +Description +----------- +Microsoft Testing is a set of platform, framework and protocol intended to make it possible to run any test on any target or device. + +This package provides telemetry for the platform. + +Remarks +----------- +no remarks + + +Dependencies 2 +----------- + +|Name|Version| +|----------|:----| +|[Microsoft.ApplicationInsights](../../../../packages/nuget.org/microsoft.applicationinsights/2.22.0)|2.22.0| +|[Microsoft.Testing.Platform](../../../../packages/nuget.org/microsoft.testing.platform/1.5.3)|1.5.3| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/remarks.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.5.3/remarks.md similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/remarks.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.5.3/remarks.md diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/repository-LICENSE b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.5.3/repository-LICENSE similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/repository-LICENSE rename to ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.5.3/repository-LICENSE diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.5.3/third-party-notices.txt similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/third-party-notices.txt rename to ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.5.3/third-party-notices.txt diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.5.3/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.5.3/index.json new file mode 100644 index 00000000..46c86d4c --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.5.3/index.json @@ -0,0 +1,40 @@ +{ + "Source": "https://api.nuget.org/v3/index.json", + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "ThirdPartyLibraries", + "InternalOnly": true, + "TargetFrameworks": [ + "net8.0", + "net9.0" + ], + "Dependencies": [ + { + "Name": "Microsoft.Testing.Platform", + "Version": "1.5.3" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://licenses.nuget.org/MIT" + }, + { + "Subject": "repository", + "Code": "MIT", + "HRef": "https://github.com/microsoft/testfx" + }, + { + "Subject": "project", + "Code": "MIT", + "HRef": "https://github.com/microsoft/testfx" + } + ] +} \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.5.3/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.5.3/package.nuspec new file mode 100644 index 00000000..35841f03 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.5.3/package.nuspec @@ -0,0 +1,36 @@ + + + + Microsoft.Testing.Extensions.TrxReport.Abstractions + 1.5.3 + Microsoft + true + MIT + https://licenses.nuget.org/MIT + Icon.png + PACKAGE.md + https://github.com/microsoft/testfx + Package Description + © Microsoft Corporation. All rights reserved. + Microsoft test testing unittest unittesting unit-testing tdd + true + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/project-LICENSE b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.5.3/project-LICENSE similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/project-LICENSE rename to ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.5.3/project-LICENSE diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.5.3/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.5.3/readme.md new file mode 100644 index 00000000..50d066a1 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.5.3/readme.md @@ -0,0 +1,30 @@ +Microsoft.Testing.Extensions.TrxReport.Abstractions [1.5.3](https://www.nuget.org/packages/Microsoft.Testing.Extensions.TrxReport.Abstractions/1.5.3) +-------------------- + +Used by: ThirdPartyLibraries internal + +Target frameworks: net8.0, net9.0 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://licenses.nuget.org/MIT) +- repository license: [MIT](https://github.com/microsoft/testfx) +- project license: [MIT](https://github.com/microsoft/testfx) + +Description +----------- +Package Description + +Remarks +----------- +no remarks + + +Dependencies 1 +----------- + +|Name|Version| +|----------|:----| +|[Microsoft.Testing.Platform](../../../../packages/nuget.org/microsoft.testing.platform/1.5.3)|1.5.3| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/nuget.frameworks/6.11.1/remarks.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.5.3/remarks.md similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/nuget.frameworks/6.11.1/remarks.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.5.3/remarks.md diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/repository-LICENSE b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.5.3/repository-LICENSE similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/repository-LICENSE rename to ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.5.3/repository-LICENSE diff --git a/ThirdPartyLibraries/packages/nuget.org/nuget.frameworks/6.11.1/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.5.3/third-party-notices.txt similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/nuget.frameworks/6.11.1/third-party-notices.txt rename to ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.5.3/third-party-notices.txt diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.5.3/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.5.3/index.json new file mode 100644 index 00000000..448f3d01 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.5.3/index.json @@ -0,0 +1,56 @@ +{ + "Source": "https://api.nuget.org/v3/index.json", + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "ThirdPartyLibraries", + "InternalOnly": true, + "TargetFrameworks": [ + "net8.0", + "net9.0" + ], + "Dependencies": [ + { + "Name": "Microsoft.ApplicationInsights", + "Version": "2.22.0" + }, + { + "Name": "Microsoft.TestPlatform.ObjectModel", + "Version": "17.12.0" + }, + { + "Name": "Microsoft.Testing.Extensions.Telemetry", + "Version": "1.5.3" + }, + { + "Name": "Microsoft.Testing.Extensions.TrxReport.Abstractions", + "Version": "1.5.3" + }, + { + "Name": "Microsoft.Testing.Platform", + "Version": "1.5.3" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://licenses.nuget.org/MIT" + }, + { + "Subject": "repository", + "Code": "MIT", + "HRef": "https://github.com/microsoft/testfx" + }, + { + "Subject": "project", + "Code": "MIT", + "HRef": "https://github.com/microsoft/testfx" + } + ] +} \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.5.3/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.5.3/package.nuspec new file mode 100644 index 00000000..4458b0c6 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.5.3/package.nuspec @@ -0,0 +1,58 @@ + + + + Microsoft.Testing.Extensions.VSTestBridge + 1.5.3 + Microsoft + true + MIT + https://licenses.nuget.org/MIT + Icon.png + PACKAGE.md + https://github.com/microsoft/testfx + Microsoft Testing is a set of platform, framework and protocol intended to make it possible to run any test on any target or device. + +This package provides a bridge integration for test adapters wanting to target both VSTest and Microsoft.Testing.Platform test platforms. + © Microsoft Corporation. All rights reserved. + Microsoft test testing unittest unittesting unit-testing tdd + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.5.3/project-LICENSE b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.5.3/project-LICENSE new file mode 100644 index 00000000..d859446c --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.5.3/project-LICENSE @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) Microsoft Corporation + +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/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.5.3/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.5.3/readme.md new file mode 100644 index 00000000..8165f5fe --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.5.3/readme.md @@ -0,0 +1,36 @@ +Microsoft.Testing.Extensions.VSTestBridge [1.5.3](https://www.nuget.org/packages/Microsoft.Testing.Extensions.VSTestBridge/1.5.3) +-------------------- + +Used by: ThirdPartyLibraries internal + +Target frameworks: net8.0, net9.0 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://licenses.nuget.org/MIT) +- repository license: [MIT](https://github.com/microsoft/testfx) +- project license: [MIT](https://github.com/microsoft/testfx) + +Description +----------- +Microsoft Testing is a set of platform, framework and protocol intended to make it possible to run any test on any target or device. + +This package provides a bridge integration for test adapters wanting to target both VSTest and Microsoft.Testing.Platform test platforms. + +Remarks +----------- +no remarks + + +Dependencies 5 +----------- + +|Name|Version| +|----------|:----| +|[Microsoft.ApplicationInsights](../../../../packages/nuget.org/microsoft.applicationinsights/2.22.0)|2.22.0| +|[Microsoft.Testing.Extensions.Telemetry](../../../../packages/nuget.org/microsoft.testing.extensions.telemetry/1.5.3)|1.5.3| +|[Microsoft.Testing.Extensions.TrxReport.Abstractions](../../../../packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.5.3)|1.5.3| +|[Microsoft.Testing.Platform](../../../../packages/nuget.org/microsoft.testing.platform/1.5.3)|1.5.3| +|[Microsoft.TestPlatform.ObjectModel](../../../../packages/nuget.org/microsoft.testplatform.objectmodel/17.12.0)|17.12.0| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/nuget.versioning/6.11.1/remarks.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.5.3/remarks.md similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/nuget.versioning/6.11.1/remarks.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.5.3/remarks.md diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.5.3/repository-LICENSE b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.5.3/repository-LICENSE new file mode 100644 index 00000000..d859446c --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.5.3/repository-LICENSE @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) Microsoft Corporation + +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/ThirdPartyLibraries/packages/nuget.org/nuget.versioning/6.11.1/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.5.3/third-party-notices.txt similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/nuget.versioning/6.11.1/third-party-notices.txt rename to ThirdPartyLibraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.5.3/third-party-notices.txt diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.5.3/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.5.3/index.json new file mode 100644 index 00000000..46c86d4c --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.5.3/index.json @@ -0,0 +1,40 @@ +{ + "Source": "https://api.nuget.org/v3/index.json", + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "ThirdPartyLibraries", + "InternalOnly": true, + "TargetFrameworks": [ + "net8.0", + "net9.0" + ], + "Dependencies": [ + { + "Name": "Microsoft.Testing.Platform", + "Version": "1.5.3" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://licenses.nuget.org/MIT" + }, + { + "Subject": "repository", + "Code": "MIT", + "HRef": "https://github.com/microsoft/testfx" + }, + { + "Subject": "project", + "Code": "MIT", + "HRef": "https://github.com/microsoft/testfx" + } + ] +} \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.5.3/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.5.3/package.nuspec new file mode 100644 index 00000000..7b810c31 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.5.3/package.nuspec @@ -0,0 +1,38 @@ + + + + Microsoft.Testing.Platform.MSBuild + 1.5.3 + Microsoft + true + MIT + https://licenses.nuget.org/MIT + Icon.png + PACKAGE.md + https://github.com/microsoft/testfx + Microsoft Testing is a set of platform, framework and protocol intended to make it possible to run any test on any target or device. + +This package provides MSBuild integration of the platform, its extensions and configuration files. + © Microsoft Corporation. All rights reserved. + Microsoft test testing unittest unittesting unit-testing tdd + true + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.5.3/project-LICENSE b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.5.3/project-LICENSE new file mode 100644 index 00000000..d859446c --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.5.3/project-LICENSE @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) Microsoft Corporation + +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/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.5.3/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.5.3/readme.md new file mode 100644 index 00000000..7ee3537a --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.5.3/readme.md @@ -0,0 +1,32 @@ +Microsoft.Testing.Platform.MSBuild [1.5.3](https://www.nuget.org/packages/Microsoft.Testing.Platform.MSBuild/1.5.3) +-------------------- + +Used by: ThirdPartyLibraries internal + +Target frameworks: net8.0, net9.0 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://licenses.nuget.org/MIT) +- repository license: [MIT](https://github.com/microsoft/testfx) +- project license: [MIT](https://github.com/microsoft/testfx) + +Description +----------- +Microsoft Testing is a set of platform, framework and protocol intended to make it possible to run any test on any target or device. + +This package provides MSBuild integration of the platform, its extensions and configuration files. + +Remarks +----------- +no remarks + + +Dependencies 1 +----------- + +|Name|Version| +|----------|:----| +|[Microsoft.Testing.Platform](../../../../packages/nuget.org/microsoft.testing.platform/1.5.3)|1.5.3| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/nunit/4.2.2/remarks.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.5.3/remarks.md similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/nunit/4.2.2/remarks.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.5.3/remarks.md diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.5.3/repository-LICENSE b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.5.3/repository-LICENSE new file mode 100644 index 00000000..d859446c --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.5.3/repository-LICENSE @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) Microsoft Corporation + +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/ThirdPartyLibraries/packages/nuget.org/nunit/4.2.2/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.5.3/third-party-notices.txt similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/nunit/4.2.2/third-party-notices.txt rename to ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.5.3/third-party-notices.txt diff --git a/ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/4.6.0/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform/1.5.3/index.json similarity index 79% rename from ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/4.6.0/index.json rename to ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform/1.5.3/index.json index 2e548157..7129b9ee 100644 --- a/ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/4.6.0/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform/1.5.3/index.json @@ -23,11 +23,12 @@ { "Subject": "repository", "Code": "MIT", - "HRef": "https://github.com/nunit/nunit3-vs-adapter" + "HRef": "https://github.com/microsoft/testfx" }, { "Subject": "project", - "HRef": "https://docs.nunit.org/articles/vs-test-adapter/Index.html" + "Code": "MIT", + "HRef": "https://github.com/microsoft/testfx" } ] } \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform/1.5.3/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform/1.5.3/package.nuspec new file mode 100644 index 00000000..80e28e23 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform/1.5.3/package.nuspec @@ -0,0 +1,28 @@ + + + + Microsoft.Testing.Platform + 1.5.3 + Microsoft + true + MIT + https://licenses.nuget.org/MIT + Icon.png + PACKAGE.md + https://github.com/microsoft/testfx + Microsoft Testing is a set of platform, framework and protocol intended to make it possible to run any test on any target or device. + +This package provides the core platform and the .NET implementation of the protocol. + © Microsoft Corporation. All rights reserved. + Microsoft test testing unittest unittesting unit-testing tdd + true + + + + + + + + + + \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform/1.5.3/project-LICENSE b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform/1.5.3/project-LICENSE new file mode 100644 index 00000000..d859446c --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform/1.5.3/project-LICENSE @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) Microsoft Corporation + +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/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform/1.5.3/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform/1.5.3/readme.md new file mode 100644 index 00000000..29036318 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform/1.5.3/readme.md @@ -0,0 +1,29 @@ +Microsoft.Testing.Platform [1.5.3](https://www.nuget.org/packages/Microsoft.Testing.Platform/1.5.3) +-------------------- + +Used by: ThirdPartyLibraries internal + +Target frameworks: net8.0, net9.0 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://licenses.nuget.org/MIT) +- repository license: [MIT](https://github.com/microsoft/testfx) +- project license: [MIT](https://github.com/microsoft/testfx) + +Description +----------- +Microsoft Testing is a set of platform, framework and protocol intended to make it possible to run any test on any target or device. + +This package provides the core platform and the .NET implementation of the protocol. + +Remarks +----------- +no remarks + + +Dependencies 0 +----------- + + +*This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/4.6.0/remarks.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform/1.5.3/remarks.md similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/4.6.0/remarks.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform/1.5.3/remarks.md diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform/1.5.3/repository-LICENSE b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform/1.5.3/repository-LICENSE new file mode 100644 index 00000000..d859446c --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform/1.5.3/repository-LICENSE @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) Microsoft Corporation + +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/ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/4.6.0/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform/1.5.3/third-party-notices.txt similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/4.6.0/third-party-notices.txt rename to ThirdPartyLibraries/packages/nuget.org/microsoft.testing.platform/1.5.3/third-party-notices.txt diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.12.0/index.json similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/index.json rename to ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.12.0/index.json diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.12.0/package.nuspec similarity index 95% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/package.nuspec rename to ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.12.0/package.nuspec index 49cf87e7..dbf06588 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/package.nuspec +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.12.0/package.nuspec @@ -2,7 +2,7 @@ Microsoft.TestPlatform.ObjectModel - 17.11.1 + 17.12.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/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.12.0/project-LICENSE b/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.12.0/project-LICENSE new file mode 100644 index 00000000..d859446c --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.12.0/project-LICENSE @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) Microsoft Corporation + +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/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.12.0/readme.md similarity index 83% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/readme.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.12.0/readme.md index 62a22607..0f476218 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.12.0/readme.md @@ -1,4 +1,4 @@ -Microsoft.TestPlatform.ObjectModel [17.11.1](https://www.nuget.org/packages/Microsoft.TestPlatform.ObjectModel/17.11.1) +Microsoft.TestPlatform.ObjectModel [17.12.0](https://www.nuget.org/packages/Microsoft.TestPlatform.ObjectModel/17.12.0) -------------------- Used by: ThirdPartyLibraries internal diff --git a/ThirdPartyLibraries/packages/nuget.org/shouldly/4.2.1/remarks.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.12.0/remarks.md similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/shouldly/4.2.1/remarks.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.12.0/remarks.md diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.12.0/repository-LICENSE b/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.12.0/repository-LICENSE new file mode 100644 index 00000000..d859446c --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.12.0/repository-LICENSE @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) Microsoft Corporation + +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/ThirdPartyLibraries/packages/nuget.org/shouldly/4.2.1/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.12.0/third-party-notices.txt similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/shouldly/4.2.1/third-party-notices.txt rename to ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.12.0/third-party-notices.txt diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/index.json b/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.12.0/index.json similarity index 96% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/index.json rename to ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.12.0/index.json index 319d922b..b916e89d 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.12.0/index.json @@ -15,7 +15,7 @@ "Dependencies": [ { "Name": "Microsoft.TestPlatform.ObjectModel", - "Version": "17.11.1" + "Version": "17.12.0" }, { "Name": "Newtonsoft.Json", diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.12.0/package.nuspec similarity index 91% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/package.nuspec rename to ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.12.0/package.nuspec index 7f0211e7..71621a6b 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/package.nuspec +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.12.0/package.nuspec @@ -2,7 +2,7 @@ Microsoft.TestPlatform.TestHost - 17.11.1 + 17.12.0 Microsoft true MIT @@ -13,10 +13,10 @@ © Microsoft Corporation. All rights reserved. vstest visual-studio unittest testplatform mstest microsoft test testing true - + - + diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.12.0/project-LICENSE b/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.12.0/project-LICENSE new file mode 100644 index 00000000..d859446c --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.12.0/project-LICENSE @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) Microsoft Corporation + +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/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/readme.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.12.0/readme.md similarity index 80% rename from ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/readme.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.12.0/readme.md index 8c168b32..79f0cdc5 100644 --- a/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.12.0/readme.md @@ -1,4 +1,4 @@ -Microsoft.TestPlatform.TestHost [17.11.1](https://www.nuget.org/packages/Microsoft.TestPlatform.TestHost/17.11.1) +Microsoft.TestPlatform.TestHost [17.12.0](https://www.nuget.org/packages/Microsoft.TestPlatform.TestHost/17.12.0) -------------------- Used by: ThirdPartyLibraries internal @@ -25,7 +25,7 @@ Dependencies 2 |Name|Version| |----------|:----| -|[Microsoft.TestPlatform.ObjectModel](../../../../packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1)|17.11.1| +|[Microsoft.TestPlatform.ObjectModel](../../../../packages/nuget.org/microsoft.testplatform.objectmodel/17.12.0)|17.12.0| |[Newtonsoft.Json](../../../../packages/nuget.org/newtonsoft.json/13.0.1)|13.0.1| *This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/8.0.0/remarks.md b/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.12.0/remarks.md similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/8.0.0/remarks.md rename to ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.12.0/remarks.md diff --git a/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.12.0/repository-LICENSE b/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.12.0/repository-LICENSE new file mode 100644 index 00000000..d859446c --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.12.0/repository-LICENSE @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) Microsoft Corporation + +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/ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/8.0.0/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.12.0/third-party-notices.txt similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/8.0.0/third-party-notices.txt rename to ThirdPartyLibraries/packages/nuget.org/microsoft.testplatform.testhost/17.12.0/third-party-notices.txt diff --git a/ThirdPartyLibraries/packages/nuget.org/nuget.frameworks/6.11.1/index.json b/ThirdPartyLibraries/packages/nuget.org/nuget.frameworks/6.12.1/index.json similarity index 94% rename from ThirdPartyLibraries/packages/nuget.org/nuget.frameworks/6.11.1/index.json rename to ThirdPartyLibraries/packages/nuget.org/nuget.frameworks/6.12.1/index.json index 0a6b3723..e66bc4f0 100644 --- a/ThirdPartyLibraries/packages/nuget.org/nuget.frameworks/6.11.1/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/nuget.frameworks/6.12.1/index.json @@ -21,13 +21,11 @@ }, { "Subject": "repository", - "Code": null, "HRef": "https://github.com/NuGet/NuGet.Client", "Description": "License code NOASSERTION" }, { "Subject": "project", - "Code": null, "HRef": "https://aka.ms/nugetprj" } ] diff --git a/ThirdPartyLibraries/packages/nuget.org/nuget.frameworks/6.11.1/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/nuget.frameworks/6.12.1/package.nuspec similarity index 91% rename from ThirdPartyLibraries/packages/nuget.org/nuget.frameworks/6.11.1/package.nuspec rename to ThirdPartyLibraries/packages/nuget.org/nuget.frameworks/6.12.1/package.nuspec index 2295a314..fba13241 100644 --- a/ThirdPartyLibraries/packages/nuget.org/nuget.frameworks/6.11.1/package.nuspec +++ b/ThirdPartyLibraries/packages/nuget.org/nuget.frameworks/6.12.1/package.nuspec @@ -2,7 +2,7 @@ NuGet.Frameworks - 6.11.1 + 6.12.1 Microsoft true Apache-2.0 @@ -14,7 +14,7 @@ © Microsoft Corporation. All rights reserved. nuget true - + diff --git a/ThirdPartyLibraries/packages/nuget.org/nuget.frameworks/6.11.1/readme.md b/ThirdPartyLibraries/packages/nuget.org/nuget.frameworks/6.12.1/readme.md similarity index 86% rename from ThirdPartyLibraries/packages/nuget.org/nuget.frameworks/6.11.1/readme.md rename to ThirdPartyLibraries/packages/nuget.org/nuget.frameworks/6.12.1/readme.md index 136d55c9..cffa448c 100644 --- a/ThirdPartyLibraries/packages/nuget.org/nuget.frameworks/6.11.1/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/nuget.frameworks/6.12.1/readme.md @@ -1,4 +1,4 @@ -NuGet.Frameworks [6.11.1](https://www.nuget.org/packages/NuGet.Frameworks/6.11.1) +NuGet.Frameworks [6.12.1](https://www.nuget.org/packages/NuGet.Frameworks/6.12.1) -------------------- Used by: ThirdPartyLibraries diff --git a/ThirdPartyLibraries/packages/nuget.org/system.text.json/8.0.5/remarks.md b/ThirdPartyLibraries/packages/nuget.org/nuget.frameworks/6.12.1/remarks.md similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/system.text.json/8.0.5/remarks.md rename to ThirdPartyLibraries/packages/nuget.org/nuget.frameworks/6.12.1/remarks.md diff --git a/ThirdPartyLibraries/packages/nuget.org/nuget.frameworks/6.11.1/repository-LICENSE.txt b/ThirdPartyLibraries/packages/nuget.org/nuget.frameworks/6.12.1/repository-LICENSE.txt similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/nuget.frameworks/6.11.1/repository-LICENSE.txt rename to ThirdPartyLibraries/packages/nuget.org/nuget.frameworks/6.12.1/repository-LICENSE.txt diff --git a/ThirdPartyLibraries/packages/nuget.org/system.text.json/8.0.5/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/nuget.frameworks/6.12.1/third-party-notices.txt similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/system.text.json/8.0.5/third-party-notices.txt rename to ThirdPartyLibraries/packages/nuget.org/nuget.frameworks/6.12.1/third-party-notices.txt diff --git a/ThirdPartyLibraries/packages/nuget.org/nuget.versioning/6.11.1/index.json b/ThirdPartyLibraries/packages/nuget.org/nuget.versioning/6.12.1/index.json similarity index 94% rename from ThirdPartyLibraries/packages/nuget.org/nuget.versioning/6.11.1/index.json rename to ThirdPartyLibraries/packages/nuget.org/nuget.versioning/6.12.1/index.json index 0a6b3723..e66bc4f0 100644 --- a/ThirdPartyLibraries/packages/nuget.org/nuget.versioning/6.11.1/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/nuget.versioning/6.12.1/index.json @@ -21,13 +21,11 @@ }, { "Subject": "repository", - "Code": null, "HRef": "https://github.com/NuGet/NuGet.Client", "Description": "License code NOASSERTION" }, { "Subject": "project", - "Code": null, "HRef": "https://aka.ms/nugetprj" } ] diff --git a/ThirdPartyLibraries/packages/nuget.org/nuget.versioning/6.11.1/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/nuget.versioning/6.12.1/package.nuspec similarity index 91% rename from ThirdPartyLibraries/packages/nuget.org/nuget.versioning/6.11.1/package.nuspec rename to ThirdPartyLibraries/packages/nuget.org/nuget.versioning/6.12.1/package.nuspec index d93c4392..7d85d92e 100644 --- a/ThirdPartyLibraries/packages/nuget.org/nuget.versioning/6.11.1/package.nuspec +++ b/ThirdPartyLibraries/packages/nuget.org/nuget.versioning/6.12.1/package.nuspec @@ -2,7 +2,7 @@ NuGet.Versioning - 6.11.1 + 6.12.1 Microsoft true Apache-2.0 @@ -14,7 +14,7 @@ © Microsoft Corporation. All rights reserved. semver semantic versioning true - + diff --git a/ThirdPartyLibraries/packages/nuget.org/nuget.versioning/6.11.1/readme.md b/ThirdPartyLibraries/packages/nuget.org/nuget.versioning/6.12.1/readme.md similarity index 86% rename from ThirdPartyLibraries/packages/nuget.org/nuget.versioning/6.11.1/readme.md rename to ThirdPartyLibraries/packages/nuget.org/nuget.versioning/6.12.1/readme.md index 9ceb9848..0957a0a1 100644 --- a/ThirdPartyLibraries/packages/nuget.org/nuget.versioning/6.11.1/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/nuget.versioning/6.12.1/readme.md @@ -1,4 +1,4 @@ -NuGet.Versioning [6.11.1](https://www.nuget.org/packages/NuGet.Versioning/6.11.1) +NuGet.Versioning [6.12.1](https://www.nuget.org/packages/NuGet.Versioning/6.12.1) -------------------- Used by: ThirdPartyLibraries diff --git a/ThirdPartyLibraries/packages/nuget.org/nuget.versioning/6.12.1/remarks.md b/ThirdPartyLibraries/packages/nuget.org/nuget.versioning/6.12.1/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/ThirdPartyLibraries/packages/nuget.org/nuget.versioning/6.11.1/repository-LICENSE.txt b/ThirdPartyLibraries/packages/nuget.org/nuget.versioning/6.12.1/repository-LICENSE.txt similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/nuget.versioning/6.11.1/repository-LICENSE.txt rename to ThirdPartyLibraries/packages/nuget.org/nuget.versioning/6.12.1/repository-LICENSE.txt diff --git a/ThirdPartyLibraries/packages/nuget.org/nuget.versioning/6.12.1/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/nuget.versioning/6.12.1/third-party-notices.txt new file mode 100644 index 00000000..e69de29b diff --git a/ThirdPartyLibraries/packages/nuget.org/nunit/4.2.2/index.json b/ThirdPartyLibraries/packages/nuget.org/nunit/4.3.2/index.json similarity index 94% rename from ThirdPartyLibraries/packages/nuget.org/nunit/4.2.2/index.json rename to ThirdPartyLibraries/packages/nuget.org/nunit/4.3.2/index.json index 03ca3bfd..8c86ed01 100644 --- a/ThirdPartyLibraries/packages/nuget.org/nunit/4.2.2/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/nunit/4.3.2/index.json @@ -14,7 +14,7 @@ "Dependencies": [ { "Name": "System.Memory", - "Version": "4.5.5" + "Version": "4.6.0" }, { "Name": "System.Threading.Tasks.Extensions", @@ -36,7 +36,6 @@ }, { "Subject": "project", - "Code": null, "HRef": "https://nunit.org/" } ] diff --git a/ThirdPartyLibraries/packages/nuget.org/nunit/4.2.2/package-LICENSE.txt b/ThirdPartyLibraries/packages/nuget.org/nunit/4.3.2/package-LICENSE.txt similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/nunit/4.2.2/package-LICENSE.txt rename to ThirdPartyLibraries/packages/nuget.org/nunit/4.3.2/package-LICENSE.txt diff --git a/ThirdPartyLibraries/packages/nuget.org/nunit/4.2.2/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/nunit/4.3.2/package.nuspec similarity index 90% rename from ThirdPartyLibraries/packages/nuget.org/nunit/4.2.2/package.nuspec rename to ThirdPartyLibraries/packages/nuget.org/nunit/4.3.2/package.nuspec index 82b624be..8ff788bf 100644 --- a/ThirdPartyLibraries/packages/nuget.org/nunit/4.2.2/package.nuspec +++ b/ThirdPartyLibraries/packages/nuget.org/nunit/4.3.2/package.nuspec @@ -2,7 +2,7 @@ NUnit - 4.2.2 + 4.3.2 NUnit Charlie Poole, Rob Prouse Charlie Poole, Rob Prouse @@ -23,9 +23,10 @@ Supported platforms: - .NET Framework 4.6.2+ - - .NET 6.0+ + - .NET 6.0+ + - .NET 8.0+ NUnit is a unit-testing framework for all .NET languages with a strong TDD focus. - See release notes at https://docs.nunit.org/articles/nunit/release-notes/framework.html#nunit-400---november-26-2023 + See release notes at https://docs.nunit.org/articles/nunit/release-notes/framework.html#nunit-430----dec-15-2024 Copyright (c) Charlie Poole, Rob Prouse and Contributors. MIT License. en-US nunit test testing tdd framework fluent assert theory plugin addin @@ -34,9 +35,10 @@ - + + \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/nunit/4.2.2/readme.md b/ThirdPartyLibraries/packages/nuget.org/nunit/4.3.2/readme.md similarity index 94% rename from ThirdPartyLibraries/packages/nuget.org/nunit/4.2.2/readme.md rename to ThirdPartyLibraries/packages/nuget.org/nunit/4.3.2/readme.md index d9361743..f358cbcc 100644 --- a/ThirdPartyLibraries/packages/nuget.org/nunit/4.2.2/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/nunit/4.3.2/readme.md @@ -1,4 +1,4 @@ -NUnit [4.2.2](https://www.nuget.org/packages/NUnit/4.2.2) +NUnit [4.3.2](https://www.nuget.org/packages/NUnit/4.3.2) -------------------- Used by: ThirdPartyLibraries internal @@ -25,6 +25,7 @@ NUnit is a unit-testing framework for all .NET languages. Supported platforms: - .NET Framework 4.6.2+ - .NET 6.0+ + - .NET 8.0+ Remarks ----------- @@ -36,7 +37,7 @@ Dependencies 2 |Name|Version| |----------|:----| -|[System.Memory](../../../../packages/nuget.org/system.memory/4.5.5)|4.5.5| +|[System.Memory](../../../../packages/nuget.org/system.memory/4.6.0)|4.6.0| |[System.Threading.Tasks.Extensions](../../../../packages/nuget.org/system.threading.tasks.extensions/4.5.4)|4.5.4| *This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/nunit/4.3.2/remarks.md b/ThirdPartyLibraries/packages/nuget.org/nunit/4.3.2/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/ThirdPartyLibraries/packages/nuget.org/nunit/4.2.2/repository-LICENSE.txt b/ThirdPartyLibraries/packages/nuget.org/nunit/4.3.2/repository-LICENSE.txt similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/nunit/4.2.2/repository-LICENSE.txt rename to ThirdPartyLibraries/packages/nuget.org/nunit/4.3.2/repository-LICENSE.txt diff --git a/ThirdPartyLibraries/packages/nuget.org/nunit/4.3.2/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/nunit/4.3.2/third-party-notices.txt new file mode 100644 index 00000000..e69de29b diff --git a/ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/5.0.0/index.json b/ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/5.0.0/index.json new file mode 100644 index 00000000..7d229f9d --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/5.0.0/index.json @@ -0,0 +1,43 @@ +{ + "Source": "https://api.nuget.org/v3/index.json", + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "ThirdPartyLibraries", + "InternalOnly": true, + "TargetFrameworks": [ + "net8.0", + "net9.0" + ], + "Dependencies": [ + { + "Name": "Microsoft.Testing.Extensions.VSTestBridge", + "Version": "1.5.3" + }, + { + "Name": "Microsoft.Testing.Platform.MSBuild", + "Version": "1.5.3" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://licenses.nuget.org/MIT" + }, + { + "Subject": "repository", + "Code": "MIT", + "HRef": "https://github.com/nunit/nunit3-vs-adapter" + }, + { + "Subject": "project", + "HRef": "https://docs.nunit.org/articles/vs-test-adapter/Index.html" + } + ] +} \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/4.6.0/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/5.0.0/package.nuspec similarity index 69% rename from ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/4.6.0/package.nuspec rename to ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/5.0.0/package.nuspec index 9bc883a9..bd05d711 100644 --- a/ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/4.6.0/package.nuspec +++ b/ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/5.0.0/package.nuspec @@ -1,8 +1,8 @@  - + NUnit3TestAdapter - 4.6.0 + 5.0.0 NUnit3 Test Adapter for Visual Studio and DotNet Charlie Poole, Terje Sandstrom false @@ -17,9 +17,19 @@ For VS 2017 and forward, you should add this package to every test project in your solution. (Earlier versions only require a single adapter package per solution.) NUnit3 adapter for running tests in Visual Studio and DotNet. Works with NUnit 3.x, use the NUnit 2 adapter for 2.x tests. See https://docs.nunit.org/articles/vs-test-adapter/Adapter-Release-Notes.html - Copyright (c) 2011-2021 Charlie Poole, 2014-2024 Terje Sandstrom + Copyright (c) 2011-2021 Charlie Poole, 2014-2025 Terje Sandstrom en-US test visualstudio testadapter nunit nunit3 dotnet + + + + + + + + + + \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/4.6.0/readme.md b/ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/5.0.0/readme.md similarity index 70% rename from ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/4.6.0/readme.md rename to ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/5.0.0/readme.md index 34507118..4adff290 100644 --- a/ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/4.6.0/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/5.0.0/readme.md @@ -1,4 +1,4 @@ -NUnit3TestAdapter [4.6.0](https://www.nuget.org/packages/NUnit3TestAdapter/4.6.0) +NUnit3TestAdapter [5.0.0](https://www.nuget.org/packages/NUnit3TestAdapter/5.0.0) -------------------- Used by: ThirdPartyLibraries internal @@ -23,8 +23,12 @@ Remarks no remarks -Dependencies 0 +Dependencies 2 ----------- +|Name|Version| +|----------|:----| +|[Microsoft.Testing.Extensions.VSTestBridge](../../../../packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.5.3)|1.5.3| +|[Microsoft.Testing.Platform.MSBuild](../../../../packages/nuget.org/microsoft.testing.platform.msbuild/1.5.3)|1.5.3| *This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/5.0.0/remarks.md b/ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/5.0.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/4.6.0/repository-LICENSE b/ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/5.0.0/repository-LICENSE similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/4.6.0/repository-LICENSE rename to ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/5.0.0/repository-LICENSE diff --git a/ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/5.0.0/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/nunit3testadapter/5.0.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b diff --git a/ThirdPartyLibraries/packages/nuget.org/shouldly/4.2.1/index.json b/ThirdPartyLibraries/packages/nuget.org/shouldly/4.3.0/index.json similarity index 67% rename from ThirdPartyLibraries/packages/nuget.org/shouldly/4.2.1/index.json rename to ThirdPartyLibraries/packages/nuget.org/shouldly/4.3.0/index.json index beaf722e..ea0f8879 100644 --- a/ThirdPartyLibraries/packages/nuget.org/shouldly/4.2.1/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/shouldly/4.3.0/index.json @@ -1,7 +1,7 @@ { "Source": "https://api.nuget.org/v3/index.json", "License": { - "Code": "BSD-2-Clause", + "Code": "BSD-3-Clause", "Status": "AutomaticallyApproved" }, "UsedBy": [ @@ -30,20 +30,17 @@ "Licenses": [ { "Subject": "package", - "Code": "BSD-2-Clause", - "HRef": "https://licenses.nuget.org/BSD-2-Clause" + "Code": "BSD-3-Clause", + "HRef": "https://licenses.nuget.org/BSD-3-Clause" }, { "Subject": "repository", - "Code": null, "HRef": "https://github.com/shouldly/shouldly.git", - "Description": "License should be verified on https://github.com/shouldly/shouldly.git" + "Description": "License code NOASSERTION" }, { "Subject": "project", - "Code": null, - "HRef": "https://shouldly.org/", - "Description": "License should be verified on https://shouldly.org/" + "HRef": "https://docs.shouldly.org/" } ] } \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/shouldly/4.2.1/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/shouldly/4.3.0/package.nuspec similarity index 62% rename from ThirdPartyLibraries/packages/nuget.org/shouldly/4.2.1/package.nuspec rename to ThirdPartyLibraries/packages/nuget.org/shouldly/4.3.0/package.nuspec index 45d46151..c8adbb0a 100644 --- a/ThirdPartyLibraries/packages/nuget.org/shouldly/4.2.1/package.nuspec +++ b/ThirdPartyLibraries/packages/nuget.org/shouldly/4.3.0/package.nuspec @@ -2,18 +2,22 @@ Shouldly - 4.2.1 + 4.3.0 Jake Ginnivan, Joseph Woodward, Simon Cropp - BSD-2-Clause - https://licenses.nuget.org/BSD-2-Clause + BSD-3-Clause + https://licenses.nuget.org/BSD-3-Clause assets/logo_128x128.png - https://shouldly.org/ + https://docs.shouldly.org/ Shouldly - Assertion framework for .NET. The way asserting *Should* be - https://github.com/shouldly/releases/tag/4.2.1 + https://github.com/shouldly/shouldly/releases/tag/4.3.0 test unit testing TDD AAA should testunit rspec assert assertion framework - + - + + + + + diff --git a/ThirdPartyLibraries/packages/nuget.org/shouldly/4.2.1/readme.md b/ThirdPartyLibraries/packages/nuget.org/shouldly/4.3.0/readme.md similarity index 61% rename from ThirdPartyLibraries/packages/nuget.org/shouldly/4.2.1/readme.md rename to ThirdPartyLibraries/packages/nuget.org/shouldly/4.3.0/readme.md index 0feaa972..1bf453c6 100644 --- a/ThirdPartyLibraries/packages/nuget.org/shouldly/4.2.1/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/shouldly/4.3.0/readme.md @@ -1,15 +1,15 @@ -Shouldly [4.2.1](https://www.nuget.org/packages/Shouldly/4.2.1) +Shouldly [4.3.0](https://www.nuget.org/packages/Shouldly/4.3.0) -------------------- Used by: ThirdPartyLibraries internal Target frameworks: netstandard2.1 -License: [BSD-2-Clause](../../../../licenses/bsd-2-clause) +License: [BSD-3-Clause](../../../../licenses/bsd-3-clause) -- package license: [BSD-2-Clause](https://licenses.nuget.org/BSD-2-Clause) -- repository license: [Unknown](https://github.com/shouldly/shouldly.git) , License should be verified on https://github.com/shouldly/shouldly.git -- project license: [Unknown](https://shouldly.org/) , License should be verified on https://shouldly.org/ +- package license: [BSD-3-Clause](https://licenses.nuget.org/BSD-3-Clause) +- repository license: [Unknown](https://github.com/shouldly/shouldly.git) , License code NOASSERTION +- project license: [Unknown](https://docs.shouldly.org/) Description ----------- diff --git a/ThirdPartyLibraries/packages/nuget.org/shouldly/4.3.0/remarks.md b/ThirdPartyLibraries/packages/nuget.org/shouldly/4.3.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/ThirdPartyLibraries/packages/nuget.org/shouldly/4.2.1/repository-LICENSE.txt b/ThirdPartyLibraries/packages/nuget.org/shouldly/4.3.0/repository-LICENSE.txt similarity index 95% rename from ThirdPartyLibraries/packages/nuget.org/shouldly/4.2.1/repository-LICENSE.txt rename to ThirdPartyLibraries/packages/nuget.org/shouldly/4.3.0/repository-LICENSE.txt index 2b31d119..7630b297 100644 --- a/ThirdPartyLibraries/packages/nuget.org/shouldly/4.2.1/repository-LICENSE.txt +++ b/ThirdPartyLibraries/packages/nuget.org/shouldly/4.3.0/repository-LICENSE.txt @@ -1,3 +1,5 @@ +3-Clause BSD License + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -21,4 +23,4 @@ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -[ http://www.opensource.org/licenses/bsd-license.php ] \ No newline at end of file +[ https://opensource.org/license/bsd-3-clause ] \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/shouldly/4.3.0/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/shouldly/4.3.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b diff --git a/ThirdPartyLibraries/packages/nuget.org/system.buffers/4.6.0/index.json b/ThirdPartyLibraries/packages/nuget.org/system.buffers/4.6.0/index.json new file mode 100644 index 00000000..47515e40 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/system.buffers/4.6.0/index.json @@ -0,0 +1,33 @@ +{ + "Source": "https://api.nuget.org/v3/index.json", + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "ThirdPartyLibraries", + "InternalOnly": true, + "TargetFrameworks": [ + "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/ThirdPartyLibraries/packages/nuget.org/system.buffers/4.6.0/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/system.buffers/4.6.0/package.nuspec new file mode 100644 index 00000000..6f53e606 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/system.buffers/4.6.0/package.nuspec @@ -0,0 +1,23 @@ + + + + System.Buffers + 4.6.0 + 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/ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/8.0.0/package-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/system.buffers/4.6.0/project-LICENSE similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/8.0.0/package-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/system.buffers/4.6.0/project-LICENSE diff --git a/ThirdPartyLibraries/packages/nuget.org/system.buffers/4.6.0/readme.md b/ThirdPartyLibraries/packages/nuget.org/system.buffers/4.6.0/readme.md new file mode 100644 index 00000000..52942985 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/system.buffers/4.6.0/readme.md @@ -0,0 +1,27 @@ +System.Buffers [4.6.0](https://www.nuget.org/packages/System.Buffers/4.6.0) +-------------------- + +Used by: ThirdPartyLibraries internal + +Target frameworks: 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 + +Remarks +----------- +no remarks + + +Dependencies 0 +----------- + + +*This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/system.buffers/4.6.0/remarks.md b/ThirdPartyLibraries/packages/nuget.org/system.buffers/4.6.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/8.0.0/repository-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/system.buffers/4.6.0/repository-LICENSE similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/8.0.0/repository-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/system.buffers/4.6.0/repository-LICENSE diff --git a/ThirdPartyLibraries/packages/nuget.org/system.buffers/4.6.0/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/system.buffers/4.6.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b diff --git a/ThirdPartyLibraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/index.json b/ThirdPartyLibraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/index.json new file mode 100644 index 00000000..8c15d370 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/index.json @@ -0,0 +1,34 @@ +{ + "Source": "https://api.nuget.org/v3/index.json", + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "ThirdPartyLibraries", + "InternalOnly": true, + "TargetFrameworks": [ + "net8.0", + "net9.0" + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://licenses.nuget.org/MIT" + }, + { + "Subject": "repository", + "Code": "MIT", + "HRef": "git://github.com/dotnet/runtime" + }, + { + "Subject": "project", + "Code": "MIT", + "HRef": "https://github.com/dotnet/runtime" + } + ] +} \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/system.text.json/8.0.5/package-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/package-LICENSE.TXT similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/system.text.json/8.0.5/package-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/package-LICENSE.TXT diff --git a/ThirdPartyLibraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/package.nuspec new file mode 100644 index 00000000..a91cd370 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/package.nuspec @@ -0,0 +1,101 @@ + + + + System.Diagnostics.DiagnosticSource + 5.0.0 + System.Diagnostics.DiagnosticSource + Microsoft + microsoft,dotnetframework + false + MIT + https://licenses.nuget.org/MIT + Icon.png + https://github.com/dotnet/runtime + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides Classes that allow you to decouple code logging rich (unserializable) diagnostics/telemetry (e.g. framework) from code that consumes it (e.g. tools) + +Commonly Used Types: +System.Diagnostics.DiagnosticListener +System.Diagnostics.DiagnosticSource + +When using NuGet 3.x this package requires at least version 3.4. + https://go.microsoft.com/fwlink/?LinkID=799421 + © Microsoft Corporation. All rights reserved. + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/system.text.json/8.0.5/repository-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/project-LICENSE.TXT similarity index 100% rename from ThirdPartyLibraries/packages/nuget.org/system.text.json/8.0.5/repository-LICENSE.TXT rename to ThirdPartyLibraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/project-LICENSE.TXT diff --git a/ThirdPartyLibraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/readme.md b/ThirdPartyLibraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/readme.md new file mode 100644 index 00000000..a61b6370 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/readme.md @@ -0,0 +1,33 @@ +System.Diagnostics.DiagnosticSource [5.0.0](https://www.nuget.org/packages/System.Diagnostics.DiagnosticSource/5.0.0) +-------------------- + +Used by: ThirdPartyLibraries internal + +Target frameworks: net8.0, net9.0 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://licenses.nuget.org/MIT) +- repository license: [MIT](git://github.com/dotnet/runtime) +- project license: [MIT](https://github.com/dotnet/runtime) + +Description +----------- +Provides Classes that allow you to decouple code logging rich (unserializable) diagnostics/telemetry (e.g. framework) from code that consumes it (e.g. tools) + +Commonly Used Types: +System.Diagnostics.DiagnosticListener +System.Diagnostics.DiagnosticSource + +When using NuGet 3.x this package requires at least version 3.4. + +Remarks +----------- +no remarks + + +Dependencies 0 +----------- + + +*This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/remarks.md b/ThirdPartyLibraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/ThirdPartyLibraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/repository-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/repository-LICENSE.TXT new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/repository-LICENSE.TXT @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/ThirdPartyLibraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b diff --git a/ThirdPartyLibraries/packages/nuget.org/system.io.pipelines/9.0.1/index.json b/ThirdPartyLibraries/packages/nuget.org/system.io.pipelines/9.0.1/index.json new file mode 100644 index 00000000..d03eb722 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/system.io.pipelines/9.0.1/index.json @@ -0,0 +1,48 @@ +{ + "Source": "https://api.nuget.org/v3/index.json", + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "ThirdPartyLibraries", + "InternalOnly": false, + "TargetFrameworks": [ + "net8.0", + "net9.0", + "netstandard2.1" + ], + "Dependencies": [ + { + "Name": "System.Buffers", + "Version": "4.6.0" + }, + { + "Name": "System.Memory", + "Version": "4.6.0" + }, + { + "Name": "System.Threading.Tasks.Extensions", + "Version": "4.5.4" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://licenses.nuget.org/MIT" + }, + { + "Subject": "repository", + "Code": "MIT", + "HRef": "https://github.com/dotnet/runtime" + }, + { + "Subject": "project", + "HRef": "https://dot.net/" + } + ] +} \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/system.io.pipelines/9.0.1/package-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/system.io.pipelines/9.0.1/package-LICENSE.TXT new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/system.io.pipelines/9.0.1/package-LICENSE.TXT @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/ThirdPartyLibraries/packages/nuget.org/system.io.pipelines/9.0.1/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/system.io.pipelines/9.0.1/package.nuspec new file mode 100644 index 00000000..1c02b955 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/system.io.pipelines/9.0.1/package.nuspec @@ -0,0 +1,37 @@ + + + + System.IO.Pipelines + 9.0.1 + Microsoft + MIT + https://licenses.nuget.org/MIT + Icon.png + PACKAGE.md + https://dot.net/ + Single producer single consumer byte buffer management. + +Commonly Used Types: +System.IO.Pipelines.Pipe +System.IO.Pipelines.PipeWriter +System.IO.Pipelines.PipeReader + https://go.microsoft.com/fwlink/?LinkID=799421 + © Microsoft Corporation. All rights reserved. + true + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/system.io.pipelines/9.0.1/readme.md b/ThirdPartyLibraries/packages/nuget.org/system.io.pipelines/9.0.1/readme.md new file mode 100644 index 00000000..c898339c --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/system.io.pipelines/9.0.1/readme.md @@ -0,0 +1,37 @@ +System.IO.Pipelines [9.0.1](https://www.nuget.org/packages/System.IO.Pipelines/9.0.1) +-------------------- + +Used by: ThirdPartyLibraries + +Target frameworks: net8.0, net9.0, netstandard2.1 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://licenses.nuget.org/MIT) +- repository license: [MIT](https://github.com/dotnet/runtime) +- project license: [Unknown](https://dot.net/) + +Description +----------- +Single producer single consumer byte buffer management. + +Commonly Used Types: +System.IO.Pipelines.Pipe +System.IO.Pipelines.PipeWriter +System.IO.Pipelines.PipeReader + +Remarks +----------- +no remarks + + +Dependencies 3 +----------- + +|Name|Version| +|----------|:----| +|[System.Buffers](../../../../packages/nuget.org/system.buffers/4.6.0)|4.6.0| +|[System.Memory](../../../../packages/nuget.org/system.memory/4.6.0)|4.6.0| +|[System.Threading.Tasks.Extensions](../../../../packages/nuget.org/system.threading.tasks.extensions/4.5.4)|4.5.4| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/system.io.pipelines/9.0.1/remarks.md b/ThirdPartyLibraries/packages/nuget.org/system.io.pipelines/9.0.1/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/ThirdPartyLibraries/packages/nuget.org/system.io.pipelines/9.0.1/repository-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/system.io.pipelines/9.0.1/repository-LICENSE.TXT new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/system.io.pipelines/9.0.1/repository-LICENSE.TXT @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/ThirdPartyLibraries/packages/nuget.org/system.io.pipelines/9.0.1/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/system.io.pipelines/9.0.1/third-party-notices.txt new file mode 100644 index 00000000..e69de29b diff --git a/ThirdPartyLibraries/packages/nuget.org/system.memory/4.6.0/index.json b/ThirdPartyLibraries/packages/nuget.org/system.memory/4.6.0/index.json new file mode 100644 index 00000000..014d9c4c --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/system.memory/4.6.0/index.json @@ -0,0 +1,47 @@ +{ + "Source": "https://api.nuget.org/v3/index.json", + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "ThirdPartyLibraries", + "InternalOnly": true, + "TargetFrameworks": [ + "netstandard2.1" + ], + "Dependencies": [ + { + "Name": "System.Buffers", + "Version": "4.6.0" + }, + { + "Name": "System.Numerics.Vectors", + "Version": "4.6.0" + }, + { + "Name": "System.Runtime.CompilerServices.Unsafe", + "Version": "6.1.0" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://licenses.nuget.org/MIT" + }, + { + "Subject": "repository", + "Code": "MIT", + "HRef": "https://github.com/dotnet/maintenance-packages" + }, + { + "Subject": "project", + "Code": "MIT", + "HRef": "https://github.com/dotnet/maintenance-packages" + } + ] +} \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/system.memory/4.6.0/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/system.memory/4.6.0/package.nuspec new file mode 100644 index 00000000..06cad59e --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/system.memory/4.6.0/package.nuspec @@ -0,0 +1,31 @@ + + + + System.Memory + 4.6.0 + 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/ThirdPartyLibraries/packages/nuget.org/system.memory/4.6.0/project-LICENSE b/ThirdPartyLibraries/packages/nuget.org/system.memory/4.6.0/project-LICENSE new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/system.memory/4.6.0/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/ThirdPartyLibraries/packages/nuget.org/system.memory/4.6.0/readme.md b/ThirdPartyLibraries/packages/nuget.org/system.memory/4.6.0/readme.md new file mode 100644 index 00000000..fdfe63f0 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/system.memory/4.6.0/readme.md @@ -0,0 +1,32 @@ +System.Memory [4.6.0](https://www.nuget.org/packages/System.Memory/4.6.0) +-------------------- + +Used by: ThirdPartyLibraries internal + +Target frameworks: 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 + +Remarks +----------- +no remarks + + +Dependencies 3 +----------- + +|Name|Version| +|----------|:----| +|[System.Buffers](../../../../packages/nuget.org/system.buffers/4.6.0)|4.6.0| +|[System.Numerics.Vectors](../../../../packages/nuget.org/system.numerics.vectors/4.6.0)|4.6.0| +|[System.Runtime.CompilerServices.Unsafe](../../../../packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.0)|6.1.0| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/system.memory/4.6.0/remarks.md b/ThirdPartyLibraries/packages/nuget.org/system.memory/4.6.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/ThirdPartyLibraries/packages/nuget.org/system.memory/4.6.0/repository-LICENSE b/ThirdPartyLibraries/packages/nuget.org/system.memory/4.6.0/repository-LICENSE new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/system.memory/4.6.0/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/ThirdPartyLibraries/packages/nuget.org/system.memory/4.6.0/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/system.memory/4.6.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b diff --git a/ThirdPartyLibraries/packages/nuget.org/system.numerics.vectors/4.6.0/index.json b/ThirdPartyLibraries/packages/nuget.org/system.numerics.vectors/4.6.0/index.json new file mode 100644 index 00000000..47515e40 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/system.numerics.vectors/4.6.0/index.json @@ -0,0 +1,33 @@ +{ + "Source": "https://api.nuget.org/v3/index.json", + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "ThirdPartyLibraries", + "InternalOnly": true, + "TargetFrameworks": [ + "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/ThirdPartyLibraries/packages/nuget.org/system.numerics.vectors/4.6.0/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/system.numerics.vectors/4.6.0/package.nuspec new file mode 100644 index 00000000..e7e40f46 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/system.numerics.vectors/4.6.0/package.nuspec @@ -0,0 +1,26 @@ + + + + System.Numerics.Vectors + 4.6.0 + 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/ThirdPartyLibraries/packages/nuget.org/system.numerics.vectors/4.6.0/project-LICENSE b/ThirdPartyLibraries/packages/nuget.org/system.numerics.vectors/4.6.0/project-LICENSE new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/system.numerics.vectors/4.6.0/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/ThirdPartyLibraries/packages/nuget.org/system.numerics.vectors/4.6.0/readme.md b/ThirdPartyLibraries/packages/nuget.org/system.numerics.vectors/4.6.0/readme.md new file mode 100644 index 00000000..308316f7 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/system.numerics.vectors/4.6.0/readme.md @@ -0,0 +1,27 @@ +System.Numerics.Vectors [4.6.0](https://www.nuget.org/packages/System.Numerics.Vectors/4.6.0) +-------------------- + +Used by: ThirdPartyLibraries internal + +Target frameworks: 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 + +Remarks +----------- +no remarks + + +Dependencies 0 +----------- + + +*This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/system.numerics.vectors/4.6.0/remarks.md b/ThirdPartyLibraries/packages/nuget.org/system.numerics.vectors/4.6.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/ThirdPartyLibraries/packages/nuget.org/system.numerics.vectors/4.6.0/repository-LICENSE b/ThirdPartyLibraries/packages/nuget.org/system.numerics.vectors/4.6.0/repository-LICENSE new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/system.numerics.vectors/4.6.0/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/ThirdPartyLibraries/packages/nuget.org/system.numerics.vectors/4.6.0/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/system.numerics.vectors/4.6.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b diff --git a/ThirdPartyLibraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.0/index.json b/ThirdPartyLibraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.0/index.json new file mode 100644 index 00000000..47515e40 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.0/index.json @@ -0,0 +1,33 @@ +{ + "Source": "https://api.nuget.org/v3/index.json", + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "ThirdPartyLibraries", + "InternalOnly": true, + "TargetFrameworks": [ + "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/ThirdPartyLibraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.0/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.0/package.nuspec new file mode 100644 index 00000000..8b9423b2 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.0/package.nuspec @@ -0,0 +1,29 @@ + + + + System.Runtime.CompilerServices.Unsafe + 6.1.0 + Microsoft + true + MIT + https://licenses.nuget.org/MIT + Icon.png + PACKAGE.md + https://github.com/dotnet/maintenance-packages + Provides the System.Runtime.CompilerServices.Unsafe class, which provides generic, low-level functionality for manipulating pointers. + +Commonly Used Types: +System.Runtime.CompilerServices.Unsafe + © Microsoft Corporation. All rights reserved. + true + + + + + + + + + + + \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.0/project-LICENSE b/ThirdPartyLibraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.0/project-LICENSE new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.0/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/ThirdPartyLibraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.0/readme.md b/ThirdPartyLibraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.0/readme.md new file mode 100644 index 00000000..7263fba9 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.0/readme.md @@ -0,0 +1,30 @@ +System.Runtime.CompilerServices.Unsafe [6.1.0](https://www.nuget.org/packages/System.Runtime.CompilerServices.Unsafe/6.1.0) +-------------------- + +Used by: ThirdPartyLibraries internal + +Target frameworks: 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 +----------- +Provides the System.Runtime.CompilerServices.Unsafe class, which provides generic, low-level functionality for manipulating pointers. + +Commonly Used Types: +System.Runtime.CompilerServices.Unsafe + +Remarks +----------- +no remarks + + +Dependencies 0 +----------- + + +*This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.0/remarks.md b/ThirdPartyLibraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/ThirdPartyLibraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.0/repository-LICENSE b/ThirdPartyLibraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.0/repository-LICENSE new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.0/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/ThirdPartyLibraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.0/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b diff --git a/ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/8.0.0/index.json b/ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/9.0.1/index.json similarity index 90% rename from ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/8.0.0/index.json rename to ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/9.0.1/index.json index 9b9a108f..1f5790f1 100644 --- a/ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/8.0.0/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/9.0.1/index.json @@ -16,15 +16,15 @@ "Dependencies": [ { "Name": "System.Buffers", - "Version": "4.5.1" + "Version": "4.6.0" }, { "Name": "System.Memory", - "Version": "4.5.5" + "Version": "4.6.0" }, { "Name": "System.Runtime.CompilerServices.Unsafe", - "Version": "6.0.0" + "Version": "6.1.0" } ] } diff --git a/ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/9.0.1/package-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/9.0.1/package-LICENSE.TXT new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/9.0.1/package-LICENSE.TXT @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/8.0.0/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/9.0.1/package.nuspec similarity index 85% rename from ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/8.0.0/package.nuspec rename to ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/9.0.1/package.nuspec index ccdb0d24..aaebb89a 100644 --- a/ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/8.0.0/package.nuspec +++ b/ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/9.0.1/package.nuspec @@ -2,11 +2,12 @@ System.Text.Encodings.Web - 8.0.0 + 9.0.1 Microsoft MIT https://licenses.nuget.org/MIT Icon.png + PACKAGE.md https://dot.net/ Provides types for encoding and escaping strings for use in JavaScript, HyperText Markup Language (HTML), and uniform resource locators (URL). @@ -17,18 +18,15 @@ System.Text.Encodings.Web.JavaScriptEncoder https://go.microsoft.com/fwlink/?LinkID=799421 © Microsoft Corporation. All rights reserved. true - + - - - - + diff --git a/ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/8.0.0/readme.md b/ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/9.0.1/readme.md similarity index 83% rename from ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/8.0.0/readme.md rename to ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/9.0.1/readme.md index 8a46c078..6ec5f6ce 100644 --- a/ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/8.0.0/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/9.0.1/readme.md @@ -1,4 +1,4 @@ -System.Text.Encodings.Web [8.0.0](https://www.nuget.org/packages/System.Text.Encodings.Web/8.0.0) +System.Text.Encodings.Web [9.0.1](https://www.nuget.org/packages/System.Text.Encodings.Web/9.0.1) -------------------- Used by: ThirdPartyLibraries @@ -30,8 +30,8 @@ Dependencies 3 |Name|Version| |----------|:----| -|[System.Buffers](../../../../packages/nuget.org/system.buffers/4.5.1)|4.5.1| -|[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.Buffers](../../../../packages/nuget.org/system.buffers/4.6.0)|4.6.0| +|[System.Memory](../../../../packages/nuget.org/system.memory/4.6.0)|4.6.0| +|[System.Runtime.CompilerServices.Unsafe](../../../../packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.0)|6.1.0| *This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/9.0.1/remarks.md b/ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/9.0.1/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/9.0.1/repository-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/9.0.1/repository-LICENSE.TXT new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/9.0.1/repository-LICENSE.TXT @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/9.0.1/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/system.text.encodings.web/9.0.1/third-party-notices.txt new file mode 100644 index 00000000..e69de29b diff --git a/ThirdPartyLibraries/packages/nuget.org/system.text.json/8.0.5/index.json b/ThirdPartyLibraries/packages/nuget.org/system.text.json/9.0.1/index.json similarity index 82% rename from ThirdPartyLibraries/packages/nuget.org/system.text.json/8.0.5/index.json rename to ThirdPartyLibraries/packages/nuget.org/system.text.json/9.0.1/index.json index 6fa7e321..1b2d1f35 100644 --- a/ThirdPartyLibraries/packages/nuget.org/system.text.json/8.0.5/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/system.text.json/9.0.1/index.json @@ -16,23 +16,27 @@ "Dependencies": [ { "Name": "Microsoft.Bcl.AsyncInterfaces", - "Version": "8.0.0" + "Version": "9.0.1" }, { "Name": "System.Buffers", - "Version": "4.5.1" + "Version": "4.6.0" + }, + { + "Name": "System.IO.Pipelines", + "Version": "9.0.1" }, { "Name": "System.Memory", - "Version": "4.5.5" + "Version": "4.6.0" }, { "Name": "System.Runtime.CompilerServices.Unsafe", - "Version": "6.0.0" + "Version": "6.1.0" }, { "Name": "System.Text.Encodings.Web", - "Version": "8.0.0" + "Version": "9.0.1" }, { "Name": "System.Threading.Tasks.Extensions", diff --git a/ThirdPartyLibraries/packages/nuget.org/system.text.json/9.0.1/package-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/system.text.json/9.0.1/package-LICENSE.TXT new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/system.text.json/9.0.1/package-LICENSE.TXT @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/ThirdPartyLibraries/packages/nuget.org/system.text.json/8.0.5/package.nuspec b/ThirdPartyLibraries/packages/nuget.org/system.text.json/9.0.1/package.nuspec similarity index 75% rename from ThirdPartyLibraries/packages/nuget.org/system.text.json/8.0.5/package.nuspec rename to ThirdPartyLibraries/packages/nuget.org/system.text.json/9.0.1/package.nuspec index ebe6a09a..6f4fb94d 100644 --- a/ThirdPartyLibraries/packages/nuget.org/system.text.json/8.0.5/package.nuspec +++ b/ThirdPartyLibraries/packages/nuget.org/system.text.json/9.0.1/package.nuspec @@ -2,7 +2,7 @@ System.Text.Json - 8.0.5 + 9.0.1 Microsoft MIT https://licenses.nuget.org/MIT @@ -15,28 +15,27 @@ The System.Text.Json library is built-in as part of the shared framework in .NET https://go.microsoft.com/fwlink/?LinkID=799421 © Microsoft Corporation. All rights reserved. true - + - - + + + - - - - - - + + + - + - - + + + diff --git a/ThirdPartyLibraries/packages/nuget.org/system.text.json/8.0.5/readme.md b/ThirdPartyLibraries/packages/nuget.org/system.text.json/9.0.1/readme.md similarity index 80% rename from ThirdPartyLibraries/packages/nuget.org/system.text.json/8.0.5/readme.md rename to ThirdPartyLibraries/packages/nuget.org/system.text.json/9.0.1/readme.md index 16bfffd5..f655b5a3 100644 --- a/ThirdPartyLibraries/packages/nuget.org/system.text.json/8.0.5/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/system.text.json/9.0.1/readme.md @@ -1,4 +1,4 @@ -System.Text.Json [8.0.5](https://www.nuget.org/packages/System.Text.Json/8.0.5) +System.Text.Json [9.0.1](https://www.nuget.org/packages/System.Text.Json/9.0.1) -------------------- Used by: ThirdPartyLibraries @@ -22,16 +22,17 @@ Remarks no remarks -Dependencies 6 +Dependencies 7 ----------- |Name|Version| |----------|:----| -|[Microsoft.Bcl.AsyncInterfaces](../../../../packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0)|8.0.0| -|[System.Buffers](../../../../packages/nuget.org/system.buffers/4.5.1)|4.5.1| -|[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.Text.Encodings.Web](../../../../packages/nuget.org/system.text.encodings.web/8.0.0)|8.0.0| +|[Microsoft.Bcl.AsyncInterfaces](../../../../packages/nuget.org/microsoft.bcl.asyncinterfaces/9.0.1)|9.0.1| +|[System.Buffers](../../../../packages/nuget.org/system.buffers/4.6.0)|4.6.0| +|[System.IO.Pipelines](../../../../packages/nuget.org/system.io.pipelines/9.0.1)|9.0.1| +|[System.Memory](../../../../packages/nuget.org/system.memory/4.6.0)|4.6.0| +|[System.Runtime.CompilerServices.Unsafe](../../../../packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.0)|6.1.0| +|[System.Text.Encodings.Web](../../../../packages/nuget.org/system.text.encodings.web/9.0.1)|9.0.1| |[System.Threading.Tasks.Extensions](../../../../packages/nuget.org/system.threading.tasks.extensions/4.5.4)|4.5.4| *This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/packages/nuget.org/system.text.json/9.0.1/remarks.md b/ThirdPartyLibraries/packages/nuget.org/system.text.json/9.0.1/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/ThirdPartyLibraries/packages/nuget.org/system.text.json/9.0.1/repository-LICENSE.TXT b/ThirdPartyLibraries/packages/nuget.org/system.text.json/9.0.1/repository-LICENSE.TXT new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/ThirdPartyLibraries/packages/nuget.org/system.text.json/9.0.1/repository-LICENSE.TXT @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/ThirdPartyLibraries/packages/nuget.org/system.text.json/9.0.1/third-party-notices.txt b/ThirdPartyLibraries/packages/nuget.org/system.text.json/9.0.1/third-party-notices.txt new file mode 100644 index 00000000..e69de29b diff --git a/ThirdPartyLibraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/index.json b/ThirdPartyLibraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/index.json index 2e1201e5..df31fa9c 100644 --- a/ThirdPartyLibraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/index.json +++ b/ThirdPartyLibraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/index.json @@ -17,6 +17,10 @@ { "Name": "System.Runtime.CompilerServices.Unsafe", "Version": "6.0.0" + }, + { + "Name": "System.Runtime.CompilerServices.Unsafe", + "Version": "6.1.0" } ] } diff --git a/ThirdPartyLibraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/readme.md b/ThirdPartyLibraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/readme.md index 6f070887..d70a0ece 100644 --- a/ThirdPartyLibraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/readme.md +++ b/ThirdPartyLibraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/readme.md @@ -24,11 +24,12 @@ Remarks no remarks -Dependencies 1 +Dependencies 2 ----------- |Name|Version| |----------|:----| |[System.Runtime.CompilerServices.Unsafe](../../../../packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0)|6.0.0| +|[System.Runtime.CompilerServices.Unsafe](../../../../packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.0)|6.1.0| *This page was generated by a tool.* \ No newline at end of file diff --git a/ThirdPartyLibraries/readme.md b/ThirdPartyLibraries/readme.md index 43e85160..2c6fd7fb 100644 --- a/ThirdPartyLibraries/readme.md +++ b/ThirdPartyLibraries/readme.md @@ -4,16 +4,17 @@ Licenses |Code|Requires approval|Requires third party notices|Packages count| |----------|:----|:----|:----| |[Apache-2.0](licenses/apache-2.0)|no|no|5| -|[BSD-2-Clause](licenses/bsd-2-clause)|no|no|2| -|[BSD-3-Clause](licenses/bsd-3-clause)|no|no|1| +|[BSD-2-Clause](licenses/bsd-2-clause)|no|no|1| +|[BSD-3-Clause](licenses/bsd-3-clause)|no|no|2| |[CC-BY-2.5](licenses/cc-by-2.5)|yes|no|1| |[CC-BY-3.0](licenses/cc-by-3.0)|yes|no|1| -|[MIT](licenses/mit)|no|no|49| +|[MIT](licenses/mit)|no|no|61| |[ms-net-library](licenses/ms-net-library)|no|no|1| +|[MS-PL](licenses/ms-pl)|no|no|1| -Packages 59 +Packages 71 -------- |Name|Version|Source|License|Used by| @@ -25,56 +26,68 @@ Packages 59 |[chalk](packages/npmjs.com/chalk/5.3.0)|5.3.0|[npmjs.com](https://www.npmjs.com/package/chalk/v/5.3.0)|[MIT](licenses/mit)|ThirdPartyLibraries| |[ConfigureAwaitChecker.Analyzer](packages/nuget.org/configureawaitchecker.analyzer/5.0.0.1)|5.0.0.1|[nuget.org](https://www.nuget.org/packages/ConfigureAwaitChecker.Analyzer/5.0.0.1)|[MIT](licenses/mit)|ThirdPartyLibraries 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)|ThirdPartyLibraries internal| -|[DotLiquid](packages/nuget.org/dotliquid/2.2.692)|2.2.692|[nuget.org](https://www.nuget.org/packages/DotLiquid/2.2.692)|[Apache-2.0](licenses/apache-2.0)|ThirdPartyLibraries| +|[DotLiquid](packages/nuget.org/dotliquid/2.3.18)|2.3.18|[nuget.org](https://www.nuget.org/packages/DotLiquid/2.3.18)|[Apache-2.0](licenses/apache-2.0) OR [MS-PL](licenses/ms-pl)|ThirdPartyLibraries| |[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)|ThirdPartyLibraries internal| |[eslint](packages/npmjs.com/eslint/8.57.0)|8.57.0|[npmjs.com](https://www.npmjs.com/package/eslint/v/8.57.0)|[MIT](licenses/mit)|ThirdPartyLibraries internal| |[FAMFAMFAM](packages/custom/famfamfam/1.3)|1.3|[custom](http://www.famfamfam.com/)|[CC-BY-2.5](licenses/cc-by-2.5) OR [CC-BY-3.0](licenses/cc-by-3.0)|ThirdPartyLibraries 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)|ThirdPartyLibraries| -|[Microsoft.CodeCoverage](packages/nuget.org/microsoft.codecoverage/17.11.1)|17.11.1|[nuget.org](https://www.nuget.org/packages/Microsoft.CodeCoverage/17.11.1)|[MIT](licenses/mit)|ThirdPartyLibraries internal| +|[Microsoft.ApplicationInsights](packages/nuget.org/microsoft.applicationinsights/2.22.0)|2.22.0|[nuget.org](https://www.nuget.org/packages/Microsoft.ApplicationInsights/2.22.0)|[MIT](licenses/mit)|ThirdPartyLibraries internal| +|[Microsoft.Bcl.AsyncInterfaces](packages/nuget.org/microsoft.bcl.asyncinterfaces/9.0.1)|9.0.1|[nuget.org](https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/9.0.1)|[MIT](licenses/mit)|ThirdPartyLibraries| +|[Microsoft.CodeCoverage](packages/nuget.org/microsoft.codecoverage/17.12.0)|17.12.0|[nuget.org](https://www.nuget.org/packages/Microsoft.CodeCoverage/17.12.0)|[MIT](licenses/mit)|ThirdPartyLibraries internal| |[Microsoft.CSharp](packages/nuget.org/microsoft.csharp/4.7.0)|4.7.0|[nuget.org](https://www.nuget.org/packages/Microsoft.CSharp/4.7.0)|[MIT](licenses/mit)|ThirdPartyLibraries 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)|ThirdPartyLibraries| -|[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)|ThirdPartyLibraries| -|[Microsoft.Extensions.Configuration.Binder](packages/nuget.org/microsoft.extensions.configuration.binder/8.0.2)|8.0.2|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Binder/8.0.2)|[MIT](licenses/mit)|ThirdPartyLibraries| -|[Microsoft.Extensions.Configuration.EnvironmentVariables](packages/nuget.org/microsoft.extensions.configuration.environmentvariables/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.EnvironmentVariables/8.0.0)|[MIT](licenses/mit)|ThirdPartyLibraries| -|[Microsoft.Extensions.Configuration.FileExtensions](packages/nuget.org/microsoft.extensions.configuration.fileextensions/8.0.1)|8.0.1|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.FileExtensions/8.0.1)|[MIT](licenses/mit)|ThirdPartyLibraries| -|[Microsoft.Extensions.Configuration.Json](packages/nuget.org/microsoft.extensions.configuration.json/8.0.1)|8.0.1|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Json/8.0.1)|[MIT](licenses/mit)|ThirdPartyLibraries| -|[Microsoft.Extensions.Configuration.UserSecrets](packages/nuget.org/microsoft.extensions.configuration.usersecrets/8.0.1)|8.0.1|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.UserSecrets/8.0.1)|[MIT](licenses/mit)|ThirdPartyLibraries| -|[Microsoft.Extensions.DependencyInjection](packages/nuget.org/microsoft.extensions.dependencyinjection/8.0.1)|8.0.1|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection/8.0.1)|[MIT](licenses/mit)|ThirdPartyLibraries| -|[Microsoft.Extensions.DependencyInjection.Abstractions](packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2)|8.0.2|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2)|[MIT](licenses/mit)|ThirdPartyLibraries| -|[Microsoft.Extensions.FileProviders.Abstractions](packages/nuget.org/microsoft.extensions.fileproviders.abstractions/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Abstractions/8.0.0)|[MIT](licenses/mit)|ThirdPartyLibraries| -|[Microsoft.Extensions.FileProviders.Physical](packages/nuget.org/microsoft.extensions.fileproviders.physical/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Physical/8.0.0)|[MIT](licenses/mit)|ThirdPartyLibraries| -|[Microsoft.Extensions.FileSystemGlobbing](packages/nuget.org/microsoft.extensions.filesystemglobbing/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.FileSystemGlobbing/8.0.0)|[MIT](licenses/mit)|ThirdPartyLibraries| -|[Microsoft.Extensions.Options](packages/nuget.org/microsoft.extensions.options/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Options/8.0.0)|[MIT](licenses/mit)|ThirdPartyLibraries| -|[Microsoft.Extensions.Options.ConfigurationExtensions](packages/nuget.org/microsoft.extensions.options.configurationextensions/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0)|[MIT](licenses/mit)|ThirdPartyLibraries| -|[Microsoft.Extensions.Primitives](packages/nuget.org/microsoft.extensions.primitives/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Primitives/8.0.0)|[MIT](licenses/mit)|ThirdPartyLibraries| -|[Microsoft.NET.Test.Sdk](packages/nuget.org/microsoft.net.test.sdk/17.11.1)|17.11.1|[nuget.org](https://www.nuget.org/packages/Microsoft.NET.Test.Sdk/17.11.1)|[MIT](licenses/mit)|ThirdPartyLibraries internal| +|[Microsoft.Extensions.Configuration](packages/nuget.org/microsoft.extensions.configuration/9.0.1)|9.0.1|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Configuration/9.0.1)|[MIT](licenses/mit)|ThirdPartyLibraries| +|[Microsoft.Extensions.Configuration.Abstractions](packages/nuget.org/microsoft.extensions.configuration.abstractions/9.0.1)|9.0.1|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Abstractions/9.0.1)|[MIT](licenses/mit)|ThirdPartyLibraries| +|[Microsoft.Extensions.Configuration.Binder](packages/nuget.org/microsoft.extensions.configuration.binder/9.0.1)|9.0.1|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Binder/9.0.1)|[MIT](licenses/mit)|ThirdPartyLibraries| +|[Microsoft.Extensions.Configuration.EnvironmentVariables](packages/nuget.org/microsoft.extensions.configuration.environmentvariables/9.0.1)|9.0.1|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.1)|[MIT](licenses/mit)|ThirdPartyLibraries| +|[Microsoft.Extensions.Configuration.FileExtensions](packages/nuget.org/microsoft.extensions.configuration.fileextensions/9.0.1)|9.0.1|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.FileExtensions/9.0.1)|[MIT](licenses/mit)|ThirdPartyLibraries| +|[Microsoft.Extensions.Configuration.Json](packages/nuget.org/microsoft.extensions.configuration.json/9.0.1)|9.0.1|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Json/9.0.1)|[MIT](licenses/mit)|ThirdPartyLibraries| +|[Microsoft.Extensions.Configuration.UserSecrets](packages/nuget.org/microsoft.extensions.configuration.usersecrets/9.0.1)|9.0.1|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Configuration.UserSecrets/9.0.1)|[MIT](licenses/mit)|ThirdPartyLibraries| +|[Microsoft.Extensions.DependencyInjection](packages/nuget.org/microsoft.extensions.dependencyinjection/9.0.1)|9.0.1|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection/9.0.1)|[MIT](licenses/mit)|ThirdPartyLibraries| +|[Microsoft.Extensions.DependencyInjection.Abstractions](packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/9.0.1)|9.0.1|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection.Abstractions/9.0.1)|[MIT](licenses/mit)|ThirdPartyLibraries| +|[Microsoft.Extensions.FileProviders.Abstractions](packages/nuget.org/microsoft.extensions.fileproviders.abstractions/9.0.1)|9.0.1|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Abstractions/9.0.1)|[MIT](licenses/mit)|ThirdPartyLibraries| +|[Microsoft.Extensions.FileProviders.Physical](packages/nuget.org/microsoft.extensions.fileproviders.physical/9.0.1)|9.0.1|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Physical/9.0.1)|[MIT](licenses/mit)|ThirdPartyLibraries| +|[Microsoft.Extensions.FileSystemGlobbing](packages/nuget.org/microsoft.extensions.filesystemglobbing/9.0.1)|9.0.1|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.FileSystemGlobbing/9.0.1)|[MIT](licenses/mit)|ThirdPartyLibraries| +|[Microsoft.Extensions.Options](packages/nuget.org/microsoft.extensions.options/9.0.1)|9.0.1|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Options/9.0.1)|[MIT](licenses/mit)|ThirdPartyLibraries| +|[Microsoft.Extensions.Options.ConfigurationExtensions](packages/nuget.org/microsoft.extensions.options.configurationextensions/9.0.1)|9.0.1|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Options.ConfigurationExtensions/9.0.1)|[MIT](licenses/mit)|ThirdPartyLibraries| +|[Microsoft.Extensions.Primitives](packages/nuget.org/microsoft.extensions.primitives/9.0.1)|9.0.1|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Primitives/9.0.1)|[MIT](licenses/mit)|ThirdPartyLibraries| +|[Microsoft.NET.Test.Sdk](packages/nuget.org/microsoft.net.test.sdk/17.12.0)|17.12.0|[nuget.org](https://www.nuget.org/packages/Microsoft.NET.Test.Sdk/17.12.0)|[MIT](licenses/mit)|ThirdPartyLibraries internal| |[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)|ThirdPartyLibraries internal| -|[Microsoft.TestPlatform.ObjectModel](packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1)|17.11.1|[nuget.org](https://www.nuget.org/packages/Microsoft.TestPlatform.ObjectModel/17.11.1)|[MIT](licenses/mit)|ThirdPartyLibraries internal| -|[Microsoft.TestPlatform.TestHost](packages/nuget.org/microsoft.testplatform.testhost/17.11.1)|17.11.1|[nuget.org](https://www.nuget.org/packages/Microsoft.TestPlatform.TestHost/17.11.1)|[MIT](licenses/mit)|ThirdPartyLibraries internal| +|[Microsoft.Testing.Extensions.Telemetry](packages/nuget.org/microsoft.testing.extensions.telemetry/1.5.3)|1.5.3|[nuget.org](https://www.nuget.org/packages/Microsoft.Testing.Extensions.Telemetry/1.5.3)|[MIT](licenses/mit)|ThirdPartyLibraries internal| +|[Microsoft.Testing.Extensions.TrxReport.Abstractions](packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.5.3)|1.5.3|[nuget.org](https://www.nuget.org/packages/Microsoft.Testing.Extensions.TrxReport.Abstractions/1.5.3)|[MIT](licenses/mit)|ThirdPartyLibraries internal| +|[Microsoft.Testing.Extensions.VSTestBridge](packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.5.3)|1.5.3|[nuget.org](https://www.nuget.org/packages/Microsoft.Testing.Extensions.VSTestBridge/1.5.3)|[MIT](licenses/mit)|ThirdPartyLibraries internal| +|[Microsoft.Testing.Platform](packages/nuget.org/microsoft.testing.platform/1.5.3)|1.5.3|[nuget.org](https://www.nuget.org/packages/Microsoft.Testing.Platform/1.5.3)|[MIT](licenses/mit)|ThirdPartyLibraries internal| +|[Microsoft.Testing.Platform.MSBuild](packages/nuget.org/microsoft.testing.platform.msbuild/1.5.3)|1.5.3|[nuget.org](https://www.nuget.org/packages/Microsoft.Testing.Platform.MSBuild/1.5.3)|[MIT](licenses/mit)|ThirdPartyLibraries internal| +|[Microsoft.TestPlatform.ObjectModel](packages/nuget.org/microsoft.testplatform.objectmodel/17.12.0)|17.12.0|[nuget.org](https://www.nuget.org/packages/Microsoft.TestPlatform.ObjectModel/17.12.0)|[MIT](licenses/mit)|ThirdPartyLibraries internal| +|[Microsoft.TestPlatform.TestHost](packages/nuget.org/microsoft.testplatform.testhost/17.12.0)|17.12.0|[nuget.org](https://www.nuget.org/packages/Microsoft.TestPlatform.TestHost/17.12.0)|[MIT](licenses/mit)|ThirdPartyLibraries 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)|ThirdPartyLibraries internal| |[Newtonsoft.Json](packages/nuget.org/newtonsoft.json/13.0.1)|13.0.1|[nuget.org](https://www.nuget.org/packages/Newtonsoft.Json/13.0.1)|[MIT](licenses/mit)|ThirdPartyLibraries internal| -|[NuGet.Frameworks](packages/nuget.org/nuget.frameworks/6.11.1)|6.11.1|[nuget.org](https://www.nuget.org/packages/NuGet.Frameworks/6.11.1)|[Apache-2.0](licenses/apache-2.0)|ThirdPartyLibraries| -|[NuGet.Versioning](packages/nuget.org/nuget.versioning/6.11.1)|6.11.1|[nuget.org](https://www.nuget.org/packages/NuGet.Versioning/6.11.1)|[Apache-2.0](licenses/apache-2.0)|ThirdPartyLibraries| -|[NUnit](packages/nuget.org/nunit/4.2.2)|4.2.2|[nuget.org](https://www.nuget.org/packages/NUnit/4.2.2)|[MIT](licenses/mit)|ThirdPartyLibraries internal| -|[NUnit3TestAdapter](packages/nuget.org/nunit3testadapter/4.6.0)|4.6.0|[nuget.org](https://www.nuget.org/packages/NUnit3TestAdapter/4.6.0)|[MIT](licenses/mit)|ThirdPartyLibraries internal| +|[NuGet.Frameworks](packages/nuget.org/nuget.frameworks/6.12.1)|6.12.1|[nuget.org](https://www.nuget.org/packages/NuGet.Frameworks/6.12.1)|[Apache-2.0](licenses/apache-2.0)|ThirdPartyLibraries| +|[NuGet.Versioning](packages/nuget.org/nuget.versioning/6.12.1)|6.12.1|[nuget.org](https://www.nuget.org/packages/NuGet.Versioning/6.12.1)|[Apache-2.0](licenses/apache-2.0)|ThirdPartyLibraries| +|[NUnit](packages/nuget.org/nunit/4.3.2)|4.3.2|[nuget.org](https://www.nuget.org/packages/NUnit/4.3.2)|[MIT](licenses/mit)|ThirdPartyLibraries internal| +|[NUnit3TestAdapter](packages/nuget.org/nunit3testadapter/5.0.0)|5.0.0|[nuget.org](https://www.nuget.org/packages/NUnit3TestAdapter/5.0.0)|[MIT](licenses/mit)|ThirdPartyLibraries internal| |[PowerShellStandard.Library](packages/nuget.org/powershellstandard.library/5.1.1)|5.1.1|[nuget.org](https://www.nuget.org/packages/PowerShellStandard.Library/5.1.1)|[MIT](licenses/mit)|ThirdPartyLibraries| |[RichardSzalay.MockHttp](packages/nuget.org/richardszalay.mockhttp/7.0.0)|7.0.0|[nuget.org](https://www.nuget.org/packages/RichardSzalay.MockHttp/7.0.0)|[MIT](licenses/mit)|ThirdPartyLibraries internal| |[SharpZipLib](packages/nuget.org/sharpziplib/1.4.2)|1.4.2|[nuget.org](https://www.nuget.org/packages/SharpZipLib/1.4.2)|[MIT](licenses/mit)|ThirdPartyLibraries| -|[Shouldly](packages/nuget.org/shouldly/4.2.1)|4.2.1|[nuget.org](https://www.nuget.org/packages/Shouldly/4.2.1)|[BSD-2-Clause](licenses/bsd-2-clause)|ThirdPartyLibraries internal| +|[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)|ThirdPartyLibraries 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)|ThirdPartyLibraries 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)|ThirdPartyLibraries| +|[System.Buffers](packages/nuget.org/system.buffers/4.6.0)|4.6.0|[nuget.org](https://www.nuget.org/packages/System.Buffers/4.6.0)|[MIT](licenses/mit)|ThirdPartyLibraries internal| |[System.CodeDom](packages/nuget.org/system.codedom/6.0.0)|6.0.0|[nuget.org](https://www.nuget.org/packages/System.CodeDom/6.0.0)|[MIT](licenses/mit)|ThirdPartyLibraries 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)|ThirdPartyLibraries| +|[System.Diagnostics.DiagnosticSource](packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0)|5.0.0|[nuget.org](https://www.nuget.org/packages/System.Diagnostics.DiagnosticSource/5.0.0)|[MIT](licenses/mit)|ThirdPartyLibraries internal| |[System.Diagnostics.EventLog](packages/nuget.org/system.diagnostics.eventlog/4.7.0)|4.7.0|[nuget.org](https://www.nuget.org/packages/System.Diagnostics.EventLog/4.7.0)|[MIT](licenses/mit)|ThirdPartyLibraries internal| +|[System.IO.Pipelines](packages/nuget.org/system.io.pipelines/9.0.1)|9.0.1|[nuget.org](https://www.nuget.org/packages/System.IO.Pipelines/9.0.1)|[MIT](licenses/mit)|ThirdPartyLibraries| |[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)|ThirdPartyLibraries 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)|ThirdPartyLibraries| +|[System.Memory](packages/nuget.org/system.memory/4.6.0)|4.6.0|[nuget.org](https://www.nuget.org/packages/System.Memory/4.6.0)|[MIT](licenses/mit)|ThirdPartyLibraries 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)|ThirdPartyLibraries| +|[System.Numerics.Vectors](packages/nuget.org/system.numerics.vectors/4.6.0)|4.6.0|[nuget.org](https://www.nuget.org/packages/System.Numerics.Vectors/4.6.0)|[MIT](licenses/mit)|ThirdPartyLibraries internal| |[System.Reflection.Metadata](packages/nuget.org/system.reflection.metadata/1.6.0)|1.6.0|[nuget.org](https://www.nuget.org/packages/System.Reflection.Metadata/1.6.0)|[MIT](licenses/mit)|ThirdPartyLibraries 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)|ThirdPartyLibraries| +|[System.Runtime.CompilerServices.Unsafe](packages/nuget.org/system.runtime.compilerservices.unsafe/6.1.0)|6.1.0|[nuget.org](https://www.nuget.org/packages/System.Runtime.CompilerServices.Unsafe/6.1.0)|[MIT](licenses/mit)|ThirdPartyLibraries internal| |[System.Runtime.Loader](packages/nuget.org/system.runtime.loader/4.3.0)|4.3.0|[nuget.org](https://www.nuget.org/packages/System.Runtime.Loader/4.3.0)|[ms-net-library](licenses/ms-net-library)|ThirdPartyLibraries| |[System.Security.Principal.Windows](packages/nuget.org/system.security.principal.windows/4.7.0)|4.7.0|[nuget.org](https://www.nuget.org/packages/System.Security.Principal.Windows/4.7.0)|[MIT](licenses/mit)|ThirdPartyLibraries internal| -|[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)|ThirdPartyLibraries| -|[System.Text.Json](packages/nuget.org/system.text.json/8.0.5)|8.0.5|[nuget.org](https://www.nuget.org/packages/System.Text.Json/8.0.5)|[MIT](licenses/mit)|ThirdPartyLibraries| +|[System.Text.Encodings.Web](packages/nuget.org/system.text.encodings.web/9.0.1)|9.0.1|[nuget.org](https://www.nuget.org/packages/System.Text.Encodings.Web/9.0.1)|[MIT](licenses/mit)|ThirdPartyLibraries| +|[System.Text.Json](packages/nuget.org/system.text.json/9.0.1)|9.0.1|[nuget.org](https://www.nuget.org/packages/System.Text.Json/9.0.1)|[MIT](licenses/mit)|ThirdPartyLibraries| |[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)|ThirdPartyLibraries| |[typescript](packages/npmjs.com/typescript/5.4.2)|5.4.2|[npmjs.com](https://www.npmjs.com/package/typescript/v/5.4.2)|[Apache-2.0](licenses/apache-2.0)|ThirdPartyLibraries internal| From 45e4078da8d82256376b960ae7db943bc275d553 Mon Sep 17 00:00:00 2001 From: max-ieremenko Date: Sat, 8 Feb 2025 15:15:06 +0100 Subject: [PATCH 14/14] update examples --- Examples/export-to-csv/packages.csv | 43 ++++++++-------- .../Licenses/MS-PL-license.txt | 22 +++++++++ .../ThirdPartyNotices.txt | 49 ++++++++++--------- .../ThirdPartyNotices.txt | 49 ++++++++++--------- .../Licenses/MS-PL-license.txt | 22 +++++++++ .../ThirdPartyNotices.txt | 49 ++++++++++--------- 6 files changed, 147 insertions(+), 87 deletions(-) create mode 100644 Examples/third-party-notices-template/group-by-repository-license/Licenses/MS-PL-license.txt create mode 100644 Examples/third-party-notices-template/package-list-repository-license/Licenses/MS-PL-license.txt diff --git a/Examples/export-to-csv/packages.csv b/Examples/export-to-csv/packages.csv index d0880cc4..6e37cbe7 100644 --- a/Examples/export-to-csv/packages.csv +++ b/Examples/export-to-csv/packages.csv @@ -1,32 +1,33 @@ "Name","Version","Package Url","License","License Url","Authors","Copyright" "chalk","5.3.0","https://www.npmjs.com/package/chalk/v/5.3.0","MIT License","https://spdx.org/licenses/MIT","","" -"DotLiquid","2.2.692","https://www.nuget.org/packages/DotLiquid/2.2.692","Apache License 2.0","https://spdx.org/licenses/Apache-2.0","Tim Jones, Alessandro Petrelli","" -"Microsoft.Bcl.AsyncInterfaces","8.0.0","https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/8.0.0","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." -"Microsoft.Extensions.Configuration","8.0.0","https://www.nuget.org/packages/Microsoft.Extensions.Configuration/8.0.0","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." -"Microsoft.Extensions.Configuration.Abstractions","8.0.0","https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Abstractions/8.0.0","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." -"Microsoft.Extensions.Configuration.Binder","8.0.2","https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Binder/8.0.2","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." -"Microsoft.Extensions.Configuration.EnvironmentVariables","8.0.0","https://www.nuget.org/packages/Microsoft.Extensions.Configuration.EnvironmentVariables/8.0.0","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." -"Microsoft.Extensions.Configuration.FileExtensions","8.0.1","https://www.nuget.org/packages/Microsoft.Extensions.Configuration.FileExtensions/8.0.1","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." -"Microsoft.Extensions.Configuration.Json","8.0.1","https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Json/8.0.1","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." -"Microsoft.Extensions.Configuration.UserSecrets","8.0.1","https://www.nuget.org/packages/Microsoft.Extensions.Configuration.UserSecrets/8.0.1","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." -"Microsoft.Extensions.DependencyInjection","8.0.1","https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection/8.0.1","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." -"Microsoft.Extensions.DependencyInjection.Abstractions","8.0.2","https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." -"Microsoft.Extensions.FileProviders.Abstractions","8.0.0","https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Abstractions/8.0.0","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." -"Microsoft.Extensions.FileProviders.Physical","8.0.0","https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Physical/8.0.0","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." -"Microsoft.Extensions.FileSystemGlobbing","8.0.0","https://www.nuget.org/packages/Microsoft.Extensions.FileSystemGlobbing/8.0.0","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." -"Microsoft.Extensions.Options","8.0.0","https://www.nuget.org/packages/Microsoft.Extensions.Options/8.0.0","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." -"Microsoft.Extensions.Options.ConfigurationExtensions","8.0.0","https://www.nuget.org/packages/Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." -"Microsoft.Extensions.Primitives","8.0.0","https://www.nuget.org/packages/Microsoft.Extensions.Primitives/8.0.0","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." -"NuGet.Frameworks","6.11.1","https://www.nuget.org/packages/NuGet.Frameworks/6.11.1","Apache License 2.0","https://spdx.org/licenses/Apache-2.0","Microsoft","© Microsoft Corporation. All rights reserved." -"NuGet.Versioning","6.11.1","https://www.nuget.org/packages/NuGet.Versioning/6.11.1","Apache License 2.0","https://spdx.org/licenses/Apache-2.0","Microsoft","© Microsoft Corporation. All rights reserved." +"DotLiquid","2.3.18","https://www.nuget.org/packages/DotLiquid/2.3.18","Apache-2.0 OR MS-PL","https://spdx.org/licenses/Apache-2.0https://spdx.org/licenses/MS-PL","Tim Jones, Alessandro Petrelli","" +"Microsoft.Bcl.AsyncInterfaces","9.0.1","https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/9.0.1","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." +"Microsoft.Extensions.Configuration","9.0.1","https://www.nuget.org/packages/Microsoft.Extensions.Configuration/9.0.1","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." +"Microsoft.Extensions.Configuration.Abstractions","9.0.1","https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Abstractions/9.0.1","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." +"Microsoft.Extensions.Configuration.Binder","9.0.1","https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Binder/9.0.1","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." +"Microsoft.Extensions.Configuration.EnvironmentVariables","9.0.1","https://www.nuget.org/packages/Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.1","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." +"Microsoft.Extensions.Configuration.FileExtensions","9.0.1","https://www.nuget.org/packages/Microsoft.Extensions.Configuration.FileExtensions/9.0.1","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." +"Microsoft.Extensions.Configuration.Json","9.0.1","https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Json/9.0.1","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." +"Microsoft.Extensions.Configuration.UserSecrets","9.0.1","https://www.nuget.org/packages/Microsoft.Extensions.Configuration.UserSecrets/9.0.1","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." +"Microsoft.Extensions.DependencyInjection","9.0.1","https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection/9.0.1","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." +"Microsoft.Extensions.DependencyInjection.Abstractions","9.0.1","https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection.Abstractions/9.0.1","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." +"Microsoft.Extensions.FileProviders.Abstractions","9.0.1","https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Abstractions/9.0.1","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." +"Microsoft.Extensions.FileProviders.Physical","9.0.1","https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Physical/9.0.1","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." +"Microsoft.Extensions.FileSystemGlobbing","9.0.1","https://www.nuget.org/packages/Microsoft.Extensions.FileSystemGlobbing/9.0.1","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." +"Microsoft.Extensions.Options","9.0.1","https://www.nuget.org/packages/Microsoft.Extensions.Options/9.0.1","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." +"Microsoft.Extensions.Options.ConfigurationExtensions","9.0.1","https://www.nuget.org/packages/Microsoft.Extensions.Options.ConfigurationExtensions/9.0.1","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." +"Microsoft.Extensions.Primitives","9.0.1","https://www.nuget.org/packages/Microsoft.Extensions.Primitives/9.0.1","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." +"NuGet.Frameworks","6.12.1","https://www.nuget.org/packages/NuGet.Frameworks/6.12.1","Apache License 2.0","https://spdx.org/licenses/Apache-2.0","Microsoft","© Microsoft Corporation. All rights reserved." +"NuGet.Versioning","6.12.1","https://www.nuget.org/packages/NuGet.Versioning/6.12.1","Apache License 2.0","https://spdx.org/licenses/Apache-2.0","Microsoft","© Microsoft Corporation. All rights reserved." "PowerShellStandard.Library","5.1.1","https://www.nuget.org/packages/PowerShellStandard.Library/5.1.1","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." "SharpZipLib","1.4.2","https://www.nuget.org/packages/SharpZipLib/1.4.2","MIT License","https://spdx.org/licenses/MIT","ICSharpCode","Copyright © 2000-2022 SharpZipLib Contributors" "System.Buffers","4.5.1","https://www.nuget.org/packages/System.Buffers/4.5.1","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." "System.ComponentModel.Annotations","5.0.0","https://www.nuget.org/packages/System.ComponentModel.Annotations/5.0.0","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." +"System.IO.Pipelines","9.0.1","https://www.nuget.org/packages/System.IO.Pipelines/9.0.1","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." "System.Memory","4.5.5","https://www.nuget.org/packages/System.Memory/4.5.5","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." "System.Numerics.Vectors","4.4.0","https://www.nuget.org/packages/System.Numerics.Vectors/4.4.0","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." "System.Runtime.CompilerServices.Unsafe","6.0.0","https://www.nuget.org/packages/System.Runtime.CompilerServices.Unsafe/6.0.0","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." "System.Runtime.Loader","4.3.0","https://www.nuget.org/packages/System.Runtime.Loader/4.3.0","MICROSOFT .NET LIBRARY","https://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm","Microsoft","© Microsoft Corporation. All rights reserved." -"System.Text.Encodings.Web","8.0.0","https://www.nuget.org/packages/System.Text.Encodings.Web/8.0.0","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." -"System.Text.Json","8.0.5","https://www.nuget.org/packages/System.Text.Json/8.0.5","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." +"System.Text.Encodings.Web","9.0.1","https://www.nuget.org/packages/System.Text.Encodings.Web/9.0.1","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." +"System.Text.Json","9.0.1","https://www.nuget.org/packages/System.Text.Json/9.0.1","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." "System.Threading.Tasks.Extensions","4.5.4","https://www.nuget.org/packages/System.Threading.Tasks.Extensions/4.5.4","MIT License","https://spdx.org/licenses/MIT","Microsoft","© Microsoft Corporation. All rights reserved." diff --git a/Examples/third-party-notices-template/group-by-repository-license/Licenses/MS-PL-license.txt b/Examples/third-party-notices-template/group-by-repository-license/Licenses/MS-PL-license.txt new file mode 100644 index 00000000..c61790bc --- /dev/null +++ b/Examples/third-party-notices-template/group-by-repository-license/Licenses/MS-PL-license.txt @@ -0,0 +1,22 @@ +Microsoft Public License (Ms-PL) + +This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. + +1. Definitions +The terms "reproduce," "reproduction," "derivative works," and "distribution" have the same meaning here as under U.S. copyright law. A "contribution" is the original software, or any additions or changes to the software. A "contributor" is any person that distributes its contribution under this license. "Licensed patents" are a contributor's patent claims that read directly on its contribution. + +2. Grant of Rights + (A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create. + + (B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works of the contribution in the software. + +3. Conditions and Limitations + (A) No Trademark License- This license does not grant you rights to use any contributors' name, logo, or trademarks. + + (B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically. + + (C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software. + + (D) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license. + + (E) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees, or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement. diff --git a/Examples/third-party-notices-template/group-by-repository-license/ThirdPartyNotices.txt b/Examples/third-party-notices-template/group-by-repository-license/ThirdPartyNotices.txt index e31498f6..417eac4f 100644 --- a/Examples/third-party-notices-template/group-by-repository-license/ThirdPartyNotices.txt +++ b/Examples/third-party-notices-template/group-by-repository-license/ThirdPartyNotices.txt @@ -4,15 +4,17 @@ Third party libraries THIRD-PARTY SOFTWARE NOTICES AND INFORMATION License Apache License 2.0, full text can be found at https://spdx.org/licenses/Apache-2.0 or in Licenses/Apache-2.0-license.txt - DotLiquid (https://www.nuget.org/packages/DotLiquid/2.2.692) - Authors: Tim Jones, Alessandro Petrelli - NuGet.Frameworks (https://www.nuget.org/packages/NuGet.Frameworks/6.11.1) + NuGet.Frameworks (https://www.nuget.org/packages/NuGet.Frameworks/6.12.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. - NuGet.Versioning (https://www.nuget.org/packages/NuGet.Versioning/6.11.1) + NuGet.Versioning (https://www.nuget.org/packages/NuGet.Versioning/6.12.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. +License Apache-2.0 OR MS-PL, full text can be found at https://spdx.org/licenses/Apache-2.0 https://spdx.org/licenses/MS-PL or in Licenses/Apache-2.0-license.txt Licenses/MS-PL-license.txt + DotLiquid (https://www.nuget.org/packages/DotLiquid/2.3.18) + Authors: Tim Jones, Alessandro Petrelli + License MICROSOFT .NET LIBRARY, full text can be found at https://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm or in Licenses/ms-net-library-license.html System.Runtime.Loader (https://www.nuget.org/packages/System.Runtime.Loader/4.3.0) Authors: Microsoft @@ -20,52 +22,52 @@ License MICROSOFT .NET LIBRARY, full text can be found at https://www.microsoft. License MIT License, full text can be found at https://spdx.org/licenses/MIT or in Licenses/MIT-license.txt chalk (https://www.npmjs.com/package/chalk/v/5.3.0) - Microsoft.Bcl.AsyncInterfaces (https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/8.0.0) + Microsoft.Bcl.AsyncInterfaces (https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. - Microsoft.Extensions.Configuration (https://www.nuget.org/packages/Microsoft.Extensions.Configuration/8.0.0) + Microsoft.Extensions.Configuration (https://www.nuget.org/packages/Microsoft.Extensions.Configuration/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. - Microsoft.Extensions.Configuration.Abstractions (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Abstractions/8.0.0) + Microsoft.Extensions.Configuration.Abstractions (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Abstractions/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. - Microsoft.Extensions.Configuration.Binder (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Binder/8.0.2) + Microsoft.Extensions.Configuration.Binder (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Binder/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. - Microsoft.Extensions.Configuration.EnvironmentVariables (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.EnvironmentVariables/8.0.0) + Microsoft.Extensions.Configuration.EnvironmentVariables (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. - Microsoft.Extensions.Configuration.FileExtensions (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.FileExtensions/8.0.1) + Microsoft.Extensions.Configuration.FileExtensions (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.FileExtensions/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. - Microsoft.Extensions.Configuration.Json (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Json/8.0.1) + Microsoft.Extensions.Configuration.Json (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Json/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. - Microsoft.Extensions.Configuration.UserSecrets (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.UserSecrets/8.0.1) + Microsoft.Extensions.Configuration.UserSecrets (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.UserSecrets/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. - Microsoft.Extensions.DependencyInjection (https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection/8.0.1) + Microsoft.Extensions.DependencyInjection (https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. - Microsoft.Extensions.DependencyInjection.Abstractions (https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2) + Microsoft.Extensions.DependencyInjection.Abstractions (https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection.Abstractions/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. - Microsoft.Extensions.FileProviders.Abstractions (https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Abstractions/8.0.0) + Microsoft.Extensions.FileProviders.Abstractions (https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Abstractions/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. - Microsoft.Extensions.FileProviders.Physical (https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Physical/8.0.0) + Microsoft.Extensions.FileProviders.Physical (https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Physical/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. - Microsoft.Extensions.FileSystemGlobbing (https://www.nuget.org/packages/Microsoft.Extensions.FileSystemGlobbing/8.0.0) + Microsoft.Extensions.FileSystemGlobbing (https://www.nuget.org/packages/Microsoft.Extensions.FileSystemGlobbing/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. - Microsoft.Extensions.Options (https://www.nuget.org/packages/Microsoft.Extensions.Options/8.0.0) + Microsoft.Extensions.Options (https://www.nuget.org/packages/Microsoft.Extensions.Options/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. - Microsoft.Extensions.Options.ConfigurationExtensions (https://www.nuget.org/packages/Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0) + Microsoft.Extensions.Options.ConfigurationExtensions (https://www.nuget.org/packages/Microsoft.Extensions.Options.ConfigurationExtensions/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. - Microsoft.Extensions.Primitives (https://www.nuget.org/packages/Microsoft.Extensions.Primitives/8.0.0) + Microsoft.Extensions.Primitives (https://www.nuget.org/packages/Microsoft.Extensions.Primitives/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. PowerShellStandard.Library (https://www.nuget.org/packages/PowerShellStandard.Library/5.1.1) @@ -80,6 +82,9 @@ License MIT License, full text can be found at https://spdx.org/licenses/MIT or System.ComponentModel.Annotations (https://www.nuget.org/packages/System.ComponentModel.Annotations/5.0.0) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. + System.IO.Pipelines (https://www.nuget.org/packages/System.IO.Pipelines/9.0.1) + Authors: Microsoft + Copyright: © Microsoft Corporation. All rights reserved. System.Memory (https://www.nuget.org/packages/System.Memory/4.5.5) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. @@ -89,10 +94,10 @@ License MIT License, full text can be found at https://spdx.org/licenses/MIT or System.Runtime.CompilerServices.Unsafe (https://www.nuget.org/packages/System.Runtime.CompilerServices.Unsafe/6.0.0) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. - System.Text.Encodings.Web (https://www.nuget.org/packages/System.Text.Encodings.Web/8.0.0) + System.Text.Encodings.Web (https://www.nuget.org/packages/System.Text.Encodings.Web/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. - System.Text.Json (https://www.nuget.org/packages/System.Text.Json/8.0.5) + System.Text.Json (https://www.nuget.org/packages/System.Text.Json/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. System.Threading.Tasks.Extensions (https://www.nuget.org/packages/System.Threading.Tasks.Extensions/4.5.4) diff --git a/Examples/third-party-notices-template/package-list-package-license/ThirdPartyNotices.txt b/Examples/third-party-notices-template/package-list-package-license/ThirdPartyNotices.txt index 76a9d30c..d2c53fc6 100644 --- a/Examples/third-party-notices-template/package-list-package-license/ThirdPartyNotices.txt +++ b/Examples/third-party-notices-template/package-list-package-license/ThirdPartyNotices.txt @@ -6,96 +6,96 @@ THIRD-PARTY SOFTWARE NOTICES AND INFORMATION chalk (https://www.npmjs.com/package/chalk/v/5.3.0) License: MIT License, full text can be found at https://spdx.org/licenses/MIT or in Licenses/chalk -DotLiquid (https://www.nuget.org/packages/DotLiquid/2.2.692) +DotLiquid (https://www.nuget.org/packages/DotLiquid/2.3.18) Authors: Tim Jones, Alessandro Petrelli - License: Apache License 2.0, full text can be found at http://www.apache.org/licenses/LICENSE-2.0 or in Licenses/dotliquid.txt + License: Apache-2.0 OR MS-PL, full text can be found at https://licenses.nuget.org/Apache-2.0 OR MS-PL or in Licenses/dotliquid.txt -Microsoft.Bcl.AsyncInterfaces (https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/8.0.0) +Microsoft.Bcl.AsyncInterfaces (https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://licenses.nuget.org/MIT or in Licenses/dotnet.txt -Microsoft.Extensions.Configuration (https://www.nuget.org/packages/Microsoft.Extensions.Configuration/8.0.0) +Microsoft.Extensions.Configuration (https://www.nuget.org/packages/Microsoft.Extensions.Configuration/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://licenses.nuget.org/MIT or in Licenses/dotnet.txt -Microsoft.Extensions.Configuration.Abstractions (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Abstractions/8.0.0) +Microsoft.Extensions.Configuration.Abstractions (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Abstractions/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://licenses.nuget.org/MIT or in Licenses/dotnet.txt -Microsoft.Extensions.Configuration.Binder (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Binder/8.0.2) +Microsoft.Extensions.Configuration.Binder (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Binder/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://licenses.nuget.org/MIT or in Licenses/dotnet.txt -Microsoft.Extensions.Configuration.EnvironmentVariables (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.EnvironmentVariables/8.0.0) +Microsoft.Extensions.Configuration.EnvironmentVariables (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://licenses.nuget.org/MIT or in Licenses/dotnet.txt -Microsoft.Extensions.Configuration.FileExtensions (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.FileExtensions/8.0.1) +Microsoft.Extensions.Configuration.FileExtensions (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.FileExtensions/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://licenses.nuget.org/MIT or in Licenses/dotnet.txt -Microsoft.Extensions.Configuration.Json (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Json/8.0.1) +Microsoft.Extensions.Configuration.Json (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Json/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://licenses.nuget.org/MIT or in Licenses/dotnet.txt -Microsoft.Extensions.Configuration.UserSecrets (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.UserSecrets/8.0.1) +Microsoft.Extensions.Configuration.UserSecrets (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.UserSecrets/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://licenses.nuget.org/MIT or in Licenses/dotnet.txt -Microsoft.Extensions.DependencyInjection (https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection/8.0.1) +Microsoft.Extensions.DependencyInjection (https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://licenses.nuget.org/MIT or in Licenses/dotnet.txt -Microsoft.Extensions.DependencyInjection.Abstractions (https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2) +Microsoft.Extensions.DependencyInjection.Abstractions (https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection.Abstractions/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://licenses.nuget.org/MIT or in Licenses/dotnet.txt -Microsoft.Extensions.FileProviders.Abstractions (https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Abstractions/8.0.0) +Microsoft.Extensions.FileProviders.Abstractions (https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Abstractions/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://licenses.nuget.org/MIT or in Licenses/dotnet.txt -Microsoft.Extensions.FileProviders.Physical (https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Physical/8.0.0) +Microsoft.Extensions.FileProviders.Physical (https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Physical/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://licenses.nuget.org/MIT or in Licenses/dotnet.txt -Microsoft.Extensions.FileSystemGlobbing (https://www.nuget.org/packages/Microsoft.Extensions.FileSystemGlobbing/8.0.0) +Microsoft.Extensions.FileSystemGlobbing (https://www.nuget.org/packages/Microsoft.Extensions.FileSystemGlobbing/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://licenses.nuget.org/MIT or in Licenses/dotnet.txt -Microsoft.Extensions.Options (https://www.nuget.org/packages/Microsoft.Extensions.Options/8.0.0) +Microsoft.Extensions.Options (https://www.nuget.org/packages/Microsoft.Extensions.Options/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://licenses.nuget.org/MIT or in Licenses/dotnet.txt -Microsoft.Extensions.Options.ConfigurationExtensions (https://www.nuget.org/packages/Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0) +Microsoft.Extensions.Options.ConfigurationExtensions (https://www.nuget.org/packages/Microsoft.Extensions.Options.ConfigurationExtensions/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://licenses.nuget.org/MIT or in Licenses/dotnet.txt -Microsoft.Extensions.Primitives (https://www.nuget.org/packages/Microsoft.Extensions.Primitives/8.0.0) +Microsoft.Extensions.Primitives (https://www.nuget.org/packages/Microsoft.Extensions.Primitives/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://licenses.nuget.org/MIT or in Licenses/dotnet.txt -NuGet.Frameworks (https://www.nuget.org/packages/NuGet.Frameworks/6.11.1) +NuGet.Frameworks (https://www.nuget.org/packages/NuGet.Frameworks/6.12.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: Apache License 2.0, full text can be found at https://licenses.nuget.org/Apache-2.0 or in Licenses/Apache-2.0-license.txt -NuGet.Versioning (https://www.nuget.org/packages/NuGet.Versioning/6.11.1) +NuGet.Versioning (https://www.nuget.org/packages/NuGet.Versioning/6.12.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: Apache License 2.0, full text can be found at https://licenses.nuget.org/Apache-2.0 or in Licenses/Apache-2.0-license.txt @@ -120,6 +120,11 @@ System.ComponentModel.Annotations (https://www.nuget.org/packages/System.Compone Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://licenses.nuget.org/MIT or in Licenses/dotnet.txt +System.IO.Pipelines (https://www.nuget.org/packages/System.IO.Pipelines/9.0.1) + Authors: Microsoft + Copyright: © Microsoft Corporation. All rights reserved. + License: MIT License, full text can be found at https://licenses.nuget.org/MIT or in Licenses/dotnet.txt + System.Memory (https://www.nuget.org/packages/System.Memory/4.5.5) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. @@ -140,12 +145,12 @@ System.Runtime.Loader (https://www.nuget.org/packages/System.Runtime.Loader/4.3. Copyright: © Microsoft Corporation. All rights reserved. License: MICROSOFT .NET LIBRARY, full text can be found at http://go.microsoft.com/fwlink/?LinkId=329770 or in Licenses/system.runtime.loader.txt -System.Text.Encodings.Web (https://www.nuget.org/packages/System.Text.Encodings.Web/8.0.0) +System.Text.Encodings.Web (https://www.nuget.org/packages/System.Text.Encodings.Web/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://licenses.nuget.org/MIT or in Licenses/dotnet.txt -System.Text.Json (https://www.nuget.org/packages/System.Text.Json/8.0.5) +System.Text.Json (https://www.nuget.org/packages/System.Text.Json/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://licenses.nuget.org/MIT or in Licenses/dotnet.txt diff --git a/Examples/third-party-notices-template/package-list-repository-license/Licenses/MS-PL-license.txt b/Examples/third-party-notices-template/package-list-repository-license/Licenses/MS-PL-license.txt new file mode 100644 index 00000000..c61790bc --- /dev/null +++ b/Examples/third-party-notices-template/package-list-repository-license/Licenses/MS-PL-license.txt @@ -0,0 +1,22 @@ +Microsoft Public License (Ms-PL) + +This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. + +1. Definitions +The terms "reproduce," "reproduction," "derivative works," and "distribution" have the same meaning here as under U.S. copyright law. A "contribution" is the original software, or any additions or changes to the software. A "contributor" is any person that distributes its contribution under this license. "Licensed patents" are a contributor's patent claims that read directly on its contribution. + +2. Grant of Rights + (A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create. + + (B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works of the contribution in the software. + +3. Conditions and Limitations + (A) No Trademark License- This license does not grant you rights to use any contributors' name, logo, or trademarks. + + (B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically. + + (C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software. + + (D) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license. + + (E) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees, or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement. diff --git a/Examples/third-party-notices-template/package-list-repository-license/ThirdPartyNotices.txt b/Examples/third-party-notices-template/package-list-repository-license/ThirdPartyNotices.txt index 988db294..bef3376b 100644 --- a/Examples/third-party-notices-template/package-list-repository-license/ThirdPartyNotices.txt +++ b/Examples/third-party-notices-template/package-list-repository-license/ThirdPartyNotices.txt @@ -6,96 +6,96 @@ THIRD-PARTY SOFTWARE NOTICES AND INFORMATION chalk (https://www.npmjs.com/package/chalk/v/5.3.0) License: MIT License, full text can be found at https://spdx.org/licenses/MIT or in Licenses/MIT-license.txt -DotLiquid (https://www.nuget.org/packages/DotLiquid/2.2.692) +DotLiquid (https://www.nuget.org/packages/DotLiquid/2.3.18) Authors: Tim Jones, Alessandro Petrelli - License: Apache License 2.0, full text can be found at https://spdx.org/licenses/Apache-2.0 or in Licenses/Apache-2.0-license.txt + License: Apache-2.0 OR MS-PL, full text can be found at https://spdx.org/licenses/Apache-2.0 https://spdx.org/licenses/MS-PL or in Licenses/Apache-2.0-license.txt Licenses/MS-PL-license.txt -Microsoft.Bcl.AsyncInterfaces (https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/8.0.0) +Microsoft.Bcl.AsyncInterfaces (https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://spdx.org/licenses/MIT or in Licenses/MIT-license.txt -Microsoft.Extensions.Configuration (https://www.nuget.org/packages/Microsoft.Extensions.Configuration/8.0.0) +Microsoft.Extensions.Configuration (https://www.nuget.org/packages/Microsoft.Extensions.Configuration/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://spdx.org/licenses/MIT or in Licenses/MIT-license.txt -Microsoft.Extensions.Configuration.Abstractions (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Abstractions/8.0.0) +Microsoft.Extensions.Configuration.Abstractions (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Abstractions/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://spdx.org/licenses/MIT or in Licenses/MIT-license.txt -Microsoft.Extensions.Configuration.Binder (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Binder/8.0.2) +Microsoft.Extensions.Configuration.Binder (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Binder/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://spdx.org/licenses/MIT or in Licenses/MIT-license.txt -Microsoft.Extensions.Configuration.EnvironmentVariables (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.EnvironmentVariables/8.0.0) +Microsoft.Extensions.Configuration.EnvironmentVariables (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://spdx.org/licenses/MIT or in Licenses/MIT-license.txt -Microsoft.Extensions.Configuration.FileExtensions (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.FileExtensions/8.0.1) +Microsoft.Extensions.Configuration.FileExtensions (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.FileExtensions/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://spdx.org/licenses/MIT or in Licenses/MIT-license.txt -Microsoft.Extensions.Configuration.Json (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Json/8.0.1) +Microsoft.Extensions.Configuration.Json (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.Json/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://spdx.org/licenses/MIT or in Licenses/MIT-license.txt -Microsoft.Extensions.Configuration.UserSecrets (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.UserSecrets/8.0.1) +Microsoft.Extensions.Configuration.UserSecrets (https://www.nuget.org/packages/Microsoft.Extensions.Configuration.UserSecrets/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://spdx.org/licenses/MIT or in Licenses/MIT-license.txt -Microsoft.Extensions.DependencyInjection (https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection/8.0.1) +Microsoft.Extensions.DependencyInjection (https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://spdx.org/licenses/MIT or in Licenses/MIT-license.txt -Microsoft.Extensions.DependencyInjection.Abstractions (https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2) +Microsoft.Extensions.DependencyInjection.Abstractions (https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection.Abstractions/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://spdx.org/licenses/MIT or in Licenses/MIT-license.txt -Microsoft.Extensions.FileProviders.Abstractions (https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Abstractions/8.0.0) +Microsoft.Extensions.FileProviders.Abstractions (https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Abstractions/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://spdx.org/licenses/MIT or in Licenses/MIT-license.txt -Microsoft.Extensions.FileProviders.Physical (https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Physical/8.0.0) +Microsoft.Extensions.FileProviders.Physical (https://www.nuget.org/packages/Microsoft.Extensions.FileProviders.Physical/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://spdx.org/licenses/MIT or in Licenses/MIT-license.txt -Microsoft.Extensions.FileSystemGlobbing (https://www.nuget.org/packages/Microsoft.Extensions.FileSystemGlobbing/8.0.0) +Microsoft.Extensions.FileSystemGlobbing (https://www.nuget.org/packages/Microsoft.Extensions.FileSystemGlobbing/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://spdx.org/licenses/MIT or in Licenses/MIT-license.txt -Microsoft.Extensions.Options (https://www.nuget.org/packages/Microsoft.Extensions.Options/8.0.0) +Microsoft.Extensions.Options (https://www.nuget.org/packages/Microsoft.Extensions.Options/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://spdx.org/licenses/MIT or in Licenses/MIT-license.txt -Microsoft.Extensions.Options.ConfigurationExtensions (https://www.nuget.org/packages/Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0) +Microsoft.Extensions.Options.ConfigurationExtensions (https://www.nuget.org/packages/Microsoft.Extensions.Options.ConfigurationExtensions/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://spdx.org/licenses/MIT or in Licenses/MIT-license.txt -Microsoft.Extensions.Primitives (https://www.nuget.org/packages/Microsoft.Extensions.Primitives/8.0.0) +Microsoft.Extensions.Primitives (https://www.nuget.org/packages/Microsoft.Extensions.Primitives/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://spdx.org/licenses/MIT or in Licenses/MIT-license.txt -NuGet.Frameworks (https://www.nuget.org/packages/NuGet.Frameworks/6.11.1) +NuGet.Frameworks (https://www.nuget.org/packages/NuGet.Frameworks/6.12.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: Apache License 2.0, full text can be found at https://spdx.org/licenses/Apache-2.0 or in Licenses/Apache-2.0-license.txt -NuGet.Versioning (https://www.nuget.org/packages/NuGet.Versioning/6.11.1) +NuGet.Versioning (https://www.nuget.org/packages/NuGet.Versioning/6.12.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: Apache License 2.0, full text can be found at https://spdx.org/licenses/Apache-2.0 or in Licenses/Apache-2.0-license.txt @@ -120,6 +120,11 @@ System.ComponentModel.Annotations (https://www.nuget.org/packages/System.Compone Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://spdx.org/licenses/MIT or in Licenses/MIT-license.txt +System.IO.Pipelines (https://www.nuget.org/packages/System.IO.Pipelines/9.0.1) + Authors: Microsoft + Copyright: © Microsoft Corporation. All rights reserved. + License: MIT License, full text can be found at https://spdx.org/licenses/MIT or in Licenses/MIT-license.txt + System.Memory (https://www.nuget.org/packages/System.Memory/4.5.5) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. @@ -140,12 +145,12 @@ System.Runtime.Loader (https://www.nuget.org/packages/System.Runtime.Loader/4.3. Copyright: © Microsoft Corporation. All rights reserved. License: MICROSOFT .NET LIBRARY, full text can be found at https://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm or in Licenses/ms-net-library-license.html -System.Text.Encodings.Web (https://www.nuget.org/packages/System.Text.Encodings.Web/8.0.0) +System.Text.Encodings.Web (https://www.nuget.org/packages/System.Text.Encodings.Web/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://spdx.org/licenses/MIT or in Licenses/MIT-license.txt -System.Text.Json (https://www.nuget.org/packages/System.Text.Json/8.0.5) +System.Text.Json (https://www.nuget.org/packages/System.Text.Json/9.0.1) Authors: Microsoft Copyright: © Microsoft Corporation. All rights reserved. License: MIT License, full text can be found at https://spdx.org/licenses/MIT or in Licenses/MIT-license.txt