diff --git a/Build/README.md b/Build/README.md index 88b78be9..a6e0411d 100644 --- a/Build/README.md +++ b/Build/README.md @@ -3,13 +3,13 @@ build.ps1 is designed to run on windows - PowerShell Desktop 5.1 -- PowerShell [7.5.0](https://github.com/PowerShell/PowerShell/releases/tag/v7.5.0-preview.4) for .net 9.0 tests -- PowerShell [7.3.0](https://github.com/PowerShell/PowerShell/releases/tag/v7.3.0) for .net 8.0 tests -- PowerShell [7.2.1](https://github.com/PowerShell/PowerShell/releases/tag/v7.2.1) for .net 6.0 tests +- PowerShell [7.6.0](https://github.com/PowerShell/PowerShell/releases/tag/v7.6.0-preview.4) for .net 10.0 tests +- PowerShell [7.5.3](https://github.com/PowerShell/PowerShell/releases/tag/v7.5.3) for .net 9.0 tests +- PowerShell [7.4.12](https://github.com/PowerShell/PowerShell/releases/tag/v7.4.12) for .net 8.0 tests - Install-Module -Name [InvokeBuild](https://www.powershellgallery.com/packages/InvokeBuild) - Install-Module -Name [ThirdPartyLibraries](https://www.powershellgallery.com/packages/ThirdPartyLibraries) - .net framework 4.7.2+ sdk -- .net 9.0 sdk +- .net 10.0 sdk - docker, switched to linux containers ## How to build diff --git a/Build/build.ps1 b/Build/build.ps1 index 32a9997b..73defe1d 100644 --- a/Build/build.ps1 +++ b/Build/build.ps1 @@ -1,6 +1,6 @@ #Requires -Version "7.0" -#Requires -Modules @{ ModuleName="InvokeBuild"; ModuleVersion="5.11.3" } -#Requires -Modules @{ ModuleName="ThirdPartyLibraries"; ModuleVersion="3.6.0" } +#Requires -Modules @{ ModuleName="InvokeBuild"; ModuleVersion="5.14.19" } +#Requires -Modules @{ ModuleName="ThirdPartyLibraries"; ModuleVersion="3.8.0" } [CmdletBinding()] param ( diff --git a/Build/create-images.ps1 b/Build/create-images.ps1 index 39b696d1..1ed2b3eb 100644 --- a/Build/create-images.ps1 +++ b/Build/create-images.ps1 @@ -1,5 +1,5 @@ #Requires -Version "7.0" -#Requires -Modules @{ ModuleName="InvokeBuild"; ModuleVersion="5.11.3" } +#Requires -Modules @{ ModuleName="InvokeBuild"; ModuleVersion="5.14.19" } Set-StrictMode -Version Latest diff --git a/Build/install-dependencies.ps1 b/Build/install-dependencies.ps1 index cae7a153..8a83d109 100644 --- a/Build/install-dependencies.ps1 +++ b/Build/install-dependencies.ps1 @@ -16,9 +16,8 @@ $ErrorActionPreference = 'Stop' . (Join-Path $PSScriptRoot 'scripts/Invoke-InstallModule.ps1') if ('.net' -in $List) { - Invoke-InstallDotNet -Version '6.0.422' Invoke-InstallDotNet -Version '8.0.403' - Invoke-InstallDotNet -Version '9.0.100-rc.2.24474.11' + Invoke-InstallDotNet -Version '9.0.300' $version = (Get-Content -Raw (Join-Path $PSScriptRoot '../Sources/global.json') | ConvertFrom-Json).sdk.version Invoke-InstallDotNet -Version $version diff --git a/Build/nuget.exe b/Build/nuget.exe deleted file mode 100644 index 4cbab240..00000000 Binary files a/Build/nuget.exe and /dev/null differ diff --git a/Build/scripts/MySqlConnector.dll b/Build/scripts/MySqlConnector.dll new file mode 100644 index 00000000..d3a4616d Binary files /dev/null and b/Build/scripts/MySqlConnector.dll differ diff --git a/Build/scripts/Npgsql.dll b/Build/scripts/Npgsql.dll new file mode 100644 index 00000000..4712c864 Binary files /dev/null and b/Build/scripts/Npgsql.dll differ diff --git a/Build/scripts/Start-Mssql.ps1 b/Build/scripts/Start-Mssql.ps1 index bcba0956..a69b1251 100644 --- a/Build/scripts/Start-Mssql.ps1 +++ b/Build/scripts/Start-Mssql.ps1 @@ -1,7 +1,7 @@ function Start-Mssql { param () - $container = Start-Container -Image sqldatabase/mssql:2017 -ContainerPort 1433 + $container = Start-Container -Image sqldatabase/mssql:2025 -ContainerPort 1433 $port = $container.port $builder = New-Object -TypeName System.Data.SqlClient.SqlConnectionStringBuilder diff --git a/Build/scripts/Start-Mysql.ps1 b/Build/scripts/Start-Mysql.ps1 index d3d2dcb1..09eedfe3 100644 --- a/Build/scripts/Start-Mysql.ps1 +++ b/Build/scripts/Start-Mysql.ps1 @@ -1,10 +1,11 @@ function Start-Mysql { param () - $sqlConnectordll = Join-Path $env:USERPROFILE '\.nuget\packages\mysqlconnector\1.3.10\lib\netstandard2.0\MySqlConnector.dll' + # https://www.nuget.org/packages/MySqlConnector/1.3.10 lib/netstandard2.0/MySqlConnector.dll + $sqlConnectordll = Join-Path $PSScriptRoot 'MySqlConnector.dll' Add-Type -Path $sqlConnectordll - $container = Start-Container -Image sqldatabase/mysql:8.0.25 -ContainerPort 3306 + $container = Start-Container -Image sqldatabase/mysql:9.4 -ContainerPort 3306 $builder = New-Object -TypeName MySqlConnector.MySqlConnectionStringBuilder $builder['Database'] = 'sqldatabasetest' diff --git a/Build/scripts/Start-Pgsql.ps1 b/Build/scripts/Start-Pgsql.ps1 index 7f7e342d..af2f047d 100644 --- a/Build/scripts/Start-Pgsql.ps1 +++ b/Build/scripts/Start-Pgsql.ps1 @@ -1,10 +1,11 @@ function Start-Pgsql { param () - $npgsqldll = Join-Path $env:USERPROFILE '.nuget\packages\npgsql\4.0.16\lib\netstandard2.0\Npgsql.dll' + # https://www.nuget.org/packages/Npgsql/4.0.16 lib/netstandard2.0/Npgsql.dll + $npgsqldll = Join-Path $PSScriptRoot 'Npgsql.dll' Add-Type -Path $npgsqldll - $container = Start-Container -Image sqldatabase/postgres:13.3 -ContainerPort 5432 + $container = Start-Container -Image sqldatabase/postgres:18.0 -ContainerPort 5432 $builder = New-Object -TypeName Npgsql.NpgsqlConnectionStringBuilder $builder['Database'] = 'sqldatabasetest' diff --git a/Build/show-powershell-images.ps1 b/Build/show-powershell-images.ps1 index 4b3eb013..46635e66 100644 --- a/Build/show-powershell-images.ps1 +++ b/Build/show-powershell-images.ps1 @@ -29,6 +29,7 @@ function Get-ShortVersion { } } +# https://learn.microsoft.com/en-us/powershell/scripting/install/powershell-support-lifecycle (Invoke-RestMethod -Uri 'https://mcr.microsoft.com/v2/powershell/tags/list').tags ` | Where-Object { ($_ -Like '[0-9]*') -or ($_ -Like 'preview-[0-9]*') } ` | Get-ShortVersion ` diff --git a/Build/tasks/build-tasks.ps1 b/Build/tasks/build-tasks.ps1 index 7886f57b..887674ae 100644 --- a/Build/tasks/build-tasks.ps1 +++ b/Build/tasks/build-tasks.ps1 @@ -19,7 +19,6 @@ task Initialize { $artifacts = Join-Path $bin 'artifacts' $script:settings = @{ - nugetexe = Join-Path $root 'Build\nuget.exe' sources = $sources bin = $bin artifacts = $artifacts @@ -30,7 +29,7 @@ task Initialize { repositoryCommitId = git rev-parse HEAD } - $script:frameworks = 'net472', 'net6.0', 'net8.0', 'net9.0' + $script:frameworks = 'net472', 'net8.0', 'net9.0', 'net10.0' $script:databases = 'MsSql', 'PgSql', 'MySql' Write-Output "PackageVersion: $($settings.version)" @@ -45,7 +44,7 @@ task Clean { } task Build { - $solutionFile = Join-Path $settings.sources 'SqlDatabase.sln' + $solutionFile = Join-Path $settings.sources 'SqlDatabase.slnx' exec { dotnet restore $solutionFile } exec { dotnet build $solutionFile -t:Rebuild -p:Configuration=Release } } @@ -62,8 +61,6 @@ task PackGlobalTool { -c Release ` -p:PackAsTool=true ` -p:GlobalTool=true ` - -p:PackageVersion=$($settings.version) ` - -p:RepositoryCommit=$($settings.repositoryCommitId) ` -o $($settings.artifacts) ` $projectFile } @@ -95,14 +92,13 @@ task PackNuget472 PackPoweShellModule, { } $nuspec = Join-Path $settings.sources 'SqlDatabase.Package\nuget\package.nuspec' - exec { - & $($settings.nugetexe) pack ` - -NoPackageAnalysis ` - -verbosity detailed ` - -OutputDirectory $($settings.artifacts) ` - -Version $($settings.version) ` - -p RepositoryCommit=$($settings.repositoryCommitId) ` - -p bin=$bin ` + exec { + dotnet pack ` + --no-build ` + --version=$($settings.version) ` + -p:RepositoryCommit=$($settings.repositoryCommitId) ` + -p:bin=$bin ` + -o $($settings.artifacts) ` $nuspec } } @@ -188,7 +184,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:preview-7.5-ubuntu-20.04') + , 'mcr.microsoft.com/powershell:7.5-ubuntu-24.04' + , 'mcr.microsoft.com/powershell:preview-7.6-ubuntu-24.04') $builds = @() foreach ($image in $images) { @@ -209,9 +206,9 @@ task PsCoreTest { task SdkToolTest { $images = $( - 'sqldatabase/dotnet_pwsh:6.0-sdk' - , 'sqldatabase/dotnet_pwsh:8.0-sdk' - , 'sqldatabase/dotnet_pwsh:9.0-sdk') + 'sqldatabase/dotnet_pwsh:8.0-sdk' + , 'sqldatabase/dotnet_pwsh:9.0-sdk' + , 'sqldatabase/dotnet_pwsh:10.0-sdk') $builds = @() foreach ($image in $images) { @@ -230,9 +227,9 @@ task SdkToolTest { task NetRuntimeLinuxTest { $testCases = $( - @{ targetFramework = 'net6.0'; image = 'sqldatabase/dotnet_pwsh:6.0-runtime' } - , @{ targetFramework = 'net8.0'; image = 'sqldatabase/dotnet_pwsh:8.0-runtime' } + @{ targetFramework = 'net8.0'; image = 'sqldatabase/dotnet_pwsh:8.0-runtime' } , @{ targetFramework = 'net9.0'; image = 'sqldatabase/dotnet_pwsh:9.0-runtime' } + , @{ targetFramework = 'net10.0'; image = 'sqldatabase/dotnet_pwsh:10.0-runtime' } ) $builds = @() diff --git a/Build/tasks/build-tasks.unit-test.ps1 b/Build/tasks/build-tasks.unit-test.ps1 index 8a0c2213..d08c6205 100644 --- a/Build/tasks/build-tasks.unit-test.ps1 +++ b/Build/tasks/build-tasks.unit-test.ps1 @@ -5,7 +5,7 @@ param( $Sources, [Parameter(Mandatory)] - [ValidateSet('net472', 'net6.0', 'net8.0', 'net9.0')] + [ValidateSet('net472', 'net8.0', 'net9.0', 'net10.0')] [string] $Framework ) diff --git a/Build/tasks/create-images-tasks.ps1 b/Build/tasks/create-images-tasks.ps1 index c47b62c0..a31bb182 100644 --- a/Build/tasks/create-images-tasks.ps1 +++ b/Build/tasks/create-images-tasks.ps1 @@ -1,10 +1,10 @@ task . ` - BuildDotnetSdk60 ` - , BuildDotnetSdk80 ` + BuildDotnetSdk80 ` , BuildDotnetSdk90 ` - , BuildDotnetRuntime60 ` + , BuildDotnetSdk100 ` , BuildDotnetRuntime80 ` , BuildDotnetRuntime90 ` + , BuildDotnetRuntime100 ` , BuildMsSqlDatabase ` , BuildPgSqlDatabase ` , BuildMySqlDatabase @@ -14,100 +14,100 @@ Enter-Build { } task BuildMsSqlDatabase { - $dockerfile = Join-Path $context 'image-mssql-2017.dockerfile' + $dockerfile = Join-Path $context 'image-mssql.dockerfile' exec { docker build ` --pull ` -f $dockerfile ` - -t sqldatabase/mssql:2017 ` + -t sqldatabase/mssql:2025 ` $context } } task BuildPgSqlDatabase { - $dockerfile = Join-Path $context 'image-postgres-133.dockerfile' + $dockerfile = Join-Path $context 'image-postgres.dockerfile' exec { docker build ` --pull ` -f $dockerfile ` - -t sqldatabase/postgres:13.3 ` + -t sqldatabase/postgres:18.0 ` $context } } task BuildMySqlDatabase { - $dockerfile = Join-Path $context 'image-mysql-8025.dockerfile' + $dockerfile = Join-Path $context 'image-mysql.dockerfile' exec { docker build ` --pull ` -f $dockerfile ` - -t sqldatabase/mysql:8.0.25 ` + -t sqldatabase/mysql:9.4 ` $context } } -task BuildDotnetSdk60 { - $dockerfile = Join-Path $context 'image-dotnet-sdk-6.0.dockerfile' +task BuildDotnetSdk80 { + $dockerfile = Join-Path $context 'image-dotnet-sdk-8.0.dockerfile' exec { docker build ` --pull ` -f $dockerfile ` - -t sqldatabase/dotnet_pwsh:6.0-sdk ` + -t sqldatabase/dotnet_pwsh:8.0-sdk ` . } } -task BuildDotnetRuntime60 { - $dockerfile = Join-Path $context 'image-dotnet-runtime-6.0.dockerfile' +task BuildDotnetRuntime80 { + $dockerfile = Join-Path $context 'image-dotnet-runtime-8.0.dockerfile' exec { docker build ` --pull ` -f $dockerfile ` - -t sqldatabase/dotnet_pwsh:6.0-runtime ` + -t sqldatabase/dotnet_pwsh:8.0-runtime ` . } } -task BuildDotnetSdk80 { - $dockerfile = Join-Path $context 'image-dotnet-sdk-8.0.dockerfile' +task BuildDotnetSdk90 { + $dockerfile = Join-Path $context 'image-dotnet-sdk-9.0.dockerfile' exec { docker build ` --pull ` -f $dockerfile ` - -t sqldatabase/dotnet_pwsh:8.0-sdk ` + -t sqldatabase/dotnet_pwsh:9.0-sdk ` . } } -task BuildDotnetRuntime80 { - $dockerfile = Join-Path $context 'image-dotnet-runtime-8.0.dockerfile' +task BuildDotnetRuntime90 { + $dockerfile = Join-Path $context 'image-dotnet-runtime-9.0.dockerfile' exec { docker build ` --pull ` -f $dockerfile ` - -t sqldatabase/dotnet_pwsh:8.0-runtime ` + -t sqldatabase/dotnet_pwsh:9.0-runtime ` . } } -task BuildDotnetSdk90 { - $dockerfile = Join-Path $context 'image-dotnet-sdk-9.0.dockerfile' +task BuildDotnetSdk100 { + $dockerfile = Join-Path $context 'image-dotnet-sdk-10.0.dockerfile' exec { docker build ` --pull ` -f $dockerfile ` - -t sqldatabase/dotnet_pwsh:9.0-sdk ` + -t sqldatabase/dotnet_pwsh:10.0-sdk ` . } } -task BuildDotnetRuntime90 { - $dockerfile = Join-Path $context 'image-dotnet-runtime-9.0.dockerfile' +task BuildDotnetRuntime100 { + $dockerfile = Join-Path $context 'image-dotnet-runtime-10.0.dockerfile' exec { docker build ` --pull ` -f $dockerfile ` - -t sqldatabase/dotnet_pwsh:9.0-runtime ` + -t sqldatabase/dotnet_pwsh:10.0-runtime ` . } } \ No newline at end of file diff --git a/Build/tests.txt b/Build/tests.txt deleted file mode 100644 index 3978cfe4..00000000 --- a/Build/tests.txt +++ /dev/null @@ -1,5 +0,0 @@ -mcr.microsoft.com/powershell:6.0.2-ubuntu-16.04 - Create-SqlDatabase : Invalid command line. ---> Could not load file or assembly 'System.Data.SqlClient, Version=4.4.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. The system cannot find the file specified. - -mcr.microsoft.com/powershell:6.0.4-ubuntu-16.04 - Create-SqlDatabase : Could not load file or assembly 'System.Configuration.ConfigurationManager, Version=4.0.1.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'. The system cannot find the file specified. \ No newline at end of file diff --git a/Build/third-party-libraries/configuration/appsettings.json b/Build/third-party-libraries/configuration/appsettings.json index ce053525..a3231345 100644 --- a/Build/third-party-libraries/configuration/appsettings.json +++ b/Build/third-party-libraries/configuration/appsettings.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.appsettings.json", "nuget.org": { "allowToUseLocalCache": true, "downloadPackageIntoRepository": false, @@ -65,5 +66,13 @@ ] } ] + }, + "repository": { + "remarks.md": { + "keepEmptyFile": false + }, + "third-party-notices.txt": { + "keepEmptyFile": "IfRequiredByLicense" + } } } \ No newline at end of file diff --git a/Build/third-party-libraries/configuration/nuget.org-readme-template.txt b/Build/third-party-libraries/configuration/nuget.org-readme-template.txt index dfb16168..3ae7fb2e 100644 --- a/Build/third-party-libraries/configuration/nuget.org-readme-template.txt +++ b/Build/third-party-libraries/configuration/nuget.org-readme-template.txt @@ -15,25 +15,27 @@ Description ----------- {{Description}} +{%- if Remarks -%} Remarks ----------- {{Remarks}} +{%- endif -%} {%- if ThirdPartyNotices -%} Third party notices ----------- {{ThirdPartyNotices}} -{%- endif -%} +{%- endif -%} +{%- if DependenciesCount > 0 -%} Dependencies {{DependenciesCount}} ----------- -{%- if DependenciesCount > 0 -%} |Name|Version| |----------|:----| {%- for dependency in Dependencies -%} |[{{dependency.Name}}]({{dependency.LocalHRef}})|{{dependency.Version}}| {%- endfor -%} -{%- endif -%} +{%- endif -%} *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/licenses/apache-2.0/index.json b/Build/third-party-libraries/licenses/apache-2.0/index.json index 5a59cf6c..b32aeef0 100644 --- a/Build/third-party-libraries/licenses/apache-2.0/index.json +++ b/Build/third-party-libraries/licenses/apache-2.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.license-index.json", "Code": "Apache-2.0", "FullName": "Apache License 2.0", "RequiresApproval": false, diff --git a/Build/third-party-libraries/licenses/bsd-2-clause/index.json b/Build/third-party-libraries/licenses/bsd-2-clause/index.json index 9c81112a..c3a9a6a4 100644 --- a/Build/third-party-libraries/licenses/bsd-2-clause/index.json +++ b/Build/third-party-libraries/licenses/bsd-2-clause/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.license-index.json", "Code": "BSD-2-Clause", "FullName": "BSD 2-Clause \"Simplified\" License", "RequiresApproval": false, diff --git a/Build/third-party-libraries/licenses/bsd-3-clause/index.json b/Build/third-party-libraries/licenses/bsd-3-clause/index.json index d9d573a1..dfd147fb 100644 --- a/Build/third-party-libraries/licenses/bsd-3-clause/index.json +++ b/Build/third-party-libraries/licenses/bsd-3-clause/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.license-index.json", "Code": "BSD-3-Clause", "FullName": "BSD 3-Clause \"New\" or \"Revised\" License", "RequiresApproval": false, diff --git a/Build/third-party-libraries/licenses/mit/index.json b/Build/third-party-libraries/licenses/mit/index.json index 37d07352..2eb83f44 100644 --- a/Build/third-party-libraries/licenses/mit/index.json +++ b/Build/third-party-libraries/licenses/mit/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.license-index.json", "Code": "MIT", "FullName": "MIT License", "RequiresApproval": false, diff --git a/Build/third-party-libraries/licenses/ms-net-library/index.json b/Build/third-party-libraries/licenses/ms-net-library/index.json index ae7b7288..aae56821 100644 --- a/Build/third-party-libraries/licenses/ms-net-library/index.json +++ b/Build/third-party-libraries/licenses/ms-net-library/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.license-index.json", "Code": "ms-net-library", "FullName": "MICROSOFT .NET LIBRARY", "RequiresApproval": false, diff --git a/Build/third-party-libraries/licenses/postgresql/index.json b/Build/third-party-libraries/licenses/postgresql/index.json index fd5bb3de..96a9dfc7 100644 --- a/Build/third-party-libraries/licenses/postgresql/index.json +++ b/Build/third-party-libraries/licenses/postgresql/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.license-index.json", "Code": "PostgreSQL", "FullName": "PostgreSQL License", "RequiresApproval": false, diff --git a/Build/third-party-libraries/packages/nuget.org/castle.core/5.1.1/index.json b/Build/third-party-libraries/packages/nuget.org/castle.core/5.1.1/index.json index ccd65c2b..d1667038 100644 --- a/Build/third-party-libraries/packages/nuget.org/castle.core/5.1.1/index.json +++ b/Build/third-party-libraries/packages/nuget.org/castle.core/5.1.1/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "Apache-2.0", @@ -31,13 +32,11 @@ }, { "Subject": "repository", - "Code": null, "HRef": "https://github.com/castleproject/Core", "Description": "License code NOASSERTION" }, { "Subject": "project", - "Code": null, "HRef": "http://www.castleproject.org/" } ] diff --git a/Build/third-party-libraries/packages/nuget.org/castle.core/5.1.1/readme.md b/Build/third-party-libraries/packages/nuget.org/castle.core/5.1.1/readme.md index 1de67e47..d92178cb 100644 --- a/Build/third-party-libraries/packages/nuget.org/castle.core/5.1.1/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/castle.core/5.1.1/readme.md @@ -15,11 +15,6 @@ Description ----------- Castle Core, including DynamicProxy, Logging Abstractions and DictionaryAdapter -Remarks ------------ -no remarks - - Dependencies 2 ----------- diff --git a/Build/third-party-libraries/packages/nuget.org/castle.core/5.1.1/remarks.md b/Build/third-party-libraries/packages/nuget.org/castle.core/5.1.1/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/castle.core/5.1.1/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/castle.core/5.1.1/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.1.35/remarks.md b/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.1.35/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.1.35/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.1.35/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.1.35/index.json b/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.1.66/index.json similarity index 83% rename from Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.1.35/index.json rename to Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.1.66/index.json index 10809c68..f981888e 100644 --- a/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.1.35/index.json +++ b/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.1.66/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "Apache-2.0", @@ -9,8 +10,8 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ + "net10.0", "net472", - "net6.0", "net8.0", "net9.0" ] diff --git a/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.1.35/package.nuspec b/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.1.66/package.nuspec similarity index 69% rename from Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.1.35/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.1.66/package.nuspec index 7e3a1c4a..97d090e3 100644 --- a/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.1.35/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.1.66/package.nuspec @@ -2,7 +2,7 @@ Dapper.StrongName - 2.1.35 + 2.1.66 Dapper (Strong Named) Sam Saffron,Marc Gravell,Nick Craver Sam Saffron,Marc Gravell,Nick Craver @@ -10,16 +10,18 @@ Apache-2.0 https://licenses.nuget.org/Apache-2.0 https://github.com/DapperLib/Dapper - A high performance Micro-ORM supporting SQL Server, MySQL, Sqlite, SqlCE, Firebird etc.. + A high performance Micro-ORM supporting SQL Server, MySQL, Sqlite, SqlCE, Firebird etc. Major Sponsor: Dapper Plus from ZZZ Projects. https://dapperlib.github.io/Dapper/ 2019 Stack Exchange, Inc. orm sql micro-orm - + - - - + + + + + diff --git a/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.1.35/project-License.txt b/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.1.66/project-License.txt similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.1.35/project-License.txt rename to Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.1.66/project-License.txt diff --git a/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.1.35/readme.md b/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.1.66/readme.md similarity index 69% rename from Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.1.35/readme.md rename to Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.1.66/readme.md index 0dab994f..ef6bf325 100644 --- a/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.1.35/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.1.66/readme.md @@ -1,9 +1,9 @@ -Dapper.StrongName [2.1.35](https://www.nuget.org/packages/Dapper.StrongName/2.1.35) +Dapper.StrongName [2.1.66](https://www.nuget.org/packages/Dapper.StrongName/2.1.66) -------------------- Used by: SqlDatabase internal -Target frameworks: net472, net6.0, net8.0, net9.0 +Target frameworks: net10.0, net472, net8.0, net9.0 License: [Apache-2.0](../../../../licenses/apache-2.0) @@ -13,15 +13,6 @@ License: [Apache-2.0](../../../../licenses/apache-2.0) Description ----------- -A high performance Micro-ORM supporting SQL Server, MySQL, Sqlite, SqlCE, Firebird etc.. - -Remarks ------------ -no remarks - - -Dependencies 0 ------------ - +A high performance Micro-ORM supporting SQL Server, MySQL, Sqlite, SqlCE, Firebird etc. Major Sponsor: Dapper Plus from ZZZ Projects. *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.1.35/repository-License.txt b/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.1.66/repository-License.txt similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.1.35/repository-License.txt rename to Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.1.66/repository-License.txt diff --git a/Build/third-party-libraries/packages/nuget.org/diffengine/11.3.0/index.json b/Build/third-party-libraries/packages/nuget.org/diffengine/11.3.0/index.json index 524185ce..736eb68b 100644 --- a/Build/third-party-libraries/packages/nuget.org/diffengine/11.3.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/diffengine/11.3.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", diff --git a/Build/third-party-libraries/packages/nuget.org/diffengine/11.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/diffengine/11.3.0/readme.md index 01116770..cb38403f 100644 --- a/Build/third-party-libraries/packages/nuget.org/diffengine/11.3.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/diffengine/11.3.0/readme.md @@ -15,11 +15,6 @@ Description ----------- Launches diff tools based on file extensions. Designed to be consumed by snapshot testing libraries. -Remarks ------------ -no remarks - - Dependencies 2 ----------- diff --git a/Build/third-party-libraries/packages/nuget.org/diffengine/11.3.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/diffengine/11.3.0/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/diffengine/11.3.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/diffengine/11.3.0/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/emptyfiles/4.4.0/index.json b/Build/third-party-libraries/packages/nuget.org/emptyfiles/4.4.0/index.json index ee532dc8..d1c947fa 100644 --- a/Build/third-party-libraries/packages/nuget.org/emptyfiles/4.4.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/emptyfiles/4.4.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", diff --git a/Build/third-party-libraries/packages/nuget.org/emptyfiles/4.4.0/readme.md b/Build/third-party-libraries/packages/nuget.org/emptyfiles/4.4.0/readme.md index d1cf40c7..d569455e 100644 --- a/Build/third-party-libraries/packages/nuget.org/emptyfiles/4.4.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/emptyfiles/4.4.0/readme.md @@ -15,11 +15,6 @@ Description ----------- A collection of minimal binary files. -Remarks ------------ -no remarks - - Dependencies 1 ----------- diff --git a/Build/third-party-libraries/packages/nuget.org/emptyfiles/4.4.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/emptyfiles/4.4.0/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/emptyfiles/4.4.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/emptyfiles/4.4.0/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.applicationinsights/2.23.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.applicationinsights/2.23.0/index.json new file mode 100644 index 00000000..f80b7fc9 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.applicationinsights/2.23.0/index.json @@ -0,0 +1,42 @@ +{ + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", + "Source": "https://api.nuget.org/v3/index.json", + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "net10.0", + "net472", + "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/Build/third-party-libraries/packages/nuget.org/microsoft.applicationinsights/2.23.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.applicationinsights/2.23.0/package.nuspec new file mode 100644 index 00000000..3ca955d5 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.applicationinsights/2.23.0/package.nuspec @@ -0,0 +1,37 @@ + + + + Microsoft.ApplicationInsights + 2.23.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/Build/third-party-libraries/packages/nuget.org/microsoft.applicationinsights/2.23.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.applicationinsights/2.23.0/readme.md new file mode 100644 index 00000000..f6dabb7c --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.applicationinsights/2.23.0/readme.md @@ -0,0 +1,25 @@ +Microsoft.ApplicationInsights [2.23.0](https://www.nuget.org/packages/Microsoft.ApplicationInsights/2.23.0) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net10.0, net472, 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 + +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/Build/third-party-libraries/packages/nuget.org/microsoft.applicationinsights/2.23.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.applicationinsights/2.23.0/repository-LICENSE new file mode 100644 index 00000000..3423e958 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.applicationinsights/2.23.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/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/index.json index 403b396c..7ead5af2 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/readme.md index b658939a..cbabdd5f 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/readme.md @@ -20,11 +20,6 @@ System.IAsyncDisposable System.Collections.Generic.IAsyncEnumerable System.Collections.Generic.IAsyncEnumerator -Remarks ------------ -no remarks - - Dependencies 1 ----------- diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/9.0.1/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/9.0.1/index.json new file mode 100644 index 00000000..91dbb1f1 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/9.0.1/index.json @@ -0,0 +1,42 @@ +{ + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", + "Source": "https://api.nuget.org/v3/index.json", + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "net10.0", + "net472", + "net8.0", + "net9.0" + ], + "Dependencies": [ + { + "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/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/7.0.1/package-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/9.0.1/package-LICENSE.TXT similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/7.0.1/package-LICENSE.TXT rename to Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/9.0.1/package-LICENSE.TXT diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/9.0.1/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/9.0.1/package.nuspec new file mode 100644 index 00000000..5ee701e1 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/9.0.1/package.nuspec @@ -0,0 +1,27 @@ + + + + Microsoft.Bcl.AsyncInterfaces + 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. + https://go.microsoft.com/fwlink/?LinkID=799421 + © Microsoft Corporation. All rights reserved. + true + + + + + + + + + + + + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/9.0.1/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/9.0.1/readme.md new file mode 100644 index 00000000..9a63f0d3 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/9.0.1/readme.md @@ -0,0 +1,25 @@ +Microsoft.Bcl.AsyncInterfaces [9.0.1](https://www.nuget.org/packages/Microsoft.Bcl.AsyncInterfaces/9.0.1) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net10.0, net472, net8.0, net9.0 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://licenses.nuget.org/MIT) +- repository license: [MIT](https://github.com/dotnet/runtime) +- project license: [Unknown](https://dot.net/) + +Description +----------- +Provides the 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. + +Dependencies 1 +----------- + +|Name|Version| +|----------|:----| +|[System.Threading.Tasks.Extensions](../../../../packages/nuget.org/system.threading.tasks.extensions/4.5.4)|4.5.4| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/7.0.1/repository-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/9.0.1/repository-LICENSE.TXT similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/7.0.1/repository-LICENSE.TXT rename to Build/third-party-libraries/packages/nuget.org/microsoft.bcl.asyncinterfaces/9.0.1/repository-LICENSE.TXT diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.hashcode/1.1.1/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.hashcode/1.1.1/index.json index bd684b22..dfddc689 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.hashcode/1.1.1/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.hashcode/1.1.1/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.hashcode/1.1.1/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.hashcode/1.1.1/readme.md index 365b66b7..989c332c 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.hashcode/1.1.1/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.hashcode/1.1.1/readme.md @@ -19,13 +19,4 @@ System.HashCode 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/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.hashcode/1.1.1/remarks.md b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.hashcode/1.1.1/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.hashcode/1.1.1/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.bcl.hashcode/1.1.1/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.11.1/remarks.md b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.11.1/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.11.1/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.11.1/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.11.1/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.0.0/index.json similarity index 81% rename from Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.11.1/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.0.0/index.json index 9cd59245..93dd4778 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.11.1/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.0.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", @@ -9,8 +10,8 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ + "net10.0", "net472", - "net6.0", "net8.0", "net9.0" ] diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.11.1/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.0.0/package.nuspec similarity index 88% rename from Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.11.1/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.0.0/package.nuspec index d3434865..41494920 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.11.1/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.0.0/package.nuspec @@ -2,7 +2,7 @@ Microsoft.CodeCoverage - 17.11.1 + 18.0.0 Microsoft true MIT @@ -13,10 +13,10 @@ © Microsoft Corporation. All rights reserved. vstest visual-studio unittest testplatform mstest microsoft test testing codecoverage code-coverage true - + - + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.11.1/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.0.0/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.11.1/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.0.0/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.11.1/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.0.0/readme.md similarity index 68% rename from Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.11.1/readme.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.0.0/readme.md index 16af4cc3..49e157b2 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.11.1/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.0.0/readme.md @@ -1,9 +1,9 @@ -Microsoft.CodeCoverage [17.11.1](https://www.nuget.org/packages/Microsoft.CodeCoverage/17.11.1) +Microsoft.CodeCoverage [18.0.0](https://www.nuget.org/packages/Microsoft.CodeCoverage/18.0.0) -------------------- Used by: SqlDatabase internal -Target frameworks: net472, net6.0, net8.0, net9.0 +Target frameworks: net10.0, net472, net8.0, net9.0 License: [MIT](../../../../licenses/mit) @@ -15,13 +15,4 @@ Description ----------- Microsoft.CodeCoverage package brings infra for collecting code coverage from vstest.console.exe and "dotnet test". -Remarks ------------ -no remarks - - -Dependencies 0 ------------ - - *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.11.1/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.0.0/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.11.1/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/18.0.0/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.csharp/4.7.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.csharp/4.7.0/index.json index 6786e835..3f37e52f 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.csharp/4.7.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.csharp/4.7.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", @@ -21,7 +22,6 @@ }, { "Subject": "project", - "Code": null, "HRef": "https://github.com/dotnet/corefx" } ] diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.csharp/4.7.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.csharp/4.7.0/readme.md index 9a3779c9..97238a71 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.csharp/4.7.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.csharp/4.7.0/readme.md @@ -23,13 +23,4 @@ Microsoft.CSharp.RuntimeBinder.CSharpBinderFlags 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/Build/third-party-libraries/packages/nuget.org/microsoft.csharp/4.7.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/microsoft.csharp/4.7.0/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.csharp/4.7.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.csharp/4.7.0/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.0/index.json index d7cf2d77..aca0aac4 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.0/readme.md index cb21da56..e763fd0c 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.0/readme.md @@ -18,11 +18,6 @@ Abstractions for dependency injection. Commonly Used Types: Microsoft.Extensions.DependencyInjection.IServiceCollection -Remarks ------------ -no remarks - - Dependencies 2 ----------- diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.0/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.0/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2/index.json new file mode 100644 index 00000000..72378b2f --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2/index.json @@ -0,0 +1,43 @@ +{ + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", + "Source": "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-public/nuget/v3/index.json", + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": false, + "TargetFrameworks": [ + "netstandard2.0" + ], + "Dependencies": [ + { + "Name": "Microsoft.Bcl.AsyncInterfaces", + "Version": "8.0.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/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/7.0.2/package-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2/package-LICENSE.TXT similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/7.0.2/package-LICENSE.TXT rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2/package-LICENSE.TXT diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2/package.nuspec new file mode 100644 index 00000000..7dbf41b5 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2/package.nuspec @@ -0,0 +1,35 @@ + + + + Microsoft.Extensions.DependencyInjection.Abstractions + 8.0.2 + Microsoft + MIT + https://licenses.nuget.org/MIT + Icon.png + PACKAGE.md + https://dot.net/ + Abstractions for dependency injection. + +Commonly Used Types: +Microsoft.Extensions.DependencyInjection.IServiceCollection + https://go.microsoft.com/fwlink/?LinkID=799421 + © Microsoft Corporation. All rights reserved. + true + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2/readme.md new file mode 100644 index 00000000..5303c8db --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2/readme.md @@ -0,0 +1,29 @@ +Microsoft.Extensions.DependencyInjection.Abstractions [8.0.2](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2) +-------------------- + +Used by: SqlDatabase + +Target frameworks: netstandard2.0 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://licenses.nuget.org/MIT) +- repository license: [MIT](https://github.com/dotnet/runtime) +- project license: [Unknown](https://dot.net/) + +Description +----------- +Abstractions for dependency injection. + +Commonly Used Types: +Microsoft.Extensions.DependencyInjection.IServiceCollection + +Dependencies 2 +----------- + +|Name|Version| +|----------|:----| +|[Microsoft.Bcl.AsyncInterfaces](../../../../packages/nuget.org/microsoft.bcl.asyncinterfaces/8.0.0)|8.0.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/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/7.0.2/repository-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2/repository-LICENSE.TXT similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/7.0.2/repository-LICENSE.TXT rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2/repository-LICENSE.TXT diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/7.0.1/remarks.md b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/7.0.1/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/7.0.1/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/7.0.1/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.0/index.json index f67db8c6..a5d8eb34 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.0/readme.md index a261925c..05dc2066 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.0/readme.md @@ -24,11 +24,6 @@ Microsoft.Extensions.Logging.Logger Microsoft.Extensions.Logging.LoggerMessage Microsoft.Extensions.Logging.Abstractions.NullLogger -Remarks ------------ -no remarks - - Dependencies 3 ----------- diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.0/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.0/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.2/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.2/index.json new file mode 100644 index 00000000..b2a36716 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.2/index.json @@ -0,0 +1,51 @@ +{ + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", + "Source": "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-public/nuget/v3/index.json", + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": false, + "TargetFrameworks": [ + "netstandard2.0" + ], + "Dependencies": [ + { + "Name": "Microsoft.Extensions.DependencyInjection.Abstractions", + "Version": "8.0.2" + }, + { + "Name": "System.Buffers", + "Version": "4.5.1" + }, + { + "Name": "System.Diagnostics.DiagnosticSource", + "Version": "8.0.1" + }, + { + "Name": "System.Memory", + "Version": "4.5.5" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://licenses.nuget.org/MIT" + }, + { + "Subject": "repository", + "Code": "MIT", + "HRef": "https://github.com/dotnet/runtime" + }, + { + "Subject": "project", + "HRef": "https://dot.net/" + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.2/package-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.2/package-LICENSE.TXT new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.2/package-LICENSE.TXT @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/7.0.1/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.2/package.nuspec similarity index 54% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/7.0.1/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.2/package.nuspec index 5fbb9a78..86605841 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/7.0.1/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.2/package.nuspec @@ -2,11 +2,12 @@ Microsoft.Extensions.Logging.Abstractions - 7.0.1 + 8.0.2 Microsoft MIT https://licenses.nuget.org/MIT Icon.png + PACKAGE.md https://dot.net/ Logging abstractions for Microsoft.Extensions.Logging. @@ -21,15 +22,28 @@ Microsoft.Extensions.Logging.Abstractions.NullLogger https://go.microsoft.com/fwlink/?LinkID=799421 © Microsoft Corporation. All rights reserved. true - + + + - - + + + + + + + + + + + + + diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/7.0.1/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.2/readme.md similarity index 69% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/7.0.1/readme.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.2/readme.md index b1eda942..72348b4d 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/7.0.1/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.2/readme.md @@ -1,4 +1,4 @@ -Microsoft.Extensions.Logging.Abstractions [7.0.1](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Abstractions/7.0.1) +Microsoft.Extensions.Logging.Abstractions [8.0.2](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Abstractions/8.0.2) -------------------- Used by: SqlDatabase @@ -24,17 +24,14 @@ Microsoft.Extensions.Logging.Logger Microsoft.Extensions.Logging.LoggerMessage Microsoft.Extensions.Logging.Abstractions.NullLogger -Remarks ------------ -no remarks - - -Dependencies 2 +Dependencies 4 ----------- |Name|Version| |----------|:----| +|[Microsoft.Extensions.DependencyInjection.Abstractions](../../../../packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2)|8.0.2| |[System.Buffers](../../../../packages/nuget.org/system.buffers/4.5.1)|4.5.1| +|[System.Diagnostics.DiagnosticSource](../../../../packages/nuget.org/system.diagnostics.diagnosticsource/8.0.1)|8.0.1| |[System.Memory](../../../../packages/nuget.org/system.memory/4.5.5)|4.5.5| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.2/repository-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.2/repository-LICENSE.TXT new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.2/repository-LICENSE.TXT @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/remarks.md b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.0.0/index.json similarity index 79% rename from Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.0.0/index.json index 2e2acc78..d6143704 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.0.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", @@ -9,19 +10,19 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ + "net10.0", "net472", - "net6.0", "net8.0", "net9.0" ], "Dependencies": [ { "Name": "Microsoft.CodeCoverage", - "Version": "17.11.1" + "Version": "18.0.0" }, { "Name": "Microsoft.TestPlatform.TestHost", - "Version": "17.11.1" + "Version": "18.0.0" } ] } diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.0.0/package.nuspec similarity index 76% rename from Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.0.0/package.nuspec index b3355f4c..c89cf4ae 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.0.0/package.nuspec @@ -2,7 +2,7 @@ Microsoft.NET.Test.Sdk - 17.11.1 + 18.0.0 Microsoft true MIT @@ -13,15 +13,16 @@ © Microsoft Corporation. All rights reserved. vstest visual-studio unittest testplatform mstest microsoft test testing true - + - - - + + + - + + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.0.0/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.0.0/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.0.0/readme.md similarity index 69% rename from Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/readme.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.0.0/readme.md index abd47a44..c9f6f45f 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.0.0/readme.md @@ -1,9 +1,9 @@ -Microsoft.NET.Test.Sdk [17.11.1](https://www.nuget.org/packages/Microsoft.NET.Test.Sdk/17.11.1) +Microsoft.NET.Test.Sdk [18.0.0](https://www.nuget.org/packages/Microsoft.NET.Test.Sdk/18.0.0) -------------------- Used by: SqlDatabase internal -Target frameworks: net472, net6.0, net8.0, net9.0 +Target frameworks: net10.0, net472, net8.0, net9.0 License: [MIT](../../../../licenses/mit) @@ -15,17 +15,12 @@ Description ----------- The MSbuild targets and properties for building .NET test projects. -Remarks ------------ -no remarks - - 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/18.0.0)|18.0.0| +|[Microsoft.TestPlatform.TestHost](../../../../packages/nuget.org/microsoft.testplatform.testhost/18.0.0)|18.0.0| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.0.0/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.11.1/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/18.0.0/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.7.3/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.7.3/index.json new file mode 100644 index 00000000..4a895ec7 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.7.3/index.json @@ -0,0 +1,47 @@ +{ + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", + "Source": "https://api.nuget.org/v3/index.json", + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "net10.0", + "net472", + "net8.0", + "net9.0" + ], + "Dependencies": [ + { + "Name": "Microsoft.ApplicationInsights", + "Version": "2.23.0" + }, + { + "Name": "Microsoft.Testing.Platform", + "Version": "1.7.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/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.7.3/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.7.3/package.nuspec new file mode 100644 index 00000000..074a93f2 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.7.3/package.nuspec @@ -0,0 +1,43 @@ + + + + Microsoft.Testing.Extensions.Telemetry + 1.7.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/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.7.3/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.7.3/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.7.3/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.7.3/readme.md new file mode 100644 index 00000000..4d300f43 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.7.3/readme.md @@ -0,0 +1,28 @@ +Microsoft.Testing.Extensions.Telemetry [1.7.3](https://www.nuget.org/packages/Microsoft.Testing.Extensions.Telemetry/1.7.3) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net10.0, net472, 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. + +Dependencies 2 +----------- + +|Name|Version| +|----------|:----| +|[Microsoft.ApplicationInsights](../../../../packages/nuget.org/microsoft.applicationinsights/2.23.0)|2.23.0| +|[Microsoft.Testing.Platform](../../../../packages/nuget.org/microsoft.testing.platform/1.7.3)|1.7.3| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.7.3/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.telemetry/1.7.3/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.7.3/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.7.3/index.json new file mode 100644 index 00000000..53192d09 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.7.3/index.json @@ -0,0 +1,43 @@ +{ + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", + "Source": "https://api.nuget.org/v3/index.json", + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "net10.0", + "net472", + "net8.0", + "net9.0" + ], + "Dependencies": [ + { + "Name": "Microsoft.Testing.Platform", + "Version": "1.7.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/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.7.3/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.7.3/package.nuspec new file mode 100644 index 00000000..22a0aac2 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.7.3/package.nuspec @@ -0,0 +1,36 @@ + + + + Microsoft.Testing.Extensions.TrxReport.Abstractions + 1.7.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/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.7.3/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.7.3/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.7.3/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.7.3/readme.md new file mode 100644 index 00000000..303ddf7b --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.7.3/readme.md @@ -0,0 +1,25 @@ +Microsoft.Testing.Extensions.TrxReport.Abstractions [1.7.3](https://www.nuget.org/packages/Microsoft.Testing.Extensions.TrxReport.Abstractions/1.7.3) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net10.0, net472, 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 + +Dependencies 1 +----------- + +|Name|Version| +|----------|:----| +|[Microsoft.Testing.Platform](../../../../packages/nuget.org/microsoft.testing.platform/1.7.3)|1.7.3| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.7.3/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.7.3/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.7.3/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.7.3/index.json new file mode 100644 index 00000000..90d085c7 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.7.3/index.json @@ -0,0 +1,59 @@ +{ + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", + "Source": "https://api.nuget.org/v3/index.json", + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "net10.0", + "net472", + "net8.0", + "net9.0" + ], + "Dependencies": [ + { + "Name": "Microsoft.TestPlatform.AdapterUtilities", + "Version": "17.13.0" + }, + { + "Name": "Microsoft.TestPlatform.ObjectModel", + "Version": "18.0.0" + }, + { + "Name": "Microsoft.Testing.Extensions.Telemetry", + "Version": "1.7.3" + }, + { + "Name": "Microsoft.Testing.Extensions.TrxReport.Abstractions", + "Version": "1.7.3" + }, + { + "Name": "Microsoft.Testing.Platform", + "Version": "1.7.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/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.7.3/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.7.3/package.nuspec new file mode 100644 index 00000000..9d05dfac --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.7.3/package.nuspec @@ -0,0 +1,58 @@ + + + + Microsoft.Testing.Extensions.VSTestBridge + 1.7.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/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.7.3/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.7.3/project-LICENSE new file mode 100644 index 00000000..d859446c --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.7.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/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.7.3/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.7.3/readme.md new file mode 100644 index 00000000..479e51f5 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.7.3/readme.md @@ -0,0 +1,31 @@ +Microsoft.Testing.Extensions.VSTestBridge [1.7.3](https://www.nuget.org/packages/Microsoft.Testing.Extensions.VSTestBridge/1.7.3) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net10.0, net472, 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. + +Dependencies 5 +----------- + +|Name|Version| +|----------|:----| +|[Microsoft.Testing.Extensions.Telemetry](../../../../packages/nuget.org/microsoft.testing.extensions.telemetry/1.7.3)|1.7.3| +|[Microsoft.Testing.Extensions.TrxReport.Abstractions](../../../../packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.7.3)|1.7.3| +|[Microsoft.Testing.Platform](../../../../packages/nuget.org/microsoft.testing.platform/1.7.3)|1.7.3| +|[Microsoft.TestPlatform.AdapterUtilities](../../../../packages/nuget.org/microsoft.testplatform.adapterutilities/17.13.0)|17.13.0| +|[Microsoft.TestPlatform.ObjectModel](../../../../packages/nuget.org/microsoft.testplatform.objectmodel/18.0.0)|18.0.0| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.7.3/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.7.3/repository-LICENSE new file mode 100644 index 00000000..d859446c --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.7.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/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.7.3/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.7.3/index.json new file mode 100644 index 00000000..53192d09 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.7.3/index.json @@ -0,0 +1,43 @@ +{ + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", + "Source": "https://api.nuget.org/v3/index.json", + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "net10.0", + "net472", + "net8.0", + "net9.0" + ], + "Dependencies": [ + { + "Name": "Microsoft.Testing.Platform", + "Version": "1.7.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/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.7.3/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.7.3/package.nuspec new file mode 100644 index 00000000..fee2b272 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.7.3/package.nuspec @@ -0,0 +1,38 @@ + + + + Microsoft.Testing.Platform.MSBuild + 1.7.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/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.7.3/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.7.3/project-LICENSE new file mode 100644 index 00000000..d859446c --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.7.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/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.7.3/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.7.3/readme.md new file mode 100644 index 00000000..756250c6 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.7.3/readme.md @@ -0,0 +1,27 @@ +Microsoft.Testing.Platform.MSBuild [1.7.3](https://www.nuget.org/packages/Microsoft.Testing.Platform.MSBuild/1.7.3) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net10.0, net472, 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. + +Dependencies 1 +----------- + +|Name|Version| +|----------|:----| +|[Microsoft.Testing.Platform](../../../../packages/nuget.org/microsoft.testing.platform/1.7.3)|1.7.3| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.7.3/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.7.3/repository-LICENSE new file mode 100644 index 00000000..d859446c --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform.msbuild/1.7.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/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/1.7.3/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/1.7.3/index.json new file mode 100644 index 00000000..0221183f --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/1.7.3/index.json @@ -0,0 +1,37 @@ +{ + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", + "Source": "https://api.nuget.org/v3/index.json", + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "net10.0", + "net472", + "net8.0", + "net9.0" + ] + } + ], + "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/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/1.7.3/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/1.7.3/package.nuspec new file mode 100644 index 00000000..701a1f77 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/1.7.3/package.nuspec @@ -0,0 +1,28 @@ + + + + Microsoft.Testing.Platform + 1.7.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/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/1.7.3/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/1.7.3/project-LICENSE new file mode 100644 index 00000000..d859446c --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/1.7.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/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/1.7.3/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/1.7.3/readme.md new file mode 100644 index 00000000..41154753 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/1.7.3/readme.md @@ -0,0 +1,20 @@ +Microsoft.Testing.Platform [1.7.3](https://www.nuget.org/packages/Microsoft.Testing.Platform/1.7.3) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net10.0, net472, 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. + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/1.7.3/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/1.7.3/repository-LICENSE new file mode 100644 index 00000000..d859446c --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testing.platform/1.7.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/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/17.13.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/17.13.0/index.json new file mode 100644 index 00000000..93dd4778 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/17.13.0/index.json @@ -0,0 +1,37 @@ +{ + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", + "Source": "https://api.nuget.org/v3/index.json", + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "net10.0", + "net472", + "net8.0", + "net9.0" + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://licenses.nuget.org/MIT" + }, + { + "Subject": "repository", + "Code": "MIT", + "HRef": "https://github.com/microsoft/vstest" + }, + { + "Subject": "project", + "Code": "MIT", + "HRef": "https://github.com/microsoft/vstest" + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/17.13.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/17.13.0/package.nuspec new file mode 100644 index 00000000..87646881 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/17.13.0/package.nuspec @@ -0,0 +1,25 @@ + + + + Microsoft.TestPlatform.AdapterUtilities + 17.13.0 + Microsoft + true + MIT + https://licenses.nuget.org/MIT + Icon.png + https://github.com/microsoft/vstest + Includes helpers for the Test Platform's modern functionality such as standardized fully qualified names and hierarchical test case names. + © Microsoft Corporation. All rights reserved. + vstest visual-studio unittest testplatform mstest microsoft test testing + true + + + + + + + + + + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/17.13.0/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/17.13.0/project-LICENSE new file mode 100644 index 00000000..d859446c --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/17.13.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/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/17.13.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/17.13.0/readme.md new file mode 100644 index 00000000..4f67dd28 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/17.13.0/readme.md @@ -0,0 +1,18 @@ +Microsoft.TestPlatform.AdapterUtilities [17.13.0](https://www.nuget.org/packages/Microsoft.TestPlatform.AdapterUtilities/17.13.0) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net10.0, net472, net8.0, net9.0 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://licenses.nuget.org/MIT) +- repository license: [MIT](https://github.com/microsoft/vstest) +- project license: [MIT](https://github.com/microsoft/vstest) + +Description +----------- +Includes helpers for the Test Platform's modern functionality such as standardized fully qualified names and hierarchical test case names. + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/17.13.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/17.13.0/repository-LICENSE new file mode 100644 index 00000000..d859446c --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.adapterutilities/17.13.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/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/remarks.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.13.0/index.json similarity index 83% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.13.0/index.json index d39f61ba..3109754f 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.13.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", @@ -9,8 +10,8 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ + "net10.0", "net472", - "net6.0", "net8.0", "net9.0" ], diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.13.0/package.nuspec similarity index 95% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.13.0/package.nuspec index 49cf87e7..9fc0832b 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.13.0/package.nuspec @@ -2,7 +2,7 @@ Microsoft.TestPlatform.ObjectModel - 17.11.1 + 17.13.0 Microsoft true MIT @@ -13,7 +13,7 @@ © Microsoft Corporation. All rights reserved. vstest visual-studio unittest testplatform mstest microsoft test testing true - + diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.13.0/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.13.0/project-LICENSE new file mode 100644 index 00000000..d859446c --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.13.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/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.13.0/readme.md similarity index 73% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/readme.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.13.0/readme.md index c60431a0..d8ac17bb 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.13.0/readme.md @@ -1,9 +1,9 @@ -Microsoft.TestPlatform.ObjectModel [17.11.1](https://www.nuget.org/packages/Microsoft.TestPlatform.ObjectModel/17.11.1) +Microsoft.TestPlatform.ObjectModel [17.13.0](https://www.nuget.org/packages/Microsoft.TestPlatform.ObjectModel/17.13.0) -------------------- Used by: SqlDatabase internal -Target frameworks: net472, net6.0, net8.0, net9.0 +Target frameworks: net10.0, net472, net8.0, net9.0 License: [MIT](../../../../licenses/mit) @@ -15,11 +15,6 @@ Description ----------- The Microsoft Test Platform Object Model. -Remarks ------------ -no remarks - - Dependencies 1 ----------- diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.13.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.13.0/repository-LICENSE new file mode 100644 index 00000000..d859446c --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.13.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/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.0.0/index.json new file mode 100644 index 00000000..cbcede04 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.0.0/index.json @@ -0,0 +1,43 @@ +{ + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", + "Source": "https://api.nuget.org/v3/index.json", + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "net10.0", + "net472", + "net8.0", + "net9.0" + ], + "Dependencies": [ + { + "Name": "System.Reflection.Metadata", + "Version": "8.0.0" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://licenses.nuget.org/MIT" + }, + { + "Subject": "repository", + "Code": "MIT", + "HRef": "https://github.com/microsoft/vstest" + }, + { + "Subject": "project", + "Code": "MIT", + "HRef": "https://github.com/microsoft/vstest" + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.0.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.0.0/package.nuspec new file mode 100644 index 00000000..78209236 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.0.0/package.nuspec @@ -0,0 +1,39 @@ + + + + Microsoft.TestPlatform.ObjectModel + 18.0.0 + Microsoft + true + MIT + https://licenses.nuget.org/MIT + Icon.png + https://github.com/microsoft/vstest + The Microsoft Test Platform Object Model. + © Microsoft Corporation. All rights reserved. + vstest visual-studio unittest testplatform mstest microsoft test testing + true + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.0.0/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.0.0/project-LICENSE new file mode 100644 index 00000000..d859446c --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.0.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/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.0.0/readme.md new file mode 100644 index 00000000..5f2967f1 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.0.0/readme.md @@ -0,0 +1,25 @@ +Microsoft.TestPlatform.ObjectModel [18.0.0](https://www.nuget.org/packages/Microsoft.TestPlatform.ObjectModel/18.0.0) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net10.0, net472, net8.0, net9.0 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://licenses.nuget.org/MIT) +- repository license: [MIT](https://github.com/microsoft/vstest) +- project license: [MIT](https://github.com/microsoft/vstest) + +Description +----------- +The Microsoft Test Platform Object Model. + +Dependencies 1 +----------- + +|Name|Version| +|----------|:----| +|[System.Reflection.Metadata](../../../../packages/nuget.org/system.reflection.metadata/8.0.0)|8.0.0| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.0.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.0.0/repository-LICENSE new file mode 100644 index 00000000..d859446c --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/18.0.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/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/remarks.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.0.0/index.json similarity index 79% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.0.0/index.json index 8a200ae0..8fddc419 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.0.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", @@ -9,19 +10,19 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ + "net10.0", "net472", - "net6.0", "net8.0", "net9.0" ], "Dependencies": [ { "Name": "Microsoft.TestPlatform.ObjectModel", - "Version": "17.11.1" + "Version": "18.0.0" }, { "Name": "Newtonsoft.Json", - "Version": "13.0.1" + "Version": "13.0.3" } ] } diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.0.0/package.nuspec similarity index 82% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.0.0/package.nuspec index 7f0211e7..67607e21 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.0.0/package.nuspec @@ -2,7 +2,7 @@ Microsoft.TestPlatform.TestHost - 17.11.1 + 18.0.0 Microsoft true MIT @@ -13,11 +13,11 @@ © Microsoft Corporation. All rights reserved. vstest visual-studio unittest testplatform mstest microsoft test testing true - + - - - + + + diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.0.0/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.0.0/project-LICENSE new file mode 100644 index 00000000..d859446c --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.0.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/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.0.0/readme.md similarity index 68% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/readme.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.0.0/readme.md index b60bd651..f36d8d1e 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.11.1/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.0.0/readme.md @@ -1,9 +1,9 @@ -Microsoft.TestPlatform.TestHost [17.11.1](https://www.nuget.org/packages/Microsoft.TestPlatform.TestHost/17.11.1) +Microsoft.TestPlatform.TestHost [18.0.0](https://www.nuget.org/packages/Microsoft.TestPlatform.TestHost/18.0.0) -------------------- Used by: SqlDatabase internal -Target frameworks: net472, net6.0, net8.0, net9.0 +Target frameworks: net10.0, net472, net8.0, net9.0 License: [MIT](../../../../licenses/mit) @@ -15,17 +15,12 @@ Description ----------- Testplatform host executes the test using specified adapter. -Remarks ------------ -no remarks - - Dependencies 2 ----------- |Name|Version| |----------|:----| -|[Microsoft.TestPlatform.ObjectModel](../../../../packages/nuget.org/microsoft.testplatform.objectmodel/17.11.1)|17.11.1| -|[Newtonsoft.Json](../../../../packages/nuget.org/newtonsoft.json/13.0.1)|13.0.1| +|[Microsoft.TestPlatform.ObjectModel](../../../../packages/nuget.org/microsoft.testplatform.objectmodel/18.0.0)|18.0.0| +|[Newtonsoft.Json](../../../../packages/nuget.org/newtonsoft.json/13.0.3)|13.0.3| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.0.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.0.0/repository-LICENSE new file mode 100644 index 00000000..d859446c --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/18.0.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/Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.7.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.7.0/index.json index 46c6345f..17fe0df7 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.7.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.7.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", @@ -9,8 +10,8 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ + "net10.0", "net472", - "net6.0", "net8.0", "net9.0", "netstandard2.0" diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.7.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.7.0/readme.md index efceb204..af8a1004 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.7.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.7.0/readme.md @@ -3,7 +3,7 @@ Microsoft.Win32.Registry [4.7.0](https://www.nuget.org/packages/Microsoft.Win32. Used by: SqlDatabase -Target frameworks: net472, net6.0, net8.0, net9.0, netstandard2.0 +Target frameworks: net10.0, net472, net8.0, net9.0, netstandard2.0 License: [MIT](../../../../licenses/mit) @@ -23,11 +23,6 @@ Microsoft.Win32.RegistryView When using NuGet 3.x this package requires at least version 3.4. -Remarks ------------ -no remarks - - Dependencies 4 ----------- diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.7.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.7.0/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.7.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.7.0/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/moq/4.20.72/index.json b/Build/third-party-libraries/packages/nuget.org/moq/4.20.72/index.json index 2e8095ac..e2b1ea2a 100644 --- a/Build/third-party-libraries/packages/nuget.org/moq/4.20.72/index.json +++ b/Build/third-party-libraries/packages/nuget.org/moq/4.20.72/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "BSD-3-Clause", diff --git a/Build/third-party-libraries/packages/nuget.org/moq/4.20.72/readme.md b/Build/third-party-libraries/packages/nuget.org/moq/4.20.72/readme.md index b90456c6..eeef2340 100644 --- a/Build/third-party-libraries/packages/nuget.org/moq/4.20.72/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/moq/4.20.72/readme.md @@ -15,11 +15,6 @@ Description ----------- Moq is the most popular and friendly mocking framework for .NET. -Remarks ------------ -no remarks - - Dependencies 2 ----------- diff --git a/Build/third-party-libraries/packages/nuget.org/moq/4.20.72/remarks.md b/Build/third-party-libraries/packages/nuget.org/moq/4.20.72/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/moq/4.20.72/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/moq/4.20.72/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/mysqlconnector/2.3.7/remarks.md b/Build/third-party-libraries/packages/nuget.org/mysqlconnector/2.3.7/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/mysqlconnector/2.3.7/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/mysqlconnector/2.3.7/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/mysqlconnector/2.3.7/index.json b/Build/third-party-libraries/packages/nuget.org/mysqlconnector/2.4.0/index.json similarity index 74% rename from Build/third-party-libraries/packages/nuget.org/mysqlconnector/2.3.7/index.json rename to Build/third-party-libraries/packages/nuget.org/mysqlconnector/2.4.0/index.json index 7bf335b2..f9c8ec3d 100644 --- a/Build/third-party-libraries/packages/nuget.org/mysqlconnector/2.3.7/index.json +++ b/Build/third-party-libraries/packages/nuget.org/mysqlconnector/2.4.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", @@ -12,13 +13,17 @@ "netstandard2.0" ], "Dependencies": [ + { + "Name": "Microsoft.Extensions.DependencyInjection.Abstractions", + "Version": "8.0.2" + }, { "Name": "Microsoft.Extensions.Logging.Abstractions", - "Version": "7.0.1" + "Version": "8.0.2" }, { "Name": "System.Diagnostics.DiagnosticSource", - "Version": "7.0.2" + "Version": "8.0.1" }, { "Name": "System.Threading.Tasks.Extensions", diff --git a/Build/third-party-libraries/packages/nuget.org/mysqlconnector/2.3.7/package.nuspec b/Build/third-party-libraries/packages/nuget.org/mysqlconnector/2.4.0/package.nuspec similarity index 62% rename from Build/third-party-libraries/packages/nuget.org/mysqlconnector/2.3.7/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/mysqlconnector/2.4.0/package.nuspec index 960d87bc..f79aee2e 100644 --- a/Build/third-party-libraries/packages/nuget.org/mysqlconnector/2.3.7/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/mysqlconnector/2.4.0/package.nuspec @@ -2,7 +2,7 @@ MySqlConnector - 2.3.7 + 2.4.0 Bradley Grainger MIT https://licenses.nuget.org/MIT @@ -14,41 +14,49 @@ https://mysqlconnector.net/overview/version-history/ Copyright 2016–2024 Bradley Grainger mysql mysqlconnector async ado.net database netcore - + - - + + + - - + + + - - + + + - - - - - + + + - + + + + + + - - + + + - - + + + diff --git a/Build/third-party-libraries/packages/nuget.org/mysqlconnector/2.3.7/readme.md b/Build/third-party-libraries/packages/nuget.org/mysqlconnector/2.4.0/readme.md similarity index 68% rename from Build/third-party-libraries/packages/nuget.org/mysqlconnector/2.3.7/readme.md rename to Build/third-party-libraries/packages/nuget.org/mysqlconnector/2.4.0/readme.md index 0e5a2b09..2e4ba16c 100644 --- a/Build/third-party-libraries/packages/nuget.org/mysqlconnector/2.3.7/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/mysqlconnector/2.4.0/readme.md @@ -1,4 +1,4 @@ -MySqlConnector [2.3.7](https://www.nuget.org/packages/MySqlConnector/2.3.7) +MySqlConnector [2.4.0](https://www.nuget.org/packages/MySqlConnector/2.4.0) -------------------- Used by: SqlDatabase @@ -15,18 +15,14 @@ Description ----------- A truly async MySQL ADO.NET provider, supporting MySQL Server, MariaDB, Amazon Aurora, Azure Database for MySQL, Google Cloud SQL, and more. -Remarks ------------ -no remarks - - -Dependencies 3 +Dependencies 4 ----------- |Name|Version| |----------|:----| -|[Microsoft.Extensions.Logging.Abstractions](../../../../packages/nuget.org/microsoft.extensions.logging.abstractions/7.0.1)|7.0.1| -|[System.Diagnostics.DiagnosticSource](../../../../packages/nuget.org/system.diagnostics.diagnosticsource/7.0.2)|7.0.2| +|[Microsoft.Extensions.DependencyInjection.Abstractions](../../../../packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.2)|8.0.2| +|[Microsoft.Extensions.Logging.Abstractions](../../../../packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.2)|8.0.2| +|[System.Diagnostics.DiagnosticSource](../../../../packages/nuget.org/system.diagnostics.diagnosticsource/8.0.1)|8.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/Build/third-party-libraries/packages/nuget.org/mysqlconnector/2.3.7/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/mysqlconnector/2.4.0/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/mysqlconnector/2.3.7/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/mysqlconnector/2.4.0/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/netstandard.library/2.0.3/index.json b/Build/third-party-libraries/packages/nuget.org/netstandard.library/2.0.3/index.json index 8ad6f98c..2f4ce5c2 100644 --- a/Build/third-party-libraries/packages/nuget.org/netstandard.library/2.0.3/index.json +++ b/Build/third-party-libraries/packages/nuget.org/netstandard.library/2.0.3/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", @@ -9,8 +10,8 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ + "net10.0", "net472", - "net6.0", "net8.0", "net9.0", "netstandard2.0" diff --git a/Build/third-party-libraries/packages/nuget.org/netstandard.library/2.0.3/readme.md b/Build/third-party-libraries/packages/nuget.org/netstandard.library/2.0.3/readme.md index 6698ff55..9f84dcfc 100644 --- a/Build/third-party-libraries/packages/nuget.org/netstandard.library/2.0.3/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/netstandard.library/2.0.3/readme.md @@ -3,7 +3,7 @@ NETStandard.Library [2.0.3](https://www.nuget.org/packages/NETStandard.Library/2 Used by: SqlDatabase -Target frameworks: net472, net6.0, net8.0, net9.0, netstandard2.0 +Target frameworks: net10.0, net472, net8.0, net9.0, netstandard2.0 License: [MIT](../../../../licenses/mit) @@ -16,13 +16,4 @@ A set of standard .NET APIs that are prescribed to be used and supported togethe 18a36291e48808fa7ef2d00a764ceb1ec95645a5 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/Build/third-party-libraries/packages/nuget.org/netstandard.library/2.0.3/remarks.md b/Build/third-party-libraries/packages/nuget.org/netstandard.library/2.0.3/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/netstandard.library/2.0.3/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/netstandard.library/2.0.3/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/remarks.md b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.3/index.json b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.3/index.json index c45ebf4e..bd3c32c6 100644 --- a/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.3/index.json +++ b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.3/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", @@ -9,8 +10,8 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ + "net10.0", "net472", - "net6.0", "net8.0", "net9.0" ] diff --git a/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.3/readme.md b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.3/readme.md index 4882b015..c1caf3e2 100644 --- a/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.3/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.3/readme.md @@ -3,7 +3,7 @@ Newtonsoft.Json [13.0.3](https://www.nuget.org/packages/Newtonsoft.Json/13.0.3) Used by: SqlDatabase internal -Target frameworks: net472, net6.0, net8.0, net9.0 +Target frameworks: net10.0, net472, net8.0, net9.0 License: [MIT](../../../../licenses/mit) @@ -15,13 +15,4 @@ Description ----------- Json.NET is a popular high-performance JSON framework for .NET -Remarks ------------ -no remarks - - -Dependencies 0 ------------ - - *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.3/remarks.md b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.3/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.3/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.3/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/index.json b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.4/index.json similarity index 81% rename from Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/index.json rename to Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.4/index.json index c45ebf4e..bd3c32c6 100644 --- a/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/index.json +++ b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.4/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", @@ -9,8 +10,8 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ + "net10.0", "net472", - "net6.0", "net8.0", "net9.0" ] diff --git a/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/package-LICENSE.md b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.4/package-LICENSE.md similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/package-LICENSE.md rename to Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.4/package-LICENSE.md diff --git a/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/package.nuspec b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.4/package.nuspec similarity index 89% rename from Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.4/package.nuspec index 23ab73b3..0567aba4 100644 --- a/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.4/package.nuspec @@ -2,18 +2,19 @@ Newtonsoft.Json - 13.0.1 + 13.0.4 Json.NET James Newton-King - false MIT https://licenses.nuget.org/MIT packageIcon.png + README.md https://www.newtonsoft.com/json + https://www.newtonsoft.com/content/images/nugeticon.png Json.NET is a popular high-performance JSON framework for .NET Copyright © James Newton-King 2008 json - + @@ -33,6 +34,7 @@ + diff --git a/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/readme.md b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.4/readme.md similarity index 68% rename from Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/readme.md rename to Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.4/readme.md index a1ee36d2..6f393a85 100644 --- a/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.4/readme.md @@ -1,9 +1,9 @@ -Newtonsoft.Json [13.0.1](https://www.nuget.org/packages/Newtonsoft.Json/13.0.1) +Newtonsoft.Json [13.0.4](https://www.nuget.org/packages/Newtonsoft.Json/13.0.4) -------------------- Used by: SqlDatabase internal -Target frameworks: net472, net6.0, net8.0, net9.0 +Target frameworks: net10.0, net472, net8.0, net9.0 License: [MIT](../../../../licenses/mit) @@ -15,13 +15,4 @@ Description ----------- Json.NET is a popular high-performance JSON framework for .NET -Remarks ------------ -no remarks - - -Dependencies 0 ------------ - - *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/repository-LICENSE.md b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.4/repository-LICENSE.md similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/repository-LICENSE.md rename to Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.4/repository-LICENSE.md diff --git a/Build/third-party-libraries/packages/nuget.org/npgsql/8.0.5/remarks.md b/Build/third-party-libraries/packages/nuget.org/npgsql/8.0.5/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/npgsql/8.0.5/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/npgsql/8.0.5/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/npgsql/8.0.5/index.json b/Build/third-party-libraries/packages/nuget.org/npgsql/8.0.7/index.json similarity index 91% rename from Build/third-party-libraries/packages/nuget.org/npgsql/8.0.5/index.json rename to Build/third-party-libraries/packages/nuget.org/npgsql/8.0.7/index.json index 9d2c5498..86029ab1 100644 --- a/Build/third-party-libraries/packages/nuget.org/npgsql/8.0.5/index.json +++ b/Build/third-party-libraries/packages/nuget.org/npgsql/8.0.7/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "PostgreSQL", diff --git a/Build/third-party-libraries/packages/nuget.org/npgsql/8.0.5/package.nuspec b/Build/third-party-libraries/packages/nuget.org/npgsql/8.0.7/package.nuspec similarity index 97% rename from Build/third-party-libraries/packages/nuget.org/npgsql/8.0.5/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/npgsql/8.0.7/package.nuspec index 8edeb291..680df3ca 100644 --- a/Build/third-party-libraries/packages/nuget.org/npgsql/8.0.5/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/npgsql/8.0.7/package.nuspec @@ -2,7 +2,7 @@ Npgsql - 8.0.5 + 8.0.7 Shay Rojansky,Nikita Kazmin,Brar Piening,Nino Floris,Yoh Deadfall,Austin Drenski,Emil Lenngren,Francisco Figueiredo Jr.,Kenji Uno PostgreSQL https://licenses.nuget.org/PostgreSQL @@ -12,7 +12,7 @@ Npgsql is the open source .NET data provider for PostgreSQL. Copyright 2023 © The Npgsql Development Team npgsql postgresql postgres ado ado.net database sql - + diff --git a/Build/third-party-libraries/packages/nuget.org/npgsql/8.0.5/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/npgsql/8.0.7/project-LICENSE similarity index 96% rename from Build/third-party-libraries/packages/nuget.org/npgsql/8.0.5/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/npgsql/8.0.7/project-LICENSE index a74ee166..c551cb7b 100644 --- a/Build/third-party-libraries/packages/nuget.org/npgsql/8.0.5/project-LICENSE +++ b/Build/third-party-libraries/packages/nuget.org/npgsql/8.0.7/project-LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2002-2024, Npgsql +Copyright (c) 2002-2025, Npgsql Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and without a written agreement diff --git a/Build/third-party-libraries/packages/nuget.org/npgsql/8.0.5/readme.md b/Build/third-party-libraries/packages/nuget.org/npgsql/8.0.7/readme.md similarity index 93% rename from Build/third-party-libraries/packages/nuget.org/npgsql/8.0.5/readme.md rename to Build/third-party-libraries/packages/nuget.org/npgsql/8.0.7/readme.md index 3ed2c78d..179280f2 100644 --- a/Build/third-party-libraries/packages/nuget.org/npgsql/8.0.5/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/npgsql/8.0.7/readme.md @@ -1,4 +1,4 @@ -Npgsql [8.0.5](https://www.nuget.org/packages/Npgsql/8.0.5) +Npgsql [8.0.7](https://www.nuget.org/packages/Npgsql/8.0.7) -------------------- Used by: SqlDatabase @@ -15,11 +15,6 @@ Description ----------- Npgsql is the open source .NET data provider for PostgreSQL. -Remarks ------------ -no remarks - - Dependencies 7 ----------- diff --git a/Build/third-party-libraries/packages/nuget.org/npgsql/8.0.5/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/npgsql/8.0.7/repository-LICENSE similarity index 96% rename from Build/third-party-libraries/packages/nuget.org/npgsql/8.0.5/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/npgsql/8.0.7/repository-LICENSE index a74ee166..c551cb7b 100644 --- a/Build/third-party-libraries/packages/nuget.org/npgsql/8.0.5/repository-LICENSE +++ b/Build/third-party-libraries/packages/nuget.org/npgsql/8.0.7/repository-LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2002-2024, Npgsql +Copyright (c) 2002-2025, Npgsql Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and without a written agreement diff --git a/Build/third-party-libraries/packages/nuget.org/nunit/4.2.2/remarks.md b/Build/third-party-libraries/packages/nuget.org/nunit/4.2.2/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/nunit/4.2.2/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/nunit/4.2.2/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/nunit/4.2.2/index.json b/Build/third-party-libraries/packages/nuget.org/nunit/4.4.0/index.json similarity index 80% rename from Build/third-party-libraries/packages/nuget.org/nunit/4.2.2/index.json rename to Build/third-party-libraries/packages/nuget.org/nunit/4.4.0/index.json index f66ec7da..08ce5fd4 100644 --- a/Build/third-party-libraries/packages/nuget.org/nunit/4.2.2/index.json +++ b/Build/third-party-libraries/packages/nuget.org/nunit/4.4.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", @@ -9,8 +10,8 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ + "net10.0", "net472", - "net6.0", "net8.0", "net9.0" ] diff --git a/Build/third-party-libraries/packages/nuget.org/nunit/4.2.2/package-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/nunit/4.4.0/package-LICENSE.txt similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/nunit/4.2.2/package-LICENSE.txt rename to Build/third-party-libraries/packages/nuget.org/nunit/4.4.0/package-LICENSE.txt diff --git a/Build/third-party-libraries/packages/nuget.org/nunit/4.2.2/package.nuspec b/Build/third-party-libraries/packages/nuget.org/nunit/4.4.0/package.nuspec similarity index 91% rename from Build/third-party-libraries/packages/nuget.org/nunit/4.2.2/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/nunit/4.4.0/package.nuspec index 82b624be..d2fdd8c8 100644 --- a/Build/third-party-libraries/packages/nuget.org/nunit/4.2.2/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/nunit/4.4.0/package.nuspec @@ -2,7 +2,7 @@ NUnit - 4.2.2 + 4.4.0 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,9 @@ - + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/nunit/4.2.2/readme.md b/Build/third-party-libraries/packages/nuget.org/nunit/4.4.0/readme.md similarity index 89% rename from Build/third-party-libraries/packages/nuget.org/nunit/4.2.2/readme.md rename to Build/third-party-libraries/packages/nuget.org/nunit/4.4.0/readme.md index fb18c8da..20063d4b 100644 --- a/Build/third-party-libraries/packages/nuget.org/nunit/4.2.2/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/nunit/4.4.0/readme.md @@ -1,9 +1,9 @@ -NUnit [4.2.2](https://www.nuget.org/packages/NUnit/4.2.2) +NUnit [4.4.0](https://www.nuget.org/packages/NUnit/4.4.0) -------------------- Used by: SqlDatabase internal -Target frameworks: net472, net6.0, net8.0, net9.0 +Target frameworks: net10.0, net472, net8.0, net9.0 License: [MIT](../../../../licenses/mit) @@ -25,14 +25,6 @@ NUnit is a unit-testing framework for all .NET languages. Supported platforms: - .NET Framework 4.6.2+ - .NET 6.0+ - -Remarks ------------ -no remarks - - -Dependencies 0 ------------ - + - .NET 8.0+ *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/nunit/4.2.2/repository-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/nunit/4.4.0/repository-LICENSE.txt similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/nunit/4.2.2/repository-LICENSE.txt rename to Build/third-party-libraries/packages/nuget.org/nunit/4.4.0/repository-LICENSE.txt diff --git a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/4.6.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/4.6.0/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/4.6.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/4.6.0/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/4.6.0/index.json b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/5.1.0/index.json similarity index 62% rename from Build/third-party-libraries/packages/nuget.org/nunit3testadapter/4.6.0/index.json rename to Build/third-party-libraries/packages/nuget.org/nunit3testadapter/5.1.0/index.json index a849ae6e..691bf03c 100644 --- a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/4.6.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/5.1.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", @@ -9,10 +10,20 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ + "net10.0", "net472", - "net6.0", "net8.0", "net9.0" + ], + "Dependencies": [ + { + "Name": "Microsoft.Testing.Extensions.VSTestBridge", + "Version": "1.7.3" + }, + { + "Name": "Microsoft.Testing.Platform.MSBuild", + "Version": "1.7.3" + } ] } ], diff --git a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/4.6.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/5.1.0/package.nuspec similarity index 69% rename from Build/third-party-libraries/packages/nuget.org/nunit3testadapter/4.6.0/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/nunit3testadapter/5.1.0/package.nuspec index 9bc883a9..4428110b 100644 --- a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/4.6.0/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/5.1.0/package.nuspec @@ -1,8 +1,8 @@  - + NUnit3TestAdapter - 4.6.0 + 5.1.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/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/4.6.0/readme.md b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/5.1.0/readme.md similarity index 65% rename from Build/third-party-libraries/packages/nuget.org/nunit3testadapter/4.6.0/readme.md rename to Build/third-party-libraries/packages/nuget.org/nunit3testadapter/5.1.0/readme.md index 8cba0f6f..85682c4b 100644 --- a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/4.6.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/5.1.0/readme.md @@ -1,9 +1,9 @@ -NUnit3TestAdapter [4.6.0](https://www.nuget.org/packages/NUnit3TestAdapter/4.6.0) +NUnit3TestAdapter [5.1.0](https://www.nuget.org/packages/NUnit3TestAdapter/5.1.0) -------------------- Used by: SqlDatabase internal -Target frameworks: net472, net6.0, net8.0, net9.0 +Target frameworks: net10.0, net472, net8.0, net9.0 License: [MIT](../../../../licenses/mit) @@ -18,13 +18,12 @@ The NUnit3 TestAdapter for Visual Studio, all versions from 2012 and onwards, an Note that this package ONLY contains the adapter, not the NUnit framework. For VS 2017 and forward, you should add this package to every test project in your solution. (Earlier versions only require a single adapter package per solution.) -Remarks ------------ -no remarks - - -Dependencies 0 +Dependencies 2 ----------- +|Name|Version| +|----------|:----| +|[Microsoft.Testing.Extensions.VSTestBridge](../../../../packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.7.3)|1.7.3| +|[Microsoft.Testing.Platform.MSBuild](../../../../packages/nuget.org/microsoft.testing.platform.msbuild/1.7.3)|1.7.3| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/4.6.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/5.1.0/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/nunit3testadapter/4.6.0/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/nunit3testadapter/5.1.0/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.1/index.json b/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.1/index.json index 1dbc4598..7a5d9205 100644 --- a/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.1/index.json +++ b/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.1/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", diff --git a/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.1/readme.md b/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.1/readme.md index 9456ed96..2e94f03c 100644 --- a/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.1/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.1/readme.md @@ -14,13 +14,4 @@ Description ----------- Contains the reference assemblies for PowerShell Standard 5 -Remarks ------------ -no remarks - - -Dependencies 0 ------------ - - *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.1/remarks.md b/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.1/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.1/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.1/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/shouldly/4.2.1/remarks.md b/Build/third-party-libraries/packages/nuget.org/shouldly/4.2.1/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/shouldly/4.2.1/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/shouldly/4.2.1/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/shouldly/4.2.1/index.json b/Build/third-party-libraries/packages/nuget.org/shouldly/4.3.0/index.json similarity index 73% rename from Build/third-party-libraries/packages/nuget.org/shouldly/4.2.1/index.json rename to Build/third-party-libraries/packages/nuget.org/shouldly/4.3.0/index.json index 89f9ce8c..83c65c22 100644 --- a/Build/third-party-libraries/packages/nuget.org/shouldly/4.2.1/index.json +++ b/Build/third-party-libraries/packages/nuget.org/shouldly/4.3.0/index.json @@ -1,7 +1,8 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { - "Code": "BSD-2-Clause", + "Code": "BSD-3-Clause", "Status": "AutomaticallyApproved" }, "UsedBy": [ @@ -30,19 +31,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 code NOASSERTION" }, { "Subject": "project", - "Code": null, - "HRef": "https://shouldly.org/" + "HRef": "https://docs.shouldly.org/" } ] } \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/shouldly/4.2.1/package.nuspec b/Build/third-party-libraries/packages/nuget.org/shouldly/4.3.0/package.nuspec similarity index 62% rename from Build/third-party-libraries/packages/nuget.org/shouldly/4.2.1/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/shouldly/4.3.0/package.nuspec index 45d46151..c8adbb0a 100644 --- a/Build/third-party-libraries/packages/nuget.org/shouldly/4.2.1/package.nuspec +++ b/Build/third-party-libraries/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/Build/third-party-libraries/packages/nuget.org/shouldly/4.2.1/readme.md b/Build/third-party-libraries/packages/nuget.org/shouldly/4.3.0/readme.md similarity index 68% rename from Build/third-party-libraries/packages/nuget.org/shouldly/4.2.1/readme.md rename to Build/third-party-libraries/packages/nuget.org/shouldly/4.3.0/readme.md index 1fd52e51..1d3382a1 100644 --- a/Build/third-party-libraries/packages/nuget.org/shouldly/4.2.1/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/shouldly/4.3.0/readme.md @@ -1,25 +1,20 @@ -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: SqlDatabase internal Target frameworks: netstandard2.0 -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) +- 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://shouldly.org/) +- project license: [Unknown](https://docs.shouldly.org/) Description ----------- Shouldly - Assertion framework for .NET. The way asserting *Should* be -Remarks ------------ -no remarks - - Dependencies 3 ----------- diff --git a/Build/third-party-libraries/packages/nuget.org/shouldly/4.2.1/repository-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/shouldly/4.3.0/repository-LICENSE.txt similarity index 95% rename from Build/third-party-libraries/packages/nuget.org/shouldly/4.2.1/repository-LICENSE.txt rename to Build/third-party-libraries/packages/nuget.org/shouldly/4.3.0/repository-LICENSE.txt index 2b31d119..7630b297 100644 --- a/Build/third-party-libraries/packages/nuget.org/shouldly/4.2.1/repository-LICENSE.txt +++ b/Build/third-party-libraries/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/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.556/index.json b/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.556/index.json index 56a1e0c8..85395628 100644 --- a/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.556/index.json +++ b/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.556/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", @@ -9,8 +10,8 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ + "net10.0", "net472", - "net6.0", "net8.0", "net9.0", "netstandard2.0" diff --git a/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.556/readme.md b/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.556/readme.md index 14f5084c..644f4566 100644 --- a/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.556/readme.md +++ b/Build/third-party-libraries/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: SqlDatabase internal -Target frameworks: net472, net6.0, net8.0, net9.0, netstandard2.0 +Target frameworks: net10.0, net472, net8.0, net9.0, netstandard2.0 License: [MIT](../../../../licenses/mit) @@ -14,13 +14,4 @@ Description ----------- An implementation of StyleCop's rules using Roslyn analyzers and code fixes -Remarks ------------ -no remarks - - -Dependencies 0 ------------ - - *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.556/remarks.md b/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.556/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.556/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.556/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/index.json b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/index.json index d55c4bfd..95243aba 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", @@ -9,8 +10,8 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ + "net10.0", "net472", - "net6.0", "net8.0", "net9.0", "netstandard2.0" diff --git a/Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/readme.md b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/readme.md index 5386ee17..0fb057f3 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/readme.md @@ -3,7 +3,7 @@ System.Buffers [4.5.1](https://www.nuget.org/packages/System.Buffers/4.5.1) Used by: SqlDatabase -Target frameworks: net472, net6.0, net8.0, net9.0, netstandard2.0 +Target frameworks: net10.0, net472, net8.0, net9.0, netstandard2.0 License: [MIT](../../../../licenses/mit) @@ -20,13 +20,4 @@ System.Buffers.ArrayPool 7601f4f6225089ffb291dc7d58293c7bbf5c5d4f 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/Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.codedom/6.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.codedom/6.0.0/index.json index 0502ba77..8291ebe1 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.codedom/6.0.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.codedom/6.0.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", @@ -26,7 +27,6 @@ }, { "Subject": "project", - "Code": null, "HRef": "https://dot.net/" } ] diff --git a/Build/third-party-libraries/packages/nuget.org/system.codedom/6.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.codedom/6.0.0/readme.md index 302268e4..b179ca0d 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.codedom/6.0.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.codedom/6.0.0/readme.md @@ -21,13 +21,4 @@ System.CodeDom.Compiler.CodeDomProvider Microsoft.CSharp.CSharpCodeProvider Microsoft.VisualBasic.VBCodeProvider -Remarks ------------ -no remarks - - -Dependencies 0 ------------ - - *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.codedom/6.0.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.codedom/6.0.0/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.codedom/6.0.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.codedom/6.0.0/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/1.5.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/1.5.0/index.json new file mode 100644 index 00000000..8f8cb6e7 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/1.5.0/index.json @@ -0,0 +1,30 @@ +{ + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "net10.0", + "net472", + "net8.0", + "net9.0" + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://github.com/dotnet/corefx/blob/master/LICENSE.TXT" + }, + { + "Subject": "project", + "HRef": "https://dot.net/" + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/1.5.0/package-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/1.5.0/package-LICENSE.TXT new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/1.5.0/package-LICENSE.TXT @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/1.5.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/1.5.0/package.nuspec new file mode 100644 index 00000000..1b1e87e1 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/1.5.0/package.nuspec @@ -0,0 +1,52 @@ + + + + System.Collections.Immutable + 1.5.0 + System.Collections.Immutable + Microsoft + microsoft,dotnetframework + false + https://github.com/dotnet/corefx/blob/master/LICENSE.TXT + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + This package provides collections that are thread safe and guaranteed to never change their contents, also known as immutable collections. Like strings, any methods that perform modifications will not change the existing instance but instead return a new instance. For efficiency reasons, the implementation uses a sharing mechanism to ensure that newly created instances share as much data as possible with the previous instance while ensuring that operations have a predictable time complexity. + +Commonly Used Types: +System.Collections.Immutable.ImmutableArray +System.Collections.Immutable.ImmutableArray<T> +System.Collections.Immutable.ImmutableDictionary +System.Collections.Immutable.ImmutableDictionary<TKey,TValue> +System.Collections.Immutable.ImmutableHashSet +System.Collections.Immutable.ImmutableHashSet<T> +System.Collections.Immutable.ImmutableList +System.Collections.Immutable.ImmutableList<T> +System.Collections.Immutable.ImmutableQueue +System.Collections.Immutable.ImmutableQueue<T> +System.Collections.Immutable.ImmutableSortedDictionary +System.Collections.Immutable.ImmutableSortedDictionary<TKey,TValue> +System.Collections.Immutable.ImmutableSortedSet +System.Collections.Immutable.ImmutableSortedSet<T> +System.Collections.Immutable.ImmutableStack +System.Collections.Immutable.ImmutableStack<T> + +30ab651fcb4354552bd4891619a0bdd81e0ebdbf + https://go.microsoft.com/fwlink/?LinkID=799421 + © Microsoft Corporation. All rights reserved. + true + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/1.5.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/1.5.0/readme.md new file mode 100644 index 00000000..8cfcd919 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/1.5.0/readme.md @@ -0,0 +1,37 @@ +System.Collections.Immutable [1.5.0](https://www.nuget.org/packages/System.Collections.Immutable/1.5.0) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net10.0, net472, net8.0, net9.0 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://github.com/dotnet/corefx/blob/master/LICENSE.TXT) +- project license: [Unknown](https://dot.net/) + +Description +----------- +This package provides collections that are thread safe and guaranteed to never change their contents, also known as immutable collections. Like strings, any methods that perform modifications will not change the existing instance but instead return a new instance. For efficiency reasons, the implementation uses a sharing mechanism to ensure that newly created instances share as much data as possible with the previous instance while ensuring that operations have a predictable time complexity. + +Commonly Used Types: +System.Collections.Immutable.ImmutableArray +System.Collections.Immutable.ImmutableArray +System.Collections.Immutable.ImmutableDictionary +System.Collections.Immutable.ImmutableDictionary +System.Collections.Immutable.ImmutableHashSet +System.Collections.Immutable.ImmutableHashSet +System.Collections.Immutable.ImmutableList +System.Collections.Immutable.ImmutableList +System.Collections.Immutable.ImmutableQueue +System.Collections.Immutable.ImmutableQueue +System.Collections.Immutable.ImmutableSortedDictionary +System.Collections.Immutable.ImmutableSortedDictionary +System.Collections.Immutable.ImmutableSortedSet +System.Collections.Immutable.ImmutableSortedSet +System.Collections.Immutable.ImmutableStack +System.Collections.Immutable.ImmutableStack + +30ab651fcb4354552bd4891619a0bdd81e0ebdbf + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/8.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/8.0.0/index.json index e5f11bd4..a5336411 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/8.0.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/8.0.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", @@ -9,6 +10,10 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ + "net10.0", + "net472", + "net8.0", + "net9.0", "netstandard2.0" ], "Dependencies": [ diff --git a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/8.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/8.0.0/readme.md index de55f442..45f712b9 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/8.0.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/8.0.0/readme.md @@ -3,7 +3,7 @@ System.Collections.Immutable [8.0.0](https://www.nuget.org/packages/System.Colle Used by: SqlDatabase -Target frameworks: netstandard2.0 +Target frameworks: net10.0, net472, net8.0, net9.0, netstandard2.0 License: [MIT](../../../../licenses/mit) @@ -17,11 +17,6 @@ This package provides collections that are thread safe and guaranteed to never c The System.Collections.Immutable library is built-in as part of the shared framework in .NET Runtime. The package can be installed when you need to use it in other target frameworks. -Remarks ------------ -no remarks - - Dependencies 2 ----------- diff --git a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/8.0.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/8.0.0/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/8.0.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.collections.immutable/8.0.0/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.8.6/index.json b/Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.8.6/index.json index 2ec8da1f..45438061 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.8.6/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.8.6/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", @@ -9,8 +10,8 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ + "net10.0", "net472", - "net6.0", "net8.0", "net9.0", "netstandard2.0" diff --git a/Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.8.6/readme.md b/Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.8.6/readme.md index 194309a0..f336582d 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.8.6/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.8.6/readme.md @@ -3,7 +3,7 @@ System.Data.SqlClient [4.8.6](https://www.nuget.org/packages/System.Data.SqlClie Used by: SqlDatabase -Target frameworks: net472, net6.0, net8.0, net9.0, netstandard2.0 +Target frameworks: net10.0, net472, net8.0, net9.0, netstandard2.0 License: [MIT](../../../../licenses/mit) @@ -27,11 +27,6 @@ System.Data.SqlClient.SqlClientFactory When using NuGet 3.x this package requires at least version 3.4. -Remarks ------------ -no remarks - - Dependencies 6 ----------- diff --git a/Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.8.6/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.8.6/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.8.6/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.8.6/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.7.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.7.0/index.json index 844fbef3..41b3c09d 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.7.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.7.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", @@ -27,7 +28,6 @@ }, { "Subject": "project", - "Code": null, "HRef": "https://github.com/dotnet/corefx" } ] diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.7.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.7.0/readme.md index cbb66ab6..df3ae0d9 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.7.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.7.0/readme.md @@ -20,11 +20,6 @@ System.Diagnostics.DiagnosticSource When using NuGet 3.x this package requires at least version 3.4. -Remarks ------------ -no remarks - - Dependencies 1 ----------- diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.7.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.7.0/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.7.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.7.0/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/index.json new file mode 100644 index 00000000..62e2e309 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/index.json @@ -0,0 +1,37 @@ +{ + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", + "Source": "https://api.nuget.org/v3/index.json", + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "net10.0", + "net472", + "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/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/package-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/package-LICENSE.TXT new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/package-LICENSE.TXT @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/package.nuspec new file mode 100644 index 00000000..a91cd370 --- /dev/null +++ b/Build/third-party-libraries/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/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/project-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/project-LICENSE.TXT new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/project-LICENSE.TXT @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/readme.md new file mode 100644 index 00000000..702dc445 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/readme.md @@ -0,0 +1,24 @@ +System.Diagnostics.DiagnosticSource [5.0.0](https://www.nuget.org/packages/System.Diagnostics.DiagnosticSource/5.0.0) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net10.0, net472, 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. + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/repository-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/5.0.0/repository-LICENSE.TXT new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/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/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/7.0.2/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/7.0.2/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/7.0.2/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/7.0.2/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.0/index.json index e5f11bd4..a5336411 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", @@ -9,6 +10,10 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ + "net10.0", + "net472", + "net8.0", + "net9.0", "netstandard2.0" ], "Dependencies": [ diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.0/readme.md index 16567875..695106f3 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.0/readme.md @@ -3,7 +3,7 @@ System.Diagnostics.DiagnosticSource [8.0.0](https://www.nuget.org/packages/Syste Used by: SqlDatabase -Target frameworks: netstandard2.0 +Target frameworks: net10.0, net472, net8.0, net9.0, netstandard2.0 License: [MIT](../../../../licenses/mit) @@ -19,11 +19,6 @@ Commonly Used Types: System.Diagnostics.DiagnosticListener System.Diagnostics.DiagnosticSource -Remarks ------------ -no remarks - - Dependencies 2 ----------- diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.0/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.0/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/7.0.2/index.json b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.1/index.json similarity index 71% rename from Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/7.0.2/index.json rename to Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.1/index.json index e5f11bd4..68809716 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/7.0.2/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.1/index.json @@ -1,5 +1,6 @@ { - "Source": "https://api.nuget.org/v3/index.json", + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", + "Source": "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-public/nuget/v3/index.json", "License": { "Code": "MIT", "Status": "AutomaticallyApproved" @@ -9,6 +10,10 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ + "net10.0", + "net472", + "net8.0", + "net9.0", "netstandard2.0" ], "Dependencies": [ diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.1/package-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.1/package-LICENSE.TXT new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.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/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/7.0.2/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.1/package.nuspec similarity index 93% rename from Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/7.0.2/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.1/package.nuspec index d16a5c8c..ccff7caf 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/7.0.2/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.1/package.nuspec @@ -2,7 +2,7 @@ System.Diagnostics.DiagnosticSource - 7.0.2 + 8.0.1 Microsoft MIT https://licenses.nuget.org/MIT @@ -16,7 +16,7 @@ System.Diagnostics.DiagnosticSource https://go.microsoft.com/fwlink/?LinkID=799421 © Microsoft Corporation. All rights reserved. true - + @@ -26,6 +26,7 @@ System.Diagnostics.DiagnosticSource + diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/7.0.2/readme.md b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.1/readme.md similarity index 81% rename from Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/7.0.2/readme.md rename to Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.1/readme.md index b8122e09..729a64cf 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/7.0.2/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.1/readme.md @@ -1,9 +1,9 @@ -System.Diagnostics.DiagnosticSource [7.0.2](https://www.nuget.org/packages/System.Diagnostics.DiagnosticSource/7.0.2) +System.Diagnostics.DiagnosticSource [8.0.1](https://www.nuget.org/packages/System.Diagnostics.DiagnosticSource/8.0.1) -------------------- Used by: SqlDatabase -Target frameworks: netstandard2.0 +Target frameworks: net10.0, net472, net8.0, net9.0, netstandard2.0 License: [MIT](../../../../licenses/mit) @@ -19,11 +19,6 @@ Commonly Used Types: System.Diagnostics.DiagnosticListener System.Diagnostics.DiagnosticSource -Remarks ------------ -no remarks - - Dependencies 2 ----------- diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.1/repository-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.1/repository-LICENSE.TXT new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/8.0.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/Build/third-party-libraries/packages/nuget.org/system.diagnostics.eventlog/4.7.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.eventlog/4.7.0/index.json index 7ab0c08d..638d0edf 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.eventlog/4.7.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.eventlog/4.7.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", @@ -27,7 +28,6 @@ }, { "Subject": "project", - "Code": null, "HRef": "https://github.com/dotnet/corefx" } ] diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.eventlog/4.7.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.eventlog/4.7.0/readme.md index f6a9054b..b1cb84eb 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.eventlog/4.7.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.eventlog/4.7.0/readme.md @@ -19,11 +19,6 @@ System.Diagnostics.EventLog When using NuGet 3.x this package requires at least version 3.4. -Remarks ------------ -no remarks - - Dependencies 1 ----------- diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.eventlog/4.7.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.eventlog/4.7.0/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.eventlog/4.7.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.eventlog/4.7.0/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.management/6.0.1/index.json b/Build/third-party-libraries/packages/nuget.org/system.management/6.0.1/index.json index fccb4cdd..50b20681 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.management/6.0.1/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.management/6.0.1/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", @@ -32,7 +33,6 @@ }, { "Subject": "project", - "Code": null, "HRef": "https://dot.net/" } ] diff --git a/Build/third-party-libraries/packages/nuget.org/system.management/6.0.1/readme.md b/Build/third-party-libraries/packages/nuget.org/system.management/6.0.1/readme.md index f85bfd79..aad248a1 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.management/6.0.1/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.management/6.0.1/readme.md @@ -20,11 +20,6 @@ System.Management.ManagementClass System.Management.ManagementObject System.Management.SelectQuery -Remarks ------------ -no remarks - - Dependencies 1 ----------- diff --git a/Build/third-party-libraries/packages/nuget.org/system.management/6.0.1/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.management/6.0.1/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.management/6.0.1/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.management/6.0.1/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/index.json b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/index.json index ba06c1b3..03c883dd 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", @@ -35,7 +36,6 @@ }, { "Subject": "project", - "Code": null, "HRef": "https://dot.net/" } ] diff --git a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/readme.md b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/readme.md index 23e24765..8de5bac3 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/readme.md @@ -27,11 +27,6 @@ System.Buffers.Text.Utf8Formatter 7601f4f6225089ffb291dc7d58293c7bbf5c5d4f When using NuGet 3.x this package requires at least version 3.4. -Remarks ------------ -no remarks - - Dependencies 3 ----------- diff --git a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.5/index.json b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.5/index.json index 96996c1b..c134cf81 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.5/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.5/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", @@ -9,8 +10,8 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ + "net10.0", "net472", - "net6.0", "net8.0", "net9.0", "netstandard2.0" @@ -30,11 +31,15 @@ }, { "Name": "System.Runtime.CompilerServices.Unsafe", - "Version": "4.5.3" + "Version": "5.0.0" }, { "Name": "System.Runtime.CompilerServices.Unsafe", "Version": "6.0.0" + }, + { + "Name": "System.Runtime.CompilerServices.Unsafe", + "Version": "4.5.3" } ] } diff --git a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.5/readme.md b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.5/readme.md index 46b810ac..762d5f4b 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.5/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.5/readme.md @@ -3,7 +3,7 @@ System.Memory [4.5.5](https://www.nuget.org/packages/System.Memory/4.5.5) Used by: SqlDatabase -Target frameworks: net472, net6.0, net8.0, net9.0, netstandard2.0 +Target frameworks: net10.0, net472, net8.0, net9.0, netstandard2.0 License: [MIT](../../../../licenses/mit) @@ -27,12 +27,7 @@ System.Buffers.Text.Utf8Formatter 32b491939fbd125f304031c35038b1e14b4e3958 When using NuGet 3.x this package requires at least version 3.4. -Remarks ------------ -no remarks - - -Dependencies 5 +Dependencies 6 ----------- |Name|Version| @@ -41,6 +36,7 @@ Dependencies 5 |[System.Numerics.Vectors](../../../../packages/nuget.org/system.numerics.vectors/4.4.0)|4.4.0| |[System.Numerics.Vectors](../../../../packages/nuget.org/system.numerics.vectors/4.5.0)|4.5.0| |[System.Runtime.CompilerServices.Unsafe](../../../../packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3)|4.5.3| +|[System.Runtime.CompilerServices.Unsafe](../../../../packages/nuget.org/system.runtime.compilerservices.unsafe/5.0.0)|5.0.0| |[System.Runtime.CompilerServices.Unsafe](../../../../packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0)|6.0.0| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.5/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.5/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.5/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.5/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/index.json index 082ffec6..c139bf7b 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", @@ -21,7 +22,6 @@ }, { "Subject": "project", - "Code": null, "HRef": "https://dot.net/" } ] diff --git a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/readme.md index f6183629..361ed891 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/readme.md @@ -27,13 +27,4 @@ System.Numerics.Vector 8321c729934c0f8be754953439b88e6e1c120c24 -Remarks ------------ -no remarks - - -Dependencies 0 ------------ - - *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/index.json index d470b858..4236a12b 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", @@ -9,8 +10,8 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ + "net10.0", "net472", - "net6.0", "net8.0", "net9.0" ] diff --git a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/readme.md index 5eca7059..25d256d0 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/readme.md @@ -3,7 +3,7 @@ System.Numerics.Vectors [4.5.0](https://www.nuget.org/packages/System.Numerics.V Used by: SqlDatabase internal -Target frameworks: net472, net6.0, net8.0, net9.0 +Target frameworks: net10.0, net472, net8.0, net9.0 License: [MIT](../../../../licenses/mit) @@ -27,13 +27,4 @@ System.Numerics.Vector 30ab651fcb4354552bd4891619a0bdd81e0ebdbf -Remarks ------------ -no remarks - - -Dependencies 0 ------------ - - *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.reflection.emit.ilgeneration/4.7.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.reflection.emit.ilgeneration/4.7.0/index.json index 6786e835..3f37e52f 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.reflection.emit.ilgeneration/4.7.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.reflection.emit.ilgeneration/4.7.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", @@ -21,7 +22,6 @@ }, { "Subject": "project", - "Code": null, "HRef": "https://github.com/dotnet/corefx" } ] diff --git a/Build/third-party-libraries/packages/nuget.org/system.reflection.emit.ilgeneration/4.7.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.reflection.emit.ilgeneration/4.7.0/readme.md index 8d929093..e5b61213 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.reflection.emit.ilgeneration/4.7.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.reflection.emit.ilgeneration/4.7.0/readme.md @@ -24,13 +24,4 @@ System.Reflection.Emit.SignatureHelper 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/Build/third-party-libraries/packages/nuget.org/system.reflection.emit.ilgeneration/4.7.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.reflection.emit.ilgeneration/4.7.0/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.reflection.emit.ilgeneration/4.7.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.reflection.emit.ilgeneration/4.7.0/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.reflection.emit/4.7.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.reflection.emit/4.7.0/index.json index 00a018c2..f4747987 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.reflection.emit/4.7.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.reflection.emit/4.7.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\", "License": { "Code": "MIT", @@ -27,7 +28,6 @@ }, { "Subject": "project", - "Code": null, "HRef": "https://github.com/dotnet/corefx" } ] diff --git a/Build/third-party-libraries/packages/nuget.org/system.reflection.emit/4.7.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.reflection.emit/4.7.0/readme.md index 5d6571b2..0a265e57 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.reflection.emit/4.7.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.reflection.emit/4.7.0/readme.md @@ -28,11 +28,6 @@ System.Reflection.Emit.EventBuilder When using NuGet 3.x this package requires at least version 3.4. -Remarks ------------ -no remarks - - Dependencies 1 ----------- diff --git a/Build/third-party-libraries/packages/nuget.org/system.reflection.emit/4.7.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.reflection.emit/4.7.0/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.reflection.emit/4.7.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.reflection.emit/4.7.0/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/index.json index 8ac636a7..0435c9cc 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", @@ -9,10 +10,16 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ + "net10.0", "net472", - "net6.0", "net8.0", "net9.0" + ], + "Dependencies": [ + { + "Name": "System.Collections.Immutable", + "Version": "1.5.0" + } ] } ], diff --git a/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/readme.md index 44f38d48..6644e269 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/readme.md @@ -3,7 +3,7 @@ System.Reflection.Metadata [1.6.0](https://www.nuget.org/packages/System.Reflect Used by: SqlDatabase internal -Target frameworks: net472, net6.0, net8.0, net9.0 +Target frameworks: net10.0, net472, net8.0, net9.0 License: [MIT](../../../../licenses/mit) @@ -24,13 +24,11 @@ System.Reflection.PortableExecutable.ManagedPEBuilder 30ab651fcb4354552bd4891619a0bdd81e0ebdbf When using NuGet 3.x this package requires at least version 3.4. -Remarks ------------ -no remarks - - -Dependencies 0 +Dependencies 1 ----------- +|Name|Version| +|----------|:----| +|[System.Collections.Immutable](../../../../packages/nuget.org/system.collections.immutable/1.5.0)|1.5.0| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/7.0.1/index.json b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/8.0.0/index.json similarity index 65% rename from Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/7.0.1/index.json rename to Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/8.0.0/index.json index b6dffac1..b19e7570 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.extensions.logging.abstractions/7.0.1/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/8.0.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", @@ -7,18 +8,17 @@ "UsedBy": [ { "Name": "SqlDatabase", - "InternalOnly": false, + "InternalOnly": true, "TargetFrameworks": [ - "netstandard2.0" + "net10.0", + "net472", + "net8.0", + "net9.0" ], "Dependencies": [ { - "Name": "System.Buffers", - "Version": "4.5.1" - }, - { - "Name": "System.Memory", - "Version": "4.5.5" + "Name": "System.Collections.Immutable", + "Version": "8.0.0" } ] } diff --git a/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/8.0.0/package-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/8.0.0/package-LICENSE.TXT new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/8.0.0/package-LICENSE.TXT @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/8.0.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/8.0.0/package.nuspec new file mode 100644 index 00000000..71544822 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/8.0.0/package.nuspec @@ -0,0 +1,39 @@ + + + + System.Reflection.Metadata + 8.0.0 + Microsoft + MIT + https://licenses.nuget.org/MIT + Icon.png + PACKAGE.md + https://dot.net/ + This package provides a low-level .NET (ECMA-335) metadata reader and writer. It's geared for performance and is the ideal choice for building higher-level libraries that intend to provide their own object model, such as compilers. The metadata format is defined by the ECMA-335 - Common Language Infrastructure (CLI) specification. + +The System.Reflection.Metadata library is built-in as part of the shared framework in .NET Runtime. The package can be installed when you need to use it in other target frameworks. + https://go.microsoft.com/fwlink/?LinkID=799421 + © Microsoft Corporation. All rights reserved. + true + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/8.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/8.0.0/readme.md new file mode 100644 index 00000000..1ba865e0 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/8.0.0/readme.md @@ -0,0 +1,27 @@ +System.Reflection.Metadata [8.0.0](https://www.nuget.org/packages/System.Reflection.Metadata/8.0.0) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net10.0, net472, net8.0, net9.0 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://licenses.nuget.org/MIT) +- repository license: [MIT](https://github.com/dotnet/runtime) +- project license: [Unknown](https://dot.net/) + +Description +----------- +This package provides a low-level .NET (ECMA-335) metadata reader and writer. It's geared for performance and is the ideal choice for building higher-level libraries that intend to provide their own object model, such as compilers. The metadata format is defined by the ECMA-335 - Common Language Infrastructure (CLI) specification. + +The System.Reflection.Metadata library is built-in as part of the shared framework in .NET Runtime. The package can be installed when you need to use it in other target frameworks. + +Dependencies 1 +----------- + +|Name|Version| +|----------|:----| +|[System.Collections.Immutable](../../../../packages/nuget.org/system.collections.immutable/8.0.0)|8.0.0| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/8.0.0/repository-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/8.0.0/repository-LICENSE.TXT new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/8.0.0/repository-LICENSE.TXT @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3/index.json b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3/index.json index aa71aa17..f16743e9 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", @@ -9,10 +10,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "net472", - "net6.0", - "net8.0", - "net9.0", "netstandard2.0" ] } diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3/readme.md b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3/readme.md index 8c724415..8b4fa777 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3/readme.md @@ -3,7 +3,7 @@ System.Runtime.CompilerServices.Unsafe [4.5.3](https://www.nuget.org/packages/Sy Used by: SqlDatabase internal -Target frameworks: net472, net6.0, net8.0, net9.0, netstandard2.0 +Target frameworks: netstandard2.0 License: [MIT](../../../../licenses/mit) @@ -20,13 +20,4 @@ System.Runtime.CompilerServices.Unsafe 7601f4f6225089ffb291dc7d58293c7bbf5c5d4f 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/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.7.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.7.0/index.json index dbd3f587..dfddc689 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.7.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.7.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", @@ -21,7 +22,6 @@ }, { "Subject": "project", - "Code": null, "HRef": "https://github.com/dotnet/corefx" } ] diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.7.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.7.0/readme.md index 22bc6760..4b2f6db4 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.7.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.7.0/readme.md @@ -19,13 +19,4 @@ System.Runtime.CompilerServices.Unsafe 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/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.7.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.7.0/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.7.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.7.0/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/5.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/5.0.0/index.json new file mode 100644 index 00000000..62e2e309 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/5.0.0/index.json @@ -0,0 +1,37 @@ +{ + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", + "Source": "https://api.nuget.org/v3/index.json", + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "net10.0", + "net472", + "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/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/5.0.0/package-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/5.0.0/package-LICENSE.TXT new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/5.0.0/package-LICENSE.TXT @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/5.0.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/5.0.0/package.nuspec new file mode 100644 index 00000000..5c3bb95b --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/5.0.0/package.nuspec @@ -0,0 +1,44 @@ + + + + System.Runtime.CompilerServices.Unsafe + 5.0.0 + System.Runtime.CompilerServices.Unsafe + 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 the System.Runtime.CompilerServices.Unsafe class, which provides generic, low-level functionality for manipulating pointers. + +Commonly Used Types: +System.Runtime.CompilerServices.Unsafe + +When using NuGet 3.x this package requires at least version 3.4. + https://go.microsoft.com/fwlink/?LinkID=799421 + © Microsoft Corporation. All rights reserved. + true + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/5.0.0/project-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/5.0.0/project-LICENSE.TXT new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/5.0.0/project-LICENSE.TXT @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/5.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/5.0.0/readme.md new file mode 100644 index 00000000..a940fb24 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/5.0.0/readme.md @@ -0,0 +1,23 @@ +System.Runtime.CompilerServices.Unsafe [5.0.0](https://www.nuget.org/packages/System.Runtime.CompilerServices.Unsafe/5.0.0) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net10.0, net472, 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 the System.Runtime.CompilerServices.Unsafe class, which provides generic, low-level functionality for manipulating pointers. + +Commonly Used Types: +System.Runtime.CompilerServices.Unsafe + +When using NuGet 3.x this package requires at least version 3.4. + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/5.0.0/repository-LICENSE.TXT b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/5.0.0/repository-LICENSE.TXT new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/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/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0/index.json index aaf5fe25..14fe6188 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", @@ -9,8 +10,8 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ + "net10.0", "net472", - "net6.0", "net8.0", "net9.0", "netstandard2.0" diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0/readme.md index 1f00a2b1..03a6d8b8 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0/readme.md @@ -3,7 +3,7 @@ System.Runtime.CompilerServices.Unsafe [6.0.0](https://www.nuget.org/packages/Sy Used by: SqlDatabase -Target frameworks: net472, net6.0, net8.0, net9.0, netstandard2.0 +Target frameworks: net10.0, net472, net8.0, net9.0, netstandard2.0 License: [MIT](../../../../licenses/mit) @@ -18,13 +18,4 @@ Provides the System.Runtime.CompilerServices.Unsafe class, which provides generi 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/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.loader/4.3.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.runtime.loader/4.3.0/index.json index c9617aac..eab8ea0c 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.runtime.loader/4.3.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.loader/4.3.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "ms-net-library", @@ -21,7 +22,6 @@ }, { "Subject": "project", - "Code": null, "HRef": "https://dot.net/" } ] diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.loader/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.runtime.loader/4.3.0/readme.md index 3d3c47d9..c156ec89 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.runtime.loader/4.3.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.loader/4.3.0/readme.md @@ -19,13 +19,4 @@ System.Runtime.Loader.AssemblyLoadContext 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/Build/third-party-libraries/packages/nuget.org/system.runtime.loader/4.3.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.runtime.loader/4.3.0/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.loader/4.3.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.runtime.loader/4.3.0/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.7.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.7.0/index.json index 01d9f733..58449883 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.7.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.7.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\", "License": { "Code": "MIT", @@ -9,8 +10,8 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ + "net10.0", "net472", - "net6.0", "net8.0", "net9.0", "netstandard2.0" diff --git a/Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.7.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.7.0/readme.md index 5e37a026..bd1c498d 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.7.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.7.0/readme.md @@ -3,7 +3,7 @@ System.Security.AccessControl [4.7.0](https://www.nuget.org/packages/System.Secu Used by: SqlDatabase -Target frameworks: net472, net6.0, net8.0, net9.0, netstandard2.0 +Target frameworks: net10.0, net472, net8.0, net9.0, netstandard2.0 License: [MIT](../../../../licenses/mit) @@ -23,11 +23,6 @@ System.Security.AccessControl.ObjectSecurity When using NuGet 3.x this package requires at least version 3.4. -Remarks ------------ -no remarks - - Dependencies 1 ----------- diff --git a/Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.7.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.7.0/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.7.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.7.0/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.7.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.7.0/index.json index ec2bd01c..69184c6b 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.7.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.7.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\", "License": { "Code": "MIT", @@ -9,8 +10,8 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ + "net10.0", "net472", - "net6.0", "net8.0", "net9.0", "netstandard2.0" diff --git a/Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.7.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.7.0/readme.md index 006e3e62..6f1adb6b 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.7.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.7.0/readme.md @@ -3,7 +3,7 @@ System.Security.Principal.Windows [4.7.0](https://www.nuget.org/packages/System. Used by: SqlDatabase -Target frameworks: net472, net6.0, net8.0, net9.0, netstandard2.0 +Target frameworks: net10.0, net472, net8.0, net9.0, netstandard2.0 License: [MIT](../../../../licenses/mit) @@ -26,13 +26,4 @@ System.Security.Principal.WellKnownSidType 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/Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.7.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.7.0/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.7.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.7.0/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.7.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.7.0/index.json index a85521b4..d0c922de 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.7.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.7.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", @@ -27,7 +28,6 @@ }, { "Subject": "project", - "Code": null, "HRef": "https://github.com/dotnet/corefx" } ] diff --git a/Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.7.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.7.0/readme.md index 2f3d5803..2a61a80b 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.7.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.7.0/readme.md @@ -19,11 +19,6 @@ System.Text.CodePagesEncodingProvider When using NuGet 3.x this package requires at least version 3.4. -Remarks ------------ -no remarks - - Dependencies 1 ----------- diff --git a/Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.7.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.7.0/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.7.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.7.0/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.text.encodings.web/8.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.text.encodings.web/8.0.0/index.json index bc40e131..2a42757d 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.text.encodings.web/8.0.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.text.encodings.web/8.0.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", diff --git a/Build/third-party-libraries/packages/nuget.org/system.text.encodings.web/8.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.text.encodings.web/8.0.0/readme.md index aff1b9ef..0b7adc2f 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.text.encodings.web/8.0.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.text.encodings.web/8.0.0/readme.md @@ -20,11 +20,6 @@ System.Text.Encodings.Web.HtmlEncoder System.Text.Encodings.Web.UrlEncoder System.Text.Encodings.Web.JavaScriptEncoder -Remarks ------------ -no remarks - - Dependencies 3 ----------- diff --git a/Build/third-party-libraries/packages/nuget.org/system.text.encodings.web/8.0.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.text.encodings.web/8.0.0/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.text.encodings.web/8.0.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.text.encodings.web/8.0.0/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.text.json/8.0.5/index.json b/Build/third-party-libraries/packages/nuget.org/system.text.json/8.0.5/index.json index ee23090c..cde9a0bc 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.text.json/8.0.5/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.text.json/8.0.5/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", diff --git a/Build/third-party-libraries/packages/nuget.org/system.text.json/8.0.5/readme.md b/Build/third-party-libraries/packages/nuget.org/system.text.json/8.0.5/readme.md index 4bd336f7..e72b4249 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.text.json/8.0.5/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.text.json/8.0.5/readme.md @@ -17,11 +17,6 @@ Provides high-performance and low-allocating types that serialize objects to Jav The System.Text.Json library is built-in as part of the shared framework in .NET Runtime. The package can be installed when you need to use it in other target frameworks. -Remarks ------------ -no remarks - - Dependencies 6 ----------- diff --git a/Build/third-party-libraries/packages/nuget.org/system.text.json/8.0.5/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.text.json/8.0.5/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.text.json/8.0.5/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.text.json/8.0.5/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.threading.channels/8.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.threading.channels/8.0.0/index.json index 403b396c..7ead5af2 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.threading.channels/8.0.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.threading.channels/8.0.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", diff --git a/Build/third-party-libraries/packages/nuget.org/system.threading.channels/8.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.threading.channels/8.0.0/readme.md index 52e2c404..ebd0f373 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.threading.channels/8.0.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.threading.channels/8.0.0/readme.md @@ -19,11 +19,6 @@ Commonly Used Types: System.Threading.Channel System.Threading.Channel -Remarks ------------ -no remarks - - Dependencies 1 ----------- diff --git a/Build/third-party-libraries/packages/nuget.org/system.threading.channels/8.0.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.threading.channels/8.0.0/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.threading.channels/8.0.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.threading.channels/8.0.0/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/index.json b/Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/index.json index c953dea5..9a6e6d69 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", @@ -9,8 +10,8 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ + "net10.0", "net472", - "net6.0", "net8.0", "net9.0", "netstandard2.0" @@ -18,11 +19,15 @@ "Dependencies": [ { "Name": "System.Runtime.CompilerServices.Unsafe", - "Version": "4.5.3" + "Version": "5.0.0" }, { "Name": "System.Runtime.CompilerServices.Unsafe", "Version": "6.0.0" + }, + { + "Name": "System.Runtime.CompilerServices.Unsafe", + "Version": "4.5.3" } ] } diff --git a/Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/readme.md b/Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/readme.md index df394bb4..4c6e8eed 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/readme.md +++ b/Build/third-party-libraries/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: SqlDatabase -Target frameworks: net472, net6.0, net8.0, net9.0, netstandard2.0 +Target frameworks: net10.0, net472, net8.0, net9.0, netstandard2.0 License: [MIT](../../../../licenses/mit) @@ -19,17 +19,13 @@ System.Threading.Tasks.ValueTask 7601f4f6225089ffb291dc7d58293c7bbf5c5d4f -Remarks ------------ -no remarks - - -Dependencies 2 +Dependencies 3 ----------- |Name|Version| |----------|:----| |[System.Runtime.CompilerServices.Unsafe](../../../../packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3)|4.5.3| +|[System.Runtime.CompilerServices.Unsafe](../../../../packages/nuget.org/system.runtime.compilerservices.unsafe/5.0.0)|5.0.0| |[System.Runtime.CompilerServices.Unsafe](../../../../packages/nuget.org/system.runtime.compilerservices.unsafe/6.0.0)|6.0.0| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.valuetuple/4.5.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.valuetuple/4.5.0/index.json index d470b858..4236a12b 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.valuetuple/4.5.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.valuetuple/4.5.0/index.json @@ -1,4 +1,5 @@ { + "$schema": "https://raw.githubusercontent.com/max-ieremenko/ThirdPartyLibraries/refs/heads/master/Docs/schema.package-index.json", "Source": "https://api.nuget.org/v3/index.json", "License": { "Code": "MIT", @@ -9,8 +10,8 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ + "net10.0", "net472", - "net6.0", "net8.0", "net9.0" ] diff --git a/Build/third-party-libraries/packages/nuget.org/system.valuetuple/4.5.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.valuetuple/4.5.0/readme.md index 501a7d65..e1fd99b2 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.valuetuple/4.5.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.valuetuple/4.5.0/readme.md @@ -3,7 +3,7 @@ System.ValueTuple [4.5.0](https://www.nuget.org/packages/System.ValueTuple/4.5.0 Used by: SqlDatabase internal -Target frameworks: net472, net6.0, net8.0, net9.0 +Target frameworks: net10.0, net472, net8.0, net9.0 License: [MIT](../../../../licenses/mit) @@ -28,13 +28,4 @@ System.ValueTuple 30ab651fcb4354552bd4891619a0bdd81e0ebdbf 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/Build/third-party-libraries/packages/nuget.org/system.valuetuple/4.5.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.valuetuple/4.5.0/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.valuetuple/4.5.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.valuetuple/4.5.0/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/readme.md b/Build/third-party-libraries/readme.md index 8ae4ed37..475afb2c 100644 --- a/Build/third-party-libraries/readme.md +++ b/Build/third-party-libraries/readme.md @@ -4,52 +4,64 @@ Licenses |Code|Requires approval|Requires third party notices|Packages count| |----------|:----|:----|:----| |[Apache-2.0](licenses/apache-2.0)|no|no|2| -|[BSD-2-Clause](licenses/bsd-2-clause)|no|no|1| -|[BSD-3-Clause](licenses/bsd-3-clause)|no|no|1| -|[MIT](licenses/mit)|no|no|48| +|[BSD-2-Clause](licenses/bsd-2-clause)|no|no|0| +|[BSD-3-Clause](licenses/bsd-3-clause)|no|no|2| +|[MIT](licenses/mit)|no|no|62| |[ms-net-library](licenses/ms-net-library)|no|no|1| |[PostgreSQL](licenses/postgresql)|no|no|1| -Packages 54 +Packages 68 -------- |Name|Version|Source|License|Used by| |----------|:----|:----|:----|:----| |[Castle.Core](packages/nuget.org/castle.core/5.1.1)|5.1.1|[nuget.org](https://www.nuget.org/packages/Castle.Core/5.1.1)|[Apache-2.0](licenses/apache-2.0)|SqlDatabase internal| -|[Dapper.StrongName](packages/nuget.org/dapper.strongname/2.1.35)|2.1.35|[nuget.org](https://www.nuget.org/packages/Dapper.StrongName/2.1.35)|[Apache-2.0](licenses/apache-2.0)|SqlDatabase internal| +|[Dapper.StrongName](packages/nuget.org/dapper.strongname/2.1.66)|2.1.66|[nuget.org](https://www.nuget.org/packages/Dapper.StrongName/2.1.66)|[Apache-2.0](licenses/apache-2.0)|SqlDatabase 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)|SqlDatabase internal| |[EmptyFiles](packages/nuget.org/emptyfiles/4.4.0)|4.4.0|[nuget.org](https://www.nuget.org/packages/EmptyFiles/4.4.0)|[MIT](licenses/mit)|SqlDatabase internal| +|[Microsoft.ApplicationInsights](packages/nuget.org/microsoft.applicationinsights/2.23.0)|2.23.0|[nuget.org](https://www.nuget.org/packages/Microsoft.ApplicationInsights/2.23.0)|[MIT](licenses/mit)|SqlDatabase 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)|SqlDatabase| +|[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)|SqlDatabase internal| |[Microsoft.Bcl.HashCode](packages/nuget.org/microsoft.bcl.hashcode/1.1.1)|1.1.1|[nuget.org](https://www.nuget.org/packages/Microsoft.Bcl.HashCode/1.1.1)|[MIT](licenses/mit)|SqlDatabase| -|[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)|SqlDatabase internal| +|[Microsoft.CodeCoverage](packages/nuget.org/microsoft.codecoverage/18.0.0)|18.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.CodeCoverage/18.0.0)|[MIT](licenses/mit)|SqlDatabase 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)|SqlDatabase internal| |[Microsoft.Extensions.DependencyInjection.Abstractions](packages/nuget.org/microsoft.extensions.dependencyinjection.abstractions/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0)|[MIT](licenses/mit)|SqlDatabase| -|[Microsoft.Extensions.Logging.Abstractions](packages/nuget.org/microsoft.extensions.logging.abstractions/7.0.1)|7.0.1|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Abstractions/7.0.1)|[MIT](licenses/mit)|SqlDatabase| +|[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)|SqlDatabase| |[Microsoft.Extensions.Logging.Abstractions](packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Abstractions/8.0.0)|[MIT](licenses/mit)|SqlDatabase| -|[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)|SqlDatabase 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)|SqlDatabase 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)|SqlDatabase internal| +|[Microsoft.Extensions.Logging.Abstractions](packages/nuget.org/microsoft.extensions.logging.abstractions/8.0.2)|8.0.2|[nuget.org](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Abstractions/8.0.2)|[MIT](licenses/mit)|SqlDatabase| +|[Microsoft.NET.Test.Sdk](packages/nuget.org/microsoft.net.test.sdk/18.0.0)|18.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.NET.Test.Sdk/18.0.0)|[MIT](licenses/mit)|SqlDatabase internal| +|[Microsoft.Testing.Extensions.Telemetry](packages/nuget.org/microsoft.testing.extensions.telemetry/1.7.3)|1.7.3|[nuget.org](https://www.nuget.org/packages/Microsoft.Testing.Extensions.Telemetry/1.7.3)|[MIT](licenses/mit)|SqlDatabase internal| +|[Microsoft.Testing.Extensions.TrxReport.Abstractions](packages/nuget.org/microsoft.testing.extensions.trxreport.abstractions/1.7.3)|1.7.3|[nuget.org](https://www.nuget.org/packages/Microsoft.Testing.Extensions.TrxReport.Abstractions/1.7.3)|[MIT](licenses/mit)|SqlDatabase internal| +|[Microsoft.Testing.Extensions.VSTestBridge](packages/nuget.org/microsoft.testing.extensions.vstestbridge/1.7.3)|1.7.3|[nuget.org](https://www.nuget.org/packages/Microsoft.Testing.Extensions.VSTestBridge/1.7.3)|[MIT](licenses/mit)|SqlDatabase internal| +|[Microsoft.Testing.Platform](packages/nuget.org/microsoft.testing.platform/1.7.3)|1.7.3|[nuget.org](https://www.nuget.org/packages/Microsoft.Testing.Platform/1.7.3)|[MIT](licenses/mit)|SqlDatabase internal| +|[Microsoft.Testing.Platform.MSBuild](packages/nuget.org/microsoft.testing.platform.msbuild/1.7.3)|1.7.3|[nuget.org](https://www.nuget.org/packages/Microsoft.Testing.Platform.MSBuild/1.7.3)|[MIT](licenses/mit)|SqlDatabase internal| +|[Microsoft.TestPlatform.AdapterUtilities](packages/nuget.org/microsoft.testplatform.adapterutilities/17.13.0)|17.13.0|[nuget.org](https://www.nuget.org/packages/Microsoft.TestPlatform.AdapterUtilities/17.13.0)|[MIT](licenses/mit)|SqlDatabase internal| +|[Microsoft.TestPlatform.ObjectModel](packages/nuget.org/microsoft.testplatform.objectmodel/17.13.0)|17.13.0|[nuget.org](https://www.nuget.org/packages/Microsoft.TestPlatform.ObjectModel/17.13.0)|[MIT](licenses/mit)|SqlDatabase internal| +|[Microsoft.TestPlatform.ObjectModel](packages/nuget.org/microsoft.testplatform.objectmodel/18.0.0)|18.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.TestPlatform.ObjectModel/18.0.0)|[MIT](licenses/mit)|SqlDatabase internal| +|[Microsoft.TestPlatform.TestHost](packages/nuget.org/microsoft.testplatform.testhost/18.0.0)|18.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.TestPlatform.TestHost/18.0.0)|[MIT](licenses/mit)|SqlDatabase internal| |[Microsoft.Win32.Registry](packages/nuget.org/microsoft.win32.registry/4.7.0)|4.7.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Win32.Registry/4.7.0)|[MIT](licenses/mit)|SqlDatabase| |[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)|SqlDatabase internal| -|[MySqlConnector](packages/nuget.org/mysqlconnector/2.3.7)|2.3.7|[nuget.org](https://www.nuget.org/packages/MySqlConnector/2.3.7)|[MIT](licenses/mit)|SqlDatabase| +|[MySqlConnector](packages/nuget.org/mysqlconnector/2.4.0)|2.4.0|[nuget.org](https://www.nuget.org/packages/MySqlConnector/2.4.0)|[MIT](licenses/mit)|SqlDatabase| |[NETStandard.Library](packages/nuget.org/netstandard.library/2.0.3)|2.0.3|[nuget.org](https://www.nuget.org/packages/NETStandard.Library/2.0.3)|[MIT](licenses/mit)|SqlDatabase| -|[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)|SqlDatabase internal| |[Newtonsoft.Json](packages/nuget.org/newtonsoft.json/13.0.3)|13.0.3|[nuget.org](https://www.nuget.org/packages/Newtonsoft.Json/13.0.3)|[MIT](licenses/mit)|SqlDatabase internal| -|[Npgsql](packages/nuget.org/npgsql/8.0.5)|8.0.5|[nuget.org](https://www.nuget.org/packages/Npgsql/8.0.5)|[PostgreSQL](licenses/postgresql)|SqlDatabase| -|[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)|SqlDatabase 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)|SqlDatabase internal| +|[Newtonsoft.Json](packages/nuget.org/newtonsoft.json/13.0.4)|13.0.4|[nuget.org](https://www.nuget.org/packages/Newtonsoft.Json/13.0.4)|[MIT](licenses/mit)|SqlDatabase internal| +|[Npgsql](packages/nuget.org/npgsql/8.0.7)|8.0.7|[nuget.org](https://www.nuget.org/packages/Npgsql/8.0.7)|[PostgreSQL](licenses/postgresql)|SqlDatabase| +|[NUnit](packages/nuget.org/nunit/4.4.0)|4.4.0|[nuget.org](https://www.nuget.org/packages/NUnit/4.4.0)|[MIT](licenses/mit)|SqlDatabase internal| +|[NUnit3TestAdapter](packages/nuget.org/nunit3testadapter/5.1.0)|5.1.0|[nuget.org](https://www.nuget.org/packages/NUnit3TestAdapter/5.1.0)|[MIT](licenses/mit)|SqlDatabase 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)|SqlDatabase| -|[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)|SqlDatabase 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)|SqlDatabase 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)|SqlDatabase 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)|SqlDatabase| |[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)|SqlDatabase internal| +|[System.Collections.Immutable](packages/nuget.org/system.collections.immutable/1.5.0)|1.5.0|[nuget.org](https://www.nuget.org/packages/System.Collections.Immutable/1.5.0)|[MIT](licenses/mit)|SqlDatabase internal| |[System.Collections.Immutable](packages/nuget.org/system.collections.immutable/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/System.Collections.Immutable/8.0.0)|[MIT](licenses/mit)|SqlDatabase| |[System.Data.SqlClient](packages/nuget.org/system.data.sqlclient/4.8.6)|4.8.6|[nuget.org](https://www.nuget.org/packages/System.Data.SqlClient/4.8.6)|[MIT](licenses/mit)|SqlDatabase| |[System.Diagnostics.DiagnosticSource](packages/nuget.org/system.diagnostics.diagnosticsource/4.7.0)|4.7.0|[nuget.org](https://www.nuget.org/packages/System.Diagnostics.DiagnosticSource/4.7.0)|[MIT](licenses/mit)|SqlDatabase| -|[System.Diagnostics.DiagnosticSource](packages/nuget.org/system.diagnostics.diagnosticsource/7.0.2)|7.0.2|[nuget.org](https://www.nuget.org/packages/System.Diagnostics.DiagnosticSource/7.0.2)|[MIT](licenses/mit)|SqlDatabase| +|[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)|SqlDatabase internal| |[System.Diagnostics.DiagnosticSource](packages/nuget.org/system.diagnostics.diagnosticsource/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/System.Diagnostics.DiagnosticSource/8.0.0)|[MIT](licenses/mit)|SqlDatabase| +|[System.Diagnostics.DiagnosticSource](packages/nuget.org/system.diagnostics.diagnosticsource/8.0.1)|8.0.1|[nuget.org](https://www.nuget.org/packages/System.Diagnostics.DiagnosticSource/8.0.1)|[MIT](licenses/mit)|SqlDatabase| |[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)|SqlDatabase internal| |[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)|SqlDatabase internal| |[System.Memory](packages/nuget.org/system.memory/4.5.4)|4.5.4|[nuget.org](https://www.nuget.org/packages/System.Memory/4.5.4)|[MIT](licenses/mit)|SqlDatabase| @@ -59,8 +71,10 @@ Packages 54 |[System.Reflection.Emit](packages/nuget.org/system.reflection.emit/4.7.0)|4.7.0|[nuget.org](https://www.nuget.org/packages/System.Reflection.Emit/4.7.0)|[MIT](licenses/mit)|SqlDatabase internal| |[System.Reflection.Emit.ILGeneration](packages/nuget.org/system.reflection.emit.ilgeneration/4.7.0)|4.7.0|[nuget.org](https://www.nuget.org/packages/System.Reflection.Emit.ILGeneration/4.7.0)|[MIT](licenses/mit)|SqlDatabase 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)|SqlDatabase internal| +|[System.Reflection.Metadata](packages/nuget.org/system.reflection.metadata/8.0.0)|8.0.0|[nuget.org](https://www.nuget.org/packages/System.Reflection.Metadata/8.0.0)|[MIT](licenses/mit)|SqlDatabase internal| |[System.Runtime.CompilerServices.Unsafe](packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3)|4.5.3|[nuget.org](https://www.nuget.org/packages/System.Runtime.CompilerServices.Unsafe/4.5.3)|[MIT](licenses/mit)|SqlDatabase internal| |[System.Runtime.CompilerServices.Unsafe](packages/nuget.org/system.runtime.compilerservices.unsafe/4.7.0)|4.7.0|[nuget.org](https://www.nuget.org/packages/System.Runtime.CompilerServices.Unsafe/4.7.0)|[MIT](licenses/mit)|SqlDatabase| +|[System.Runtime.CompilerServices.Unsafe](packages/nuget.org/system.runtime.compilerservices.unsafe/5.0.0)|5.0.0|[nuget.org](https://www.nuget.org/packages/System.Runtime.CompilerServices.Unsafe/5.0.0)|[MIT](licenses/mit)|SqlDatabase 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)|SqlDatabase| |[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)|SqlDatabase| |[System.Security.AccessControl](packages/nuget.org/system.security.accesscontrol/4.7.0)|4.7.0|[nuget.org](https://www.nuget.org/packages/System.Security.AccessControl/4.7.0)|[MIT](licenses/mit)|SqlDatabase| diff --git a/Examples/CSharpMirationStep/readme.md b/Examples/CSharpMirationStep/readme.md index fffbd9d3..ea619860 100644 --- a/Examples/CSharpMirationStep/readme.md +++ b/Examples/CSharpMirationStep/readme.md @@ -3,13 +3,13 @@ Any assembly script is -- .exe or .dll for target framework is 4.7.2+ -- .dll for .net 6.0+ +- .exe or .dll for target framework 4.7.2+ +- .dll for .net 8.0+ - has exactly one class with script implementation -This project is an example of script implementation. +[CSharpMirationStep](CSharpMirationStep.csproj) project is an example of script implementation. The build output is 2.1_2.2.dll with target framework 4.7.2. -Due to the current dependencies, 2.1_2.2.dll works well on .net 6.0+. +Due to the current dependencies, 2.1_2.2.dll works well on .net 8.0+. ## Script source diff --git a/Examples/PackageManagerConsole/PackageManagerConsole.sln b/Examples/PackageManagerConsole/PackageManagerConsole.sln deleted file mode 100644 index b8f6b67b..00000000 --- a/Examples/PackageManagerConsole/PackageManagerConsole.sln +++ /dev/null @@ -1,31 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 16.0.29411.108 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SolutionScripts", "SolutionScripts\SolutionScripts.csproj", "{88147D59-0AF8-4A73-9ACE-69A2B3E95109}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SomeApp", "SomeApp\SomeApp.csproj", "{6570715F-1074-4CEC-ABAA-D49D4E72BB83}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {88147D59-0AF8-4A73-9ACE-69A2B3E95109}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {88147D59-0AF8-4A73-9ACE-69A2B3E95109}.Debug|Any CPU.Build.0 = Debug|Any CPU - {88147D59-0AF8-4A73-9ACE-69A2B3E95109}.Release|Any CPU.ActiveCfg = Release|Any CPU - {88147D59-0AF8-4A73-9ACE-69A2B3E95109}.Release|Any CPU.Build.0 = Release|Any CPU - {6570715F-1074-4CEC-ABAA-D49D4E72BB83}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {6570715F-1074-4CEC-ABAA-D49D4E72BB83}.Debug|Any CPU.Build.0 = Debug|Any CPU - {6570715F-1074-4CEC-ABAA-D49D4E72BB83}.Release|Any CPU.ActiveCfg = Release|Any CPU - {6570715F-1074-4CEC-ABAA-D49D4E72BB83}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {011321DC-B8B8-4D4F-BC1C-0E07BA855C87} - EndGlobalSection -EndGlobal diff --git a/Examples/PackageManagerConsole/PackageManagerConsole.slnx b/Examples/PackageManagerConsole/PackageManagerConsole.slnx new file mode 100644 index 00000000..b3df17a8 --- /dev/null +++ b/Examples/PackageManagerConsole/PackageManagerConsole.slnx @@ -0,0 +1,4 @@ + + + + diff --git a/Examples/PackageManagerConsole/README.md b/Examples/PackageManagerConsole/README.md index 700e8978..7d1f2831 100644 --- a/Examples/PackageManagerConsole/README.md +++ b/Examples/PackageManagerConsole/README.md @@ -3,7 +3,7 @@ How to use SqlDatabase in the VS Package manager console This example shows how to combine [SolutionScripts](https://www.nuget.org/packages/SolutionScripts/) and SqlDatabase -Open this [solution](PackageManagerConsole.sln) in the Visual Studio. Open Package manage console (in the VS menu Tools/NuGet Package Manager/Package Manager Console) +Open [PackageManagerConsole](PackageManagerConsole.slnx) solution in the Visual Studio. Open Package manage console (in the VS menu Tools/NuGet Package Manager/Package Manager Console) ![Console](Sreen.png) diff --git a/Examples/PackageManagerConsole/SolutionScripts/SolutionScripts.csproj b/Examples/PackageManagerConsole/SolutionScripts/SolutionScripts.csproj index 4d82388a..0eef6287 100644 --- a/Examples/PackageManagerConsole/SolutionScripts/SolutionScripts.csproj +++ b/Examples/PackageManagerConsole/SolutionScripts/SolutionScripts.csproj @@ -10,7 +10,7 @@ - + diff --git a/Examples/PowerShellScript/readme.md b/Examples/PowerShellScript/readme.md index 51f26b0d..46623cc3 100644 --- a/Examples/PowerShellScript/readme.md +++ b/Examples/PowerShellScript/readme.md @@ -67,15 +67,15 @@ The version with which you run the module. Installed Powershell Desktop version. -### .net SDK tool for .net 6.0+ +### .net SDK tool for .net 8.0+ [![NuGet](https://img.shields.io/nuget/v/SqlDatabase.GlobalTool.svg?style=flat-square&label=nuget%20dotnet%20tool)](https://www.nuget.org/packages/SqlDatabase.GlobalTool/) Pre-installed Powershell Core is required, will be used by SqlDatabase as external component. Due to the Powershell Core design: +* SqlDatabase .net 10.0 can host Powershell Core versions below 7.7 * SqlDatabase .net 9.0 can host Powershell Core versions below 7.6 * SqlDatabase .net 8.0 can host Powershell Core versions below 7.5 -* SqlDatabase .net 6.0 can host Powershell Core versions below 7.3 see [PowerShell release history](https://learn.microsoft.com/en-us/powershell/scripting/install/powershell-support-lifecycle?view=powershell-7.2#release-history). diff --git a/LICENSE.md b/LICENSE.md index 0c2c8abc..8cb13069 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2018-2024 max-ieremenko +Copyright (c) 2018-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/README.md b/README.md index 6f585f6b..d4303d65 100644 --- a/README.md +++ b/README.md @@ -41,9 +41,9 @@ Installation PowerShell module is compatible with Powershell Core 7.2+ and PowerShell Desktop 5.1. -.net tool is compatible with .net sdk 9.0, 8.0 and 6.0. +.net tool is compatible with .net sdk 10.0, 9.0 and 8.0. -Command-line tool is compatible with .net runtime 9.0, 8.0, 6.0 and .net framework 4.7.2+. +Command-line tool is compatible with .net runtime 10.0, 9.0, 8.0 and .net framework 4.7.2+. ### PowerShell, from gallery diff --git a/Sources/Directory.Build.props b/Sources/Directory.Build.props index 71aabe6c..77a3eaa3 100644 --- a/Sources/Directory.Build.props +++ b/Sources/Directory.Build.props @@ -18,7 +18,7 @@ - 4.3.0 + 4.4.0 $(SqlDatabaseVersion) $(SqlDatabaseVersion).0 $(SqlDatabaseVersion).0 @@ -31,7 +31,7 @@ https://github.com/max-ieremenko/SqlDatabase/raw/master/icon-32.png icon-32.png MIT - (C) 2018-2024 Max Ieremenko. + (C) 2018-2025 Max Ieremenko. git sqlserver database postgresql mysql mysql-database sqlcmd migration-tool c-sharp command-line-tool miration-step sql-script sql-database database-migrations export-data false diff --git a/Sources/Directory.Packages.props b/Sources/Directory.Packages.props index 7da8048b..33a63f4a 100644 --- a/Sources/Directory.Packages.props +++ b/Sources/Directory.Packages.props @@ -1,27 +1,27 @@ - true - true + true + true - - + + + + + - - - - - - - - - - - + + + + + + + + - + \ No newline at end of file diff --git a/Sources/Docker/docker-compose.yml b/Sources/Docker/docker-compose.yml index 00319a8c..84a55dba 100644 --- a/Sources/Docker/docker-compose.yml +++ b/Sources/Docker/docker-compose.yml @@ -1,19 +1,18 @@ -version: "3" services: mssql: - image: sqldatabase/mssql:2017 + image: sqldatabase/mssql:2025 restart: always ports: - 1433:1433 pgsql: - image: sqldatabase/postgres:13.3 + image: sqldatabase/postgres:18.0 restart: always ports: - 5432:5432 mysql: - image: sqldatabase/mysql:8.0.25 + image: sqldatabase/mysql:9.4 restart: always ports: - 3306:3306 diff --git a/Sources/Docker/image-dotnet-runtime-10.0.dockerfile b/Sources/Docker/image-dotnet-runtime-10.0.dockerfile new file mode 100644 index 00000000..58af29cd --- /dev/null +++ b/Sources/Docker/image-dotnet-runtime-10.0.dockerfile @@ -0,0 +1,8 @@ +FROM mcr.microsoft.com/dotnet/runtime:10.0 + +RUN apt-get update && \ + apt-get install -y curl && \ + curl -s -L https://github.com/PowerShell/PowerShell/releases/download/v7.6.0-preview.4/powershell-preview_7.6.0-preview.4-1.deb_amd64.deb --output powershell.deb && \ + dpkg -i powershell.deb && \ + apt-get install -f && \ + rm -f powershell.deb \ No newline at end of file diff --git a/Sources/Docker/image-dotnet-runtime-6.0.dockerfile b/Sources/Docker/image-dotnet-runtime-6.0.dockerfile deleted file mode 100644 index bae78da2..00000000 --- a/Sources/Docker/image-dotnet-runtime-6.0.dockerfile +++ /dev/null @@ -1,8 +0,0 @@ -FROM mcr.microsoft.com/dotnet/runtime:6.0 - -RUN apt-get update && \ - apt-get install -y liblttng-ust0 curl && \ - curl -L https://github.com/PowerShell/PowerShell/releases/download/v7.2.24/powershell_7.2.24-1.deb_amd64.deb --output powershell.deb && \ - dpkg -i powershell.deb && \ - apt-get install -f && \ - rm -f powershell.deb \ No newline at end of file diff --git a/Sources/Docker/image-dotnet-runtime-8.0.dockerfile b/Sources/Docker/image-dotnet-runtime-8.0.dockerfile index 205a15a8..52c1af41 100644 --- a/Sources/Docker/image-dotnet-runtime-8.0.dockerfile +++ b/Sources/Docker/image-dotnet-runtime-8.0.dockerfile @@ -2,7 +2,7 @@ FROM mcr.microsoft.com/dotnet/runtime:8.0 RUN apt-get update && \ apt-get install -y curl && \ - curl -L https://github.com/PowerShell/PowerShell/releases/download/v7.4.6/powershell_7.4.6-1.deb_amd64.deb --output powershell.deb && \ + curl -s -L https://github.com/PowerShell/PowerShell/releases/download/v7.4.12/powershell_7.4.12-1.deb_amd64.deb --output powershell.deb && \ dpkg -i powershell.deb && \ apt-get install -f && \ rm -f powershell.deb \ No newline at end of file diff --git a/Sources/Docker/image-dotnet-runtime-9.0.dockerfile b/Sources/Docker/image-dotnet-runtime-9.0.dockerfile index a42a0a8d..79653e52 100644 --- a/Sources/Docker/image-dotnet-runtime-9.0.dockerfile +++ b/Sources/Docker/image-dotnet-runtime-9.0.dockerfile @@ -2,7 +2,7 @@ FROM mcr.microsoft.com/dotnet/runtime:9.0 RUN apt-get update && \ apt-get install -y curl && \ - curl -L https://github.com/PowerShell/PowerShell/releases/download/v7.5.0-preview.5/powershell-preview_7.5.0-preview.5-1.deb_amd64.deb --output powershell.deb && \ + curl -s -L https://github.com/PowerShell/PowerShell/releases/download/v7.5.3/powershell_7.5.3-1.deb_amd64.deb --output powershell.deb && \ dpkg -i powershell.deb && \ apt-get install -f && \ rm -f powershell.deb \ No newline at end of file diff --git a/Sources/Docker/image-dotnet-sdk-10.0.dockerfile b/Sources/Docker/image-dotnet-sdk-10.0.dockerfile new file mode 100644 index 00000000..9b7543b6 --- /dev/null +++ b/Sources/Docker/image-dotnet-sdk-10.0.dockerfile @@ -0,0 +1,7 @@ +FROM mcr.microsoft.com/dotnet/sdk:10.0 + +RUN apt-get update && \ + curl -s -L https://github.com/PowerShell/PowerShell/releases/download/v7.6.0-preview.4/powershell-preview_7.6.0-preview.4-1.deb_amd64.deb --output powershell.deb && \ + dpkg -i powershell.deb && \ + apt-get install -f && \ + rm -f powershell.deb \ No newline at end of file diff --git a/Sources/Docker/image-dotnet-sdk-6.0.dockerfile b/Sources/Docker/image-dotnet-sdk-6.0.dockerfile deleted file mode 100644 index 166a26fa..00000000 --- a/Sources/Docker/image-dotnet-sdk-6.0.dockerfile +++ /dev/null @@ -1,8 +0,0 @@ -FROM mcr.microsoft.com/dotnet/sdk:6.0 - -RUN apt-get update && \ - apt-get install -y liblttng-ust0 && \ - curl -L https://github.com/PowerShell/PowerShell/releases/download/v7.2.24/powershell_7.2.24-1.deb_amd64.deb --output powershell.deb && \ - dpkg -i powershell.deb && \ - apt-get install -f && \ - rm -f powershell.deb \ No newline at end of file diff --git a/Sources/Docker/image-dotnet-sdk-8.0.dockerfile b/Sources/Docker/image-dotnet-sdk-8.0.dockerfile index 4336701c..d55cfb6f 100644 --- a/Sources/Docker/image-dotnet-sdk-8.0.dockerfile +++ b/Sources/Docker/image-dotnet-sdk-8.0.dockerfile @@ -1,7 +1,7 @@ FROM mcr.microsoft.com/dotnet/sdk:8.0 RUN apt-get update && \ - curl -L https://github.com/PowerShell/PowerShell/releases/download/v7.4.6/powershell_7.4.6-1.deb_amd64.deb --output powershell.deb && \ + curl -s -L https://github.com/PowerShell/PowerShell/releases/download/v7.4.12/powershell_7.4.12-1.deb_amd64.deb --output powershell.deb && \ dpkg -i powershell.deb && \ apt-get install -f && \ rm -f powershell.deb \ No newline at end of file diff --git a/Sources/Docker/image-dotnet-sdk-9.0.dockerfile b/Sources/Docker/image-dotnet-sdk-9.0.dockerfile index 9241a03a..da3be044 100644 --- a/Sources/Docker/image-dotnet-sdk-9.0.dockerfile +++ b/Sources/Docker/image-dotnet-sdk-9.0.dockerfile @@ -1,7 +1,7 @@ FROM mcr.microsoft.com/dotnet/sdk:9.0 RUN apt-get update && \ - curl -L https://github.com/PowerShell/PowerShell/releases/download/v7.5.0-preview.5/powershell-preview_7.5.0-preview.5-1.deb_amd64.deb --output powershell.deb && \ + curl -s -L https://github.com/PowerShell/PowerShell/releases/download/v7.5.3/powershell_7.5.3-1.deb_amd64.deb --output powershell.deb && \ dpkg -i powershell.deb && \ apt-get install -f && \ rm -f powershell.deb \ No newline at end of file diff --git a/Sources/Docker/image-mssql-2017.dockerfile b/Sources/Docker/image-mssql-2017.dockerfile deleted file mode 100644 index 24069fc1..00000000 --- a/Sources/Docker/image-mssql-2017.dockerfile +++ /dev/null @@ -1,21 +0,0 @@ -FROM mcr.microsoft.com/mssql/server:2017-latest AS build - -ENV ACCEPT_EULA=Y \ - SA_PASSWORD=P@ssw0rd \ - MSSQL_PID=Express - -COPY mssql.create-database.sql /db/ - -RUN /opt/mssql/bin/sqlservr & \ - sleep 20 && \ - /opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P P@ssw0rd -l 300 -i /db/mssql.create-database.sql && \ - ls /var/opt/mssql/data/ && \ - pkill sqlservr - -FROM mcr.microsoft.com/mssql/server:2017-latest AS runtime - -ENV ACCEPT_EULA=Y \ - SA_PASSWORD=P@ssw0rd \ - MSSQL_PID=Express - -COPY --from=build /var/opt/mssql/data/* /var/opt/mssql/data/ \ No newline at end of file diff --git a/Sources/Docker/image-mssql.dockerfile b/Sources/Docker/image-mssql.dockerfile new file mode 100644 index 00000000..c7ecade0 --- /dev/null +++ b/Sources/Docker/image-mssql.dockerfile @@ -0,0 +1,21 @@ +FROM mcr.microsoft.com/mssql/server:2025-latest AS build + +ENV ACCEPT_EULA=Y \ + SA_PASSWORD=P@ssw0rd \ + MSSQL_PID=Express + +COPY mssql.create-database.sql /app/ + +RUN /opt/mssql/bin/sqlservr & \ + sleep 20 && \ + /opt/mssql-tools18/bin/sqlcmd -S localhost -U sa -P P@ssw0rd -l 300 -C -i /app/mssql.create-database.sql && \ + ls /var/opt/mssql/data/ && \ + pkill sqlservr + +FROM mcr.microsoft.com/mssql/server:2025-latest AS runtime + +ENV ACCEPT_EULA=Y \ + SA_PASSWORD=P@ssw0rd \ + MSSQL_PID=Express + +COPY --chown=mssql:mssql --from=build /var/opt/mssql/data/* /var/opt/mssql/data/ \ No newline at end of file diff --git a/Sources/Docker/image-mysql-8025.dockerfile b/Sources/Docker/image-mysql.dockerfile similarity index 83% rename from Sources/Docker/image-mysql-8025.dockerfile rename to Sources/Docker/image-mysql.dockerfile index 5f1971ab..cf08e8c7 100644 --- a/Sources/Docker/image-mysql-8025.dockerfile +++ b/Sources/Docker/image-mysql.dockerfile @@ -1,4 +1,4 @@ -FROM mysql:8.0.25 +FROM mysql:9.4 ENV MYSQL_ROOT_PASSWORD=qwerty diff --git a/Sources/Docker/image-postgres-133.dockerfile b/Sources/Docker/image-postgres.dockerfile similarity index 77% rename from Sources/Docker/image-postgres-133.dockerfile rename to Sources/Docker/image-postgres.dockerfile index 903ac9c8..7b75bcdb 100644 --- a/Sources/Docker/image-postgres-133.dockerfile +++ b/Sources/Docker/image-postgres.dockerfile @@ -1,4 +1,4 @@ -FROM postgres:13.3-alpine +FROM postgres:18.0-alpine ENV POSTGRES_PASSWORD=qwerty diff --git a/Sources/SqlDatabase.Adapter.AssemblyScripts.Test/AssemblyScriptTest.cs b/Sources/SqlDatabase.Adapter.AssemblyScripts.Test/AssemblyScriptTest.cs index 9e4f84b2..edf0598f 100644 --- a/Sources/SqlDatabase.Adapter.AssemblyScripts.Test/AssemblyScriptTest.cs +++ b/Sources/SqlDatabase.Adapter.AssemblyScripts.Test/AssemblyScriptTest.cs @@ -37,7 +37,7 @@ public void BeforeEachTest() #if NET472 var frameworkVersion = FrameworkVersion.Net472; #else - var frameworkVersion = FrameworkVersion.Net6; + var frameworkVersion = FrameworkVersion.Net8; #endif _sut = new AssemblyScript( frameworkVersion, diff --git a/Sources/SqlDatabase.Adapter.AssemblyScripts.Test/Net472/Net472SubDomainTest.StepWithSubDomain.cs b/Sources/SqlDatabase.Adapter.AssemblyScripts.Test/Net472/Net472SubDomainTest.StepWithSubDomain.cs index c7d0a033..81886610 100644 --- a/Sources/SqlDatabase.Adapter.AssemblyScripts.Test/Net472/Net472SubDomainTest.StepWithSubDomain.cs +++ b/Sources/SqlDatabase.Adapter.AssemblyScripts.Test/Net472/Net472SubDomainTest.StepWithSubDomain.cs @@ -1,8 +1,4 @@ #if NET472 -using System; -using System.Data; -using System.IO; - namespace SqlDatabase.Adapter.AssemblyScripts.Net472; public partial class Net472SubDomainTest diff --git a/Sources/SqlDatabase.Adapter.AssemblyScripts.Test/NetCore/NetCoreSubDomainTest.cs b/Sources/SqlDatabase.Adapter.AssemblyScripts.Test/NetCore/NetCoreSubDomainTest.cs index 3fbe3f8e..ee653398 100644 --- a/Sources/SqlDatabase.Adapter.AssemblyScripts.Test/NetCore/NetCoreSubDomainTest.cs +++ b/Sources/SqlDatabase.Adapter.AssemblyScripts.Test/NetCore/NetCoreSubDomainTest.cs @@ -37,7 +37,7 @@ public void BeforeEachTest() .Returns(0); _sut = SubDomainFactory.Create( - FrameworkVersion.Net6, + FrameworkVersion.Net8, log.Object, GetType().Assembly.Location, () => File.ReadAllBytes(GetType().Assembly.Location)) diff --git a/Sources/SqlDatabase.Adapter.AssemblyScripts.Test/SqlDatabase.Adapter.AssemblyScripts.Test.csproj b/Sources/SqlDatabase.Adapter.AssemblyScripts.Test/SqlDatabase.Adapter.AssemblyScripts.Test.csproj index 912de07e..d5655023 100644 --- a/Sources/SqlDatabase.Adapter.AssemblyScripts.Test/SqlDatabase.Adapter.AssemblyScripts.Test.csproj +++ b/Sources/SqlDatabase.Adapter.AssemblyScripts.Test/SqlDatabase.Adapter.AssemblyScripts.Test.csproj @@ -1,7 +1,7 @@  - net472;net6.0;net8.0;net9.0 + net472;net8.0;net9.0;net10.0 SqlDatabase.Adapter.AssemblyScripts NU1702 diff --git a/Sources/SqlDatabase.Adapter.MsSql.Test/SqlDatabase.Adapter.MsSql.Test.csproj b/Sources/SqlDatabase.Adapter.MsSql.Test/SqlDatabase.Adapter.MsSql.Test.csproj index cba2c657..3fc76468 100644 --- a/Sources/SqlDatabase.Adapter.MsSql.Test/SqlDatabase.Adapter.MsSql.Test.csproj +++ b/Sources/SqlDatabase.Adapter.MsSql.Test/SqlDatabase.Adapter.MsSql.Test.csproj @@ -1,7 +1,7 @@  - net472;net6.0;net8.0;net9.0 + net472;net8.0;net9.0;net10.0 SqlDatabase.Adapter.MsSql diff --git a/Sources/SqlDatabase.Adapter.MySql.Test/SqlDatabase.Adapter.MySql.Test.csproj b/Sources/SqlDatabase.Adapter.MySql.Test/SqlDatabase.Adapter.MySql.Test.csproj index 1150e2db..e1bc8a35 100644 --- a/Sources/SqlDatabase.Adapter.MySql.Test/SqlDatabase.Adapter.MySql.Test.csproj +++ b/Sources/SqlDatabase.Adapter.MySql.Test/SqlDatabase.Adapter.MySql.Test.csproj @@ -1,7 +1,7 @@  - net472;net6.0;net8.0;net9.0 + net472;net8.0;net9.0;net10.0 SqlDatabase.Adapter.MySql diff --git a/Sources/SqlDatabase.Adapter.PgSql.Test/SqlDatabase.Adapter.PgSql.Test.csproj b/Sources/SqlDatabase.Adapter.PgSql.Test/SqlDatabase.Adapter.PgSql.Test.csproj index 36575550..e0f0bedd 100644 --- a/Sources/SqlDatabase.Adapter.PgSql.Test/SqlDatabase.Adapter.PgSql.Test.csproj +++ b/Sources/SqlDatabase.Adapter.PgSql.Test/SqlDatabase.Adapter.PgSql.Test.csproj @@ -1,7 +1,7 @@  - net472;net6.0;net8.0;net9.0 + net472;net8.0;net9.0;net10.0 SqlDatabase.Adapter.PgSql diff --git a/Sources/SqlDatabase.Adapter.PowerShellScripts.Test/InstallationSeekerTest.cs b/Sources/SqlDatabase.Adapter.PowerShellScripts.Test/InstallationSeekerTest.cs index 3dc5a295..4ca71bf2 100644 --- a/Sources/SqlDatabase.Adapter.PowerShellScripts.Test/InstallationSeekerTest.cs +++ b/Sources/SqlDatabase.Adapter.PowerShellScripts.Test/InstallationSeekerTest.cs @@ -16,12 +16,12 @@ public void BeforeAllTests() { #if NET472 var version = FrameworkVersion.Net472; -#elif NET6_0 - var version = FrameworkVersion.Net6; #elif NET8_0 var version = FrameworkVersion.Net8; -#else +#elif NET9_0 var version = FrameworkVersion.Net9; +#else + var version = FrameworkVersion.Net10; #endif _runtime = new HostedRuntime(false, RuntimeInformation.IsOSPlatform(OSPlatform.Windows), version); diff --git a/Sources/SqlDatabase.Adapter.PowerShellScripts.Test/PowerShellTest.cs b/Sources/SqlDatabase.Adapter.PowerShellScripts.Test/PowerShellTest.cs index cca9ddd1..eb0b2cf8 100644 --- a/Sources/SqlDatabase.Adapter.PowerShellScripts.Test/PowerShellTest.cs +++ b/Sources/SqlDatabase.Adapter.PowerShellScripts.Test/PowerShellTest.cs @@ -34,12 +34,12 @@ public void BeforeAllTests() #if NET472 var version = FrameworkVersion.Net472; -#elif NET6_0 - var version = FrameworkVersion.Net6; #elif NET8_0 var version = FrameworkVersion.Net8; -#else +#elif NET9_0 var version = FrameworkVersion.Net9; +#else + var version = FrameworkVersion.Net10; #endif var runtime = new HostedRuntime(false, RuntimeInformation.IsOSPlatform(OSPlatform.Windows), version); diff --git a/Sources/SqlDatabase.Adapter.PowerShellScripts.Test/SqlDatabase.Adapter.PowerShellScripts.Test.csproj b/Sources/SqlDatabase.Adapter.PowerShellScripts.Test/SqlDatabase.Adapter.PowerShellScripts.Test.csproj index 51aba3f1..60f69f1e 100644 --- a/Sources/SqlDatabase.Adapter.PowerShellScripts.Test/SqlDatabase.Adapter.PowerShellScripts.Test.csproj +++ b/Sources/SqlDatabase.Adapter.PowerShellScripts.Test/SqlDatabase.Adapter.PowerShellScripts.Test.csproj @@ -1,7 +1,7 @@  - net472;net6.0;net8.0;net9.0 + net472;net8.0;net9.0;net10.0 SqlDatabase.Adapter.PowerShellScripts diff --git a/Sources/SqlDatabase.Adapter.PowerShellScripts/InstallationSeeker.cs b/Sources/SqlDatabase.Adapter.PowerShellScripts/InstallationSeeker.cs index 4544234b..93b85021 100644 --- a/Sources/SqlDatabase.Adapter.PowerShellScripts/InstallationSeeker.cs +++ b/Sources/SqlDatabase.Adapter.PowerShellScripts/InstallationSeeker.cs @@ -72,6 +72,11 @@ public static bool TryGetInfo(string installationPath, out InstallationInfo info private static bool IsCompatibleVersion(FrameworkVersion runtimeVersion, Version version) { + if (runtimeVersion == FrameworkVersion.Net10) + { + return version < new Version("7.7"); + } + if (runtimeVersion == FrameworkVersion.Net9) { return version < new Version("7.6"); @@ -82,11 +87,6 @@ private static bool IsCompatibleVersion(FrameworkVersion runtimeVersion, Version return version < new Version("7.5"); } - if (runtimeVersion == FrameworkVersion.Net6) - { - return version < new Version("7.3"); - } - return false; } } \ No newline at end of file diff --git a/Sources/SqlDatabase.Adapter.Sql.Test/SqlDatabase.Adapter.Sql.Test.csproj b/Sources/SqlDatabase.Adapter.Sql.Test/SqlDatabase.Adapter.Sql.Test.csproj index ae8edb37..93b9a928 100644 --- a/Sources/SqlDatabase.Adapter.Sql.Test/SqlDatabase.Adapter.Sql.Test.csproj +++ b/Sources/SqlDatabase.Adapter.Sql.Test/SqlDatabase.Adapter.Sql.Test.csproj @@ -1,7 +1,7 @@  - net472;net6.0;net8.0;net9.0 + net472;net8.0;net9.0;net10.0 SqlDatabase.Adapter.Sql diff --git a/Sources/SqlDatabase.Adapter/HostedRuntime.cs b/Sources/SqlDatabase.Adapter/HostedRuntime.cs index cf71b8f4..6e6c0260 100644 --- a/Sources/SqlDatabase.Adapter/HostedRuntime.cs +++ b/Sources/SqlDatabase.Adapter/HostedRuntime.cs @@ -3,9 +3,9 @@ public enum FrameworkVersion { Net472, - Net6, Net8, - Net9 + Net9, + Net10 } public readonly struct HostedRuntime diff --git a/Sources/SqlDatabase.CommandLine.Test/SqlDatabase.CommandLine.Test.csproj b/Sources/SqlDatabase.CommandLine.Test/SqlDatabase.CommandLine.Test.csproj index 3c31399e..46177c09 100644 --- a/Sources/SqlDatabase.CommandLine.Test/SqlDatabase.CommandLine.Test.csproj +++ b/Sources/SqlDatabase.CommandLine.Test/SqlDatabase.CommandLine.Test.csproj @@ -1,7 +1,7 @@  - net472;net6.0;net8.0;net9.0 + net472;net8.0;net9.0;net10.0 SqlDatabase.CommandLine diff --git a/Sources/SqlDatabase.Configuration.Test/SqlDatabase.Configuration.Test.csproj b/Sources/SqlDatabase.Configuration.Test/SqlDatabase.Configuration.Test.csproj index 122d2232..d7d95ec7 100644 --- a/Sources/SqlDatabase.Configuration.Test/SqlDatabase.Configuration.Test.csproj +++ b/Sources/SqlDatabase.Configuration.Test/SqlDatabase.Configuration.Test.csproj @@ -1,7 +1,7 @@  - net472;net6.0;net8.0;net9.0 + net472;net8.0;net9.0;net10.0 SqlDatabase.Configuration diff --git a/Sources/SqlDatabase.FileSystem.Test/SqlDatabase.FileSystem.Test.csproj b/Sources/SqlDatabase.FileSystem.Test/SqlDatabase.FileSystem.Test.csproj index 122d5ab1..9c881d0b 100644 --- a/Sources/SqlDatabase.FileSystem.Test/SqlDatabase.FileSystem.Test.csproj +++ b/Sources/SqlDatabase.FileSystem.Test/SqlDatabase.FileSystem.Test.csproj @@ -1,7 +1,7 @@  - net472;net6.0;net8.0;net9.0 + net472;net8.0;net9.0;net10.0 SqlDatabase.FileSystem diff --git a/Sources/SqlDatabase.Package/nuget/package.nuspec b/Sources/SqlDatabase.Package/nuget/package.nuspec index ba320900..7186f54a 100644 --- a/Sources/SqlDatabase.Package/nuget/package.nuspec +++ b/Sources/SqlDatabase.Package/nuget/package.nuspec @@ -14,7 +14,7 @@ Command-line tool and PowerShell module for MSSQL Server, PostgreSQL and MySQL. SqlDatabase is a tool for MSSQL Server, PostgreSQL and MySQL, allows to execute scripts, database migrations and export data. https://github.com/max-ieremenko/SqlDatabase/releases/tag/$Version$ - (C) 2018-2024 Max Ieremenko. + (C) 2018-2025 Max Ieremenko. sqlserver postgresql mysql mysql-database sqlcmd migration-tool c-sharp command-line-tool migration-step sql-script sql-database database-migrations export-data diff --git a/Sources/SqlDatabase.PowerShell/SqlDatabase.psd1 b/Sources/SqlDatabase.PowerShell/SqlDatabase.psd1 index 95cc5225..1e1bbb62 100644 Binary files a/Sources/SqlDatabase.PowerShell/SqlDatabase.psd1 and b/Sources/SqlDatabase.PowerShell/SqlDatabase.psd1 differ diff --git a/Sources/SqlDatabase.Sequence.Test/SqlDatabase.Sequence.Test.csproj b/Sources/SqlDatabase.Sequence.Test/SqlDatabase.Sequence.Test.csproj index c5cb5b23..a1a0d7f9 100644 --- a/Sources/SqlDatabase.Sequence.Test/SqlDatabase.Sequence.Test.csproj +++ b/Sources/SqlDatabase.Sequence.Test/SqlDatabase.Sequence.Test.csproj @@ -1,7 +1,7 @@  - net472;net6.0;net8.0;net9.0 + net472;net8.0;net9.0;net10.0 SqlDatabase.Sequence diff --git a/Sources/SqlDatabase.Test/Configuration/HostedRuntimeResolverTest.cs b/Sources/SqlDatabase.Test/Configuration/HostedRuntimeResolverTest.cs index fd77e28c..9d816b14 100644 --- a/Sources/SqlDatabase.Test/Configuration/HostedRuntimeResolverTest.cs +++ b/Sources/SqlDatabase.Test/Configuration/HostedRuntimeResolverTest.cs @@ -17,12 +17,12 @@ public void GetRuntime() #if NET472 var expected = FrameworkVersion.Net472; -#elif NET6_0 - var expected = FrameworkVersion.Net6; #elif NET8_0 var expected = FrameworkVersion.Net8; -#else +#elif NET9_0 var expected = FrameworkVersion.Net9; +#else + var expected = FrameworkVersion.Net10; #endif var actual = HostedRuntimeResolver.GetRuntime(false); @@ -32,13 +32,13 @@ public void GetRuntime() [Test] [TestCase(".NET Framework 4.8.9181.0", "4.0.30319.42000", FrameworkVersion.Net472, TestName = ".net 4.8")] - [TestCase(".NET Core 4.6.26725.06", "4.0.30319.42000", FrameworkVersion.Net6, TestName = "6.1.0-ubuntu-18.04")] - [TestCase(".NET Core 4.6.27317.03", "4.0.30319.42000", FrameworkVersion.Net6, TestName = "6.1.3-ubuntu-18.04")] - [TestCase(".NET Core 4.6.27817.01", "4.0.30319.42000", FrameworkVersion.Net6, TestName = "6.2.2-ubuntu-18.04")] - [TestCase(".NET Core 4.6.28008.01", "4.0.30319.42000", FrameworkVersion.Net6, TestName = "6.2.4-ubuntu-18.04")] - [TestCase(".NET Core 3.1.2", "3.1.2", FrameworkVersion.Net6, TestName = "7.0.0-ubuntu-18.04")] - [TestCase(".NET Core 3.1.6", "3.1.6", FrameworkVersion.Net6, TestName = "7.0.0-ubuntu-18.04")] - [TestCase(".NET 5.0.0", "5.0.0", FrameworkVersion.Net6, TestName = "7.1.0-ubuntu-18.04")] + [TestCase(".NET Core 4.6.26725.06", "4.0.30319.42000", FrameworkVersion.Net8, TestName = "6.1.0-ubuntu-18.04")] + [TestCase(".NET Core 4.6.27317.03", "4.0.30319.42000", FrameworkVersion.Net8, TestName = "6.1.3-ubuntu-18.04")] + [TestCase(".NET Core 4.6.27817.01", "4.0.30319.42000", FrameworkVersion.Net8, TestName = "6.2.2-ubuntu-18.04")] + [TestCase(".NET Core 4.6.28008.01", "4.0.30319.42000", FrameworkVersion.Net8, TestName = "6.2.4-ubuntu-18.04")] + [TestCase(".NET Core 3.1.2", "3.1.2", FrameworkVersion.Net8, TestName = "7.0.0-ubuntu-18.04")] + [TestCase(".NET Core 3.1.6", "3.1.6", FrameworkVersion.Net8, TestName = "7.0.0-ubuntu-18.04")] + [TestCase(".NET 5.0.0", "5.0.0", FrameworkVersion.Net8, TestName = "7.1.0-ubuntu-18.04")] public void ResolveVersion(string description, string version, FrameworkVersion expected) { HostedRuntimeResolver.ResolveVersion(description, new Version(version)).ShouldBe(expected); diff --git a/Sources/SqlDatabase.Test/SqlDatabase.Test.csproj b/Sources/SqlDatabase.Test/SqlDatabase.Test.csproj index aaee2585..2fb03448 100644 --- a/Sources/SqlDatabase.Test/SqlDatabase.Test.csproj +++ b/Sources/SqlDatabase.Test/SqlDatabase.Test.csproj @@ -1,7 +1,7 @@  - net472;net6.0;net8.0;net9.0 + net472;net8.0;net9.0;net10.0 SqlDatabase diff --git a/Sources/SqlDatabase.sln b/Sources/SqlDatabase.sln deleted file mode 100644 index 1b5abbea..00000000 --- a/Sources/SqlDatabase.sln +++ /dev/null @@ -1,218 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.8.34227.203 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{41240983-0CDD-4312-AB28-7FA8DE338126}" - ProjectSection(SolutionItems) = preProject - StyleCope.ruleset = StyleCope.ruleset - EndProjectSection -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Examples", "Examples", "{D68226E5-B167-48D9-985C-B13CA6538634}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SqlDatabase", "SqlDatabase\SqlDatabase.csproj", "{0A34B57C-291A-486B-8CD7-3AE55B6ACCD9}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SqlDatabase.Test", "SqlDatabase.Test\SqlDatabase.Test.csproj", "{1B458B5B-D39C-4247-BFB9-A5D9B8D4D85C}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CSharpMirationStep", "..\Examples\CSharpMirationStep\CSharpMirationStep.csproj", "{8FE68E2C-586F-4E22-BDA3-4E65473BC3D7}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SqlDatabase.PowerShell", "SqlDatabase.PowerShell\SqlDatabase.PowerShell.csproj", "{47A4BE25-2B58-484C-956D-F1DF53A9269D}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SqlDatabase.PowerShell.Test", "SqlDatabase.PowerShell.Test\SqlDatabase.PowerShell.Test.csproj", "{4F35E6D2-99FB-4B7B-90A5-3BFA936FB8CF}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SqlDatabase.Package", "SqlDatabase.Package\SqlDatabase.Package.csproj", "{F986789D-F9B3-42B4-AA4B-4C0A63011F5D}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SqlDatabase.FileSystem", "SqlDatabase.FileSystem\SqlDatabase.FileSystem.csproj", "{8BFF1266-C87C-4072-B16F-7A715D0A22B8}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SqlDatabase.FileSystem.Test", "SqlDatabase.FileSystem.Test\SqlDatabase.FileSystem.Test.csproj", "{4334C327-A578-4247-B1CC-23A63B2CC7F2}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SqlDatabase.TestApi", "SqlDatabase.TestApi\SqlDatabase.TestApi.csproj", "{8724A867-C5F5-4A7C-B414-D84AB9830AA0}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{6E9C8ACC-7A1B-47F4-B7C0-78DE8C931A08}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SqlDatabase.Adapter", "SqlDatabase.Adapter\SqlDatabase.Adapter.csproj", "{CDC9677C-6205-402B-ADE2-C958B8A7DD24}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SqlDatabase.Adapter.AssemblyScripts", "SqlDatabase.Adapter.AssemblyScripts\SqlDatabase.Adapter.AssemblyScripts.csproj", "{A5D5FEF3-6675-4E1A-9A7F-C3B3CDB3ACB5}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SqlDatabase.Adapter.AssemblyScripts.Test", "SqlDatabase.Adapter.AssemblyScripts.Test\SqlDatabase.Adapter.AssemblyScripts.Test.csproj", "{68DC9F11-567F-4A51-85E6-4C87994F9FFF}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SqlDatabase.Adapter.PowerShellScripts", "SqlDatabase.Adapter.PowerShellScripts\SqlDatabase.Adapter.PowerShellScripts.csproj", "{F8FEE835-4DFB-4143-BC93-EB7C50C951CB}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SqlDatabase.Adapter.PowerShellScripts.Test", "SqlDatabase.Adapter.PowerShellScripts.Test\SqlDatabase.Adapter.PowerShellScripts.Test.csproj", "{4539721A-947F-4AD1-B007-EE695761B8F9}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SqlDatabase.Sequence", "SqlDatabase.Sequence\SqlDatabase.Sequence.csproj", "{AB3E3C7B-1475-4967-84DA-970D663D6FA3}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SqlDatabase.Sequence.Test", "SqlDatabase.Sequence.Test\SqlDatabase.Sequence.Test.csproj", "{1C4B4036-9C17-49AD-B087-A4D044296D1A}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SqlDatabase.Adapter.MsSql", "SqlDatabase.Adapter.MsSql\SqlDatabase.Adapter.MsSql.csproj", "{D45B3C71-75DF-4613-B0CD-356C7998BE27}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SqlDatabase.Adapter.MsSql.Test", "SqlDatabase.Adapter.MsSql.Test\SqlDatabase.Adapter.MsSql.Test.csproj", "{93FBF3ED-A6F3-4EBF-8779-A398D6654C03}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SqlDatabase.Adapter.Sql", "SqlDatabase.Adapter.Sql\SqlDatabase.Adapter.Sql.csproj", "{267D99B6-4882-4ECE-8EEC-A15216D97692}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SqlDatabase.Adapter.Sql.Test", "SqlDatabase.Adapter.Sql.Test\SqlDatabase.Adapter.Sql.Test.csproj", "{74003456-8C80-402A-AD68-24B02350ADDC}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SqlDatabase.Adapter.PgSql", "SqlDatabase.Adapter.PgSql\SqlDatabase.Adapter.PgSql.csproj", "{B6CB9CE4-ECA7-40AC-8926-AE2CBCCDB172}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SqlDatabase.Adapter.PgSql.Test", "SqlDatabase.Adapter.PgSql.Test\SqlDatabase.Adapter.PgSql.Test.csproj", "{33749EF7-49CE-4564-BF9D-5713806CC646}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SqlDatabase.Adapter.MySql", "SqlDatabase.Adapter.MySql\SqlDatabase.Adapter.MySql.csproj", "{49B103C8-958D-41B2-AB22-EDF029947AB1}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SqlDatabase.Adapter.MySql.Test", "SqlDatabase.Adapter.MySql.Test\SqlDatabase.Adapter.MySql.Test.csproj", "{D017ECF1-F2E3-4EAF-970B-F46991AD86F6}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SqlDatabase.Configuration", "SqlDatabase.Configuration\SqlDatabase.Configuration.csproj", "{A351BD5C-F646-42BB-A1E0-EA63E88934D9}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SqlDatabase.Configuration.Test", "SqlDatabase.Configuration.Test\SqlDatabase.Configuration.Test.csproj", "{1D6B0790-DE5A-4057-AC65-76FA2E7EF198}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SqlDatabase.CommandLine", "SqlDatabase.CommandLine\SqlDatabase.CommandLine.csproj", "{627ED9FC-20A6-48EF-90D7-7888397CF712}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SqlDatabase.CommandLine.Test", "SqlDatabase.CommandLine.Test\SqlDatabase.CommandLine.Test.csproj", "{E0ACD46D-CE78-4B04-B0F7-110ACE118EAD}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SqlDatabase.PowerShell.Internal", "SqlDatabase.PowerShell.Internal\SqlDatabase.PowerShell.Internal.csproj", "{87EE2F0A-DF01-4035-B202-BE5F96C09FFA}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {0A34B57C-291A-486B-8CD7-3AE55B6ACCD9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {0A34B57C-291A-486B-8CD7-3AE55B6ACCD9}.Debug|Any CPU.Build.0 = Debug|Any CPU - {0A34B57C-291A-486B-8CD7-3AE55B6ACCD9}.Release|Any CPU.ActiveCfg = Release|Any CPU - {0A34B57C-291A-486B-8CD7-3AE55B6ACCD9}.Release|Any CPU.Build.0 = Release|Any CPU - {1B458B5B-D39C-4247-BFB9-A5D9B8D4D85C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {1B458B5B-D39C-4247-BFB9-A5D9B8D4D85C}.Debug|Any CPU.Build.0 = Debug|Any CPU - {1B458B5B-D39C-4247-BFB9-A5D9B8D4D85C}.Release|Any CPU.ActiveCfg = Release|Any CPU - {1B458B5B-D39C-4247-BFB9-A5D9B8D4D85C}.Release|Any CPU.Build.0 = Release|Any CPU - {8FE68E2C-586F-4E22-BDA3-4E65473BC3D7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {8FE68E2C-586F-4E22-BDA3-4E65473BC3D7}.Debug|Any CPU.Build.0 = Debug|Any CPU - {8FE68E2C-586F-4E22-BDA3-4E65473BC3D7}.Release|Any CPU.ActiveCfg = Release|Any CPU - {8FE68E2C-586F-4E22-BDA3-4E65473BC3D7}.Release|Any CPU.Build.0 = Release|Any CPU - {47A4BE25-2B58-484C-956D-F1DF53A9269D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {47A4BE25-2B58-484C-956D-F1DF53A9269D}.Debug|Any CPU.Build.0 = Debug|Any CPU - {47A4BE25-2B58-484C-956D-F1DF53A9269D}.Release|Any CPU.ActiveCfg = Release|Any CPU - {47A4BE25-2B58-484C-956D-F1DF53A9269D}.Release|Any CPU.Build.0 = Release|Any CPU - {4F35E6D2-99FB-4B7B-90A5-3BFA936FB8CF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {4F35E6D2-99FB-4B7B-90A5-3BFA936FB8CF}.Debug|Any CPU.Build.0 = Debug|Any CPU - {4F35E6D2-99FB-4B7B-90A5-3BFA936FB8CF}.Release|Any CPU.ActiveCfg = Release|Any CPU - {4F35E6D2-99FB-4B7B-90A5-3BFA936FB8CF}.Release|Any CPU.Build.0 = Release|Any CPU - {F986789D-F9B3-42B4-AA4B-4C0A63011F5D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {F986789D-F9B3-42B4-AA4B-4C0A63011F5D}.Debug|Any CPU.Build.0 = Debug|Any CPU - {F986789D-F9B3-42B4-AA4B-4C0A63011F5D}.Release|Any CPU.ActiveCfg = Release|Any CPU - {F986789D-F9B3-42B4-AA4B-4C0A63011F5D}.Release|Any CPU.Build.0 = Release|Any CPU - {8BFF1266-C87C-4072-B16F-7A715D0A22B8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {8BFF1266-C87C-4072-B16F-7A715D0A22B8}.Debug|Any CPU.Build.0 = Debug|Any CPU - {8BFF1266-C87C-4072-B16F-7A715D0A22B8}.Release|Any CPU.ActiveCfg = Release|Any CPU - {8BFF1266-C87C-4072-B16F-7A715D0A22B8}.Release|Any CPU.Build.0 = Release|Any CPU - {4334C327-A578-4247-B1CC-23A63B2CC7F2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {4334C327-A578-4247-B1CC-23A63B2CC7F2}.Debug|Any CPU.Build.0 = Debug|Any CPU - {4334C327-A578-4247-B1CC-23A63B2CC7F2}.Release|Any CPU.ActiveCfg = Release|Any CPU - {4334C327-A578-4247-B1CC-23A63B2CC7F2}.Release|Any CPU.Build.0 = Release|Any CPU - {8724A867-C5F5-4A7C-B414-D84AB9830AA0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {8724A867-C5F5-4A7C-B414-D84AB9830AA0}.Debug|Any CPU.Build.0 = Debug|Any CPU - {8724A867-C5F5-4A7C-B414-D84AB9830AA0}.Release|Any CPU.ActiveCfg = Release|Any CPU - {8724A867-C5F5-4A7C-B414-D84AB9830AA0}.Release|Any CPU.Build.0 = Release|Any CPU - {CDC9677C-6205-402B-ADE2-C958B8A7DD24}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {CDC9677C-6205-402B-ADE2-C958B8A7DD24}.Debug|Any CPU.Build.0 = Debug|Any CPU - {CDC9677C-6205-402B-ADE2-C958B8A7DD24}.Release|Any CPU.ActiveCfg = Release|Any CPU - {CDC9677C-6205-402B-ADE2-C958B8A7DD24}.Release|Any CPU.Build.0 = Release|Any CPU - {A5D5FEF3-6675-4E1A-9A7F-C3B3CDB3ACB5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {A5D5FEF3-6675-4E1A-9A7F-C3B3CDB3ACB5}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A5D5FEF3-6675-4E1A-9A7F-C3B3CDB3ACB5}.Release|Any CPU.ActiveCfg = Release|Any CPU - {A5D5FEF3-6675-4E1A-9A7F-C3B3CDB3ACB5}.Release|Any CPU.Build.0 = Release|Any CPU - {68DC9F11-567F-4A51-85E6-4C87994F9FFF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {68DC9F11-567F-4A51-85E6-4C87994F9FFF}.Debug|Any CPU.Build.0 = Debug|Any CPU - {68DC9F11-567F-4A51-85E6-4C87994F9FFF}.Release|Any CPU.ActiveCfg = Release|Any CPU - {68DC9F11-567F-4A51-85E6-4C87994F9FFF}.Release|Any CPU.Build.0 = Release|Any CPU - {F8FEE835-4DFB-4143-BC93-EB7C50C951CB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {F8FEE835-4DFB-4143-BC93-EB7C50C951CB}.Debug|Any CPU.Build.0 = Debug|Any CPU - {F8FEE835-4DFB-4143-BC93-EB7C50C951CB}.Release|Any CPU.ActiveCfg = Release|Any CPU - {F8FEE835-4DFB-4143-BC93-EB7C50C951CB}.Release|Any CPU.Build.0 = Release|Any CPU - {4539721A-947F-4AD1-B007-EE695761B8F9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {4539721A-947F-4AD1-B007-EE695761B8F9}.Debug|Any CPU.Build.0 = Debug|Any CPU - {4539721A-947F-4AD1-B007-EE695761B8F9}.Release|Any CPU.ActiveCfg = Release|Any CPU - {4539721A-947F-4AD1-B007-EE695761B8F9}.Release|Any CPU.Build.0 = Release|Any CPU - {AB3E3C7B-1475-4967-84DA-970D663D6FA3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {AB3E3C7B-1475-4967-84DA-970D663D6FA3}.Debug|Any CPU.Build.0 = Debug|Any CPU - {AB3E3C7B-1475-4967-84DA-970D663D6FA3}.Release|Any CPU.ActiveCfg = Release|Any CPU - {AB3E3C7B-1475-4967-84DA-970D663D6FA3}.Release|Any CPU.Build.0 = Release|Any CPU - {1C4B4036-9C17-49AD-B087-A4D044296D1A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {1C4B4036-9C17-49AD-B087-A4D044296D1A}.Debug|Any CPU.Build.0 = Debug|Any CPU - {1C4B4036-9C17-49AD-B087-A4D044296D1A}.Release|Any CPU.ActiveCfg = Release|Any CPU - {1C4B4036-9C17-49AD-B087-A4D044296D1A}.Release|Any CPU.Build.0 = Release|Any CPU - {D45B3C71-75DF-4613-B0CD-356C7998BE27}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {D45B3C71-75DF-4613-B0CD-356C7998BE27}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D45B3C71-75DF-4613-B0CD-356C7998BE27}.Release|Any CPU.ActiveCfg = Release|Any CPU - {D45B3C71-75DF-4613-B0CD-356C7998BE27}.Release|Any CPU.Build.0 = Release|Any CPU - {93FBF3ED-A6F3-4EBF-8779-A398D6654C03}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {93FBF3ED-A6F3-4EBF-8779-A398D6654C03}.Debug|Any CPU.Build.0 = Debug|Any CPU - {93FBF3ED-A6F3-4EBF-8779-A398D6654C03}.Release|Any CPU.ActiveCfg = Release|Any CPU - {93FBF3ED-A6F3-4EBF-8779-A398D6654C03}.Release|Any CPU.Build.0 = Release|Any CPU - {267D99B6-4882-4ECE-8EEC-A15216D97692}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {267D99B6-4882-4ECE-8EEC-A15216D97692}.Debug|Any CPU.Build.0 = Debug|Any CPU - {267D99B6-4882-4ECE-8EEC-A15216D97692}.Release|Any CPU.ActiveCfg = Release|Any CPU - {267D99B6-4882-4ECE-8EEC-A15216D97692}.Release|Any CPU.Build.0 = Release|Any CPU - {74003456-8C80-402A-AD68-24B02350ADDC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {74003456-8C80-402A-AD68-24B02350ADDC}.Debug|Any CPU.Build.0 = Debug|Any CPU - {74003456-8C80-402A-AD68-24B02350ADDC}.Release|Any CPU.ActiveCfg = Release|Any CPU - {74003456-8C80-402A-AD68-24B02350ADDC}.Release|Any CPU.Build.0 = Release|Any CPU - {B6CB9CE4-ECA7-40AC-8926-AE2CBCCDB172}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {B6CB9CE4-ECA7-40AC-8926-AE2CBCCDB172}.Debug|Any CPU.Build.0 = Debug|Any CPU - {B6CB9CE4-ECA7-40AC-8926-AE2CBCCDB172}.Release|Any CPU.ActiveCfg = Release|Any CPU - {B6CB9CE4-ECA7-40AC-8926-AE2CBCCDB172}.Release|Any CPU.Build.0 = Release|Any CPU - {33749EF7-49CE-4564-BF9D-5713806CC646}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {33749EF7-49CE-4564-BF9D-5713806CC646}.Debug|Any CPU.Build.0 = Debug|Any CPU - {33749EF7-49CE-4564-BF9D-5713806CC646}.Release|Any CPU.ActiveCfg = Release|Any CPU - {33749EF7-49CE-4564-BF9D-5713806CC646}.Release|Any CPU.Build.0 = Release|Any CPU - {49B103C8-958D-41B2-AB22-EDF029947AB1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {49B103C8-958D-41B2-AB22-EDF029947AB1}.Debug|Any CPU.Build.0 = Debug|Any CPU - {49B103C8-958D-41B2-AB22-EDF029947AB1}.Release|Any CPU.ActiveCfg = Release|Any CPU - {49B103C8-958D-41B2-AB22-EDF029947AB1}.Release|Any CPU.Build.0 = Release|Any CPU - {D017ECF1-F2E3-4EAF-970B-F46991AD86F6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {D017ECF1-F2E3-4EAF-970B-F46991AD86F6}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D017ECF1-F2E3-4EAF-970B-F46991AD86F6}.Release|Any CPU.ActiveCfg = Release|Any CPU - {D017ECF1-F2E3-4EAF-970B-F46991AD86F6}.Release|Any CPU.Build.0 = Release|Any CPU - {A351BD5C-F646-42BB-A1E0-EA63E88934D9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {A351BD5C-F646-42BB-A1E0-EA63E88934D9}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A351BD5C-F646-42BB-A1E0-EA63E88934D9}.Release|Any CPU.ActiveCfg = Release|Any CPU - {A351BD5C-F646-42BB-A1E0-EA63E88934D9}.Release|Any CPU.Build.0 = Release|Any CPU - {1D6B0790-DE5A-4057-AC65-76FA2E7EF198}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {1D6B0790-DE5A-4057-AC65-76FA2E7EF198}.Debug|Any CPU.Build.0 = Debug|Any CPU - {1D6B0790-DE5A-4057-AC65-76FA2E7EF198}.Release|Any CPU.ActiveCfg = Release|Any CPU - {1D6B0790-DE5A-4057-AC65-76FA2E7EF198}.Release|Any CPU.Build.0 = Release|Any CPU - {627ED9FC-20A6-48EF-90D7-7888397CF712}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {627ED9FC-20A6-48EF-90D7-7888397CF712}.Debug|Any CPU.Build.0 = Debug|Any CPU - {627ED9FC-20A6-48EF-90D7-7888397CF712}.Release|Any CPU.ActiveCfg = Release|Any CPU - {627ED9FC-20A6-48EF-90D7-7888397CF712}.Release|Any CPU.Build.0 = Release|Any CPU - {E0ACD46D-CE78-4B04-B0F7-110ACE118EAD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {E0ACD46D-CE78-4B04-B0F7-110ACE118EAD}.Debug|Any CPU.Build.0 = Debug|Any CPU - {E0ACD46D-CE78-4B04-B0F7-110ACE118EAD}.Release|Any CPU.ActiveCfg = Release|Any CPU - {E0ACD46D-CE78-4B04-B0F7-110ACE118EAD}.Release|Any CPU.Build.0 = Release|Any CPU - {87EE2F0A-DF01-4035-B202-BE5F96C09FFA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {87EE2F0A-DF01-4035-B202-BE5F96C09FFA}.Debug|Any CPU.Build.0 = Debug|Any CPU - {87EE2F0A-DF01-4035-B202-BE5F96C09FFA}.Release|Any CPU.ActiveCfg = Release|Any CPU - {87EE2F0A-DF01-4035-B202-BE5F96C09FFA}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(NestedProjects) = preSolution - {1B458B5B-D39C-4247-BFB9-A5D9B8D4D85C} = {6E9C8ACC-7A1B-47F4-B7C0-78DE8C931A08} - {8FE68E2C-586F-4E22-BDA3-4E65473BC3D7} = {D68226E5-B167-48D9-985C-B13CA6538634} - {4F35E6D2-99FB-4B7B-90A5-3BFA936FB8CF} = {6E9C8ACC-7A1B-47F4-B7C0-78DE8C931A08} - {4334C327-A578-4247-B1CC-23A63B2CC7F2} = {6E9C8ACC-7A1B-47F4-B7C0-78DE8C931A08} - {8724A867-C5F5-4A7C-B414-D84AB9830AA0} = {6E9C8ACC-7A1B-47F4-B7C0-78DE8C931A08} - {68DC9F11-567F-4A51-85E6-4C87994F9FFF} = {6E9C8ACC-7A1B-47F4-B7C0-78DE8C931A08} - {4539721A-947F-4AD1-B007-EE695761B8F9} = {6E9C8ACC-7A1B-47F4-B7C0-78DE8C931A08} - {1C4B4036-9C17-49AD-B087-A4D044296D1A} = {6E9C8ACC-7A1B-47F4-B7C0-78DE8C931A08} - {93FBF3ED-A6F3-4EBF-8779-A398D6654C03} = {6E9C8ACC-7A1B-47F4-B7C0-78DE8C931A08} - {74003456-8C80-402A-AD68-24B02350ADDC} = {6E9C8ACC-7A1B-47F4-B7C0-78DE8C931A08} - {33749EF7-49CE-4564-BF9D-5713806CC646} = {6E9C8ACC-7A1B-47F4-B7C0-78DE8C931A08} - {D017ECF1-F2E3-4EAF-970B-F46991AD86F6} = {6E9C8ACC-7A1B-47F4-B7C0-78DE8C931A08} - {1D6B0790-DE5A-4057-AC65-76FA2E7EF198} = {6E9C8ACC-7A1B-47F4-B7C0-78DE8C931A08} - {E0ACD46D-CE78-4B04-B0F7-110ACE118EAD} = {6E9C8ACC-7A1B-47F4-B7C0-78DE8C931A08} - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {CFDC1B98-55BE-40C3-BF95-A2BA8182DC40} - EndGlobalSection -EndGlobal diff --git a/Sources/SqlDatabase.slnx b/Sources/SqlDatabase.slnx new file mode 100644 index 00000000..09a1167f --- /dev/null +++ b/Sources/SqlDatabase.slnx @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Sources/SqlDatabase/Configuration/HostedRuntimeResolver.cs b/Sources/SqlDatabase/Configuration/HostedRuntimeResolver.cs index 482b2740..d3425bc6 100644 --- a/Sources/SqlDatabase/Configuration/HostedRuntimeResolver.cs +++ b/Sources/SqlDatabase/Configuration/HostedRuntimeResolver.cs @@ -30,17 +30,17 @@ internal static FrameworkVersion ResolveVersion(string description, Version vers if (description.IndexOf(" Core ", StringComparison.OrdinalIgnoreCase) > 0) { - return FrameworkVersion.Net6; + return FrameworkVersion.Net8; } switch (version.Major) { - case <= 6: - return FrameworkVersion.Net6; case <= 8: return FrameworkVersion.Net8; - default: + case 9: return FrameworkVersion.Net9; + default: + return FrameworkVersion.Net10; } } diff --git a/Sources/SqlDatabase/Program.cs b/Sources/SqlDatabase/Program.cs index e721e793..33ccd321 100644 --- a/Sources/SqlDatabase/Program.cs +++ b/Sources/SqlDatabase/Program.cs @@ -85,7 +85,7 @@ private static string GetHelpFileName(HostedRuntime runtime, string? commandName private static string LoadHelpContent(string fileName) { - var scope = typeof(ICommandLine); + var scope = typeof(IEnvironmentBuilder); // .net core resource name is case-sensitive var fullName = scope.Namespace + "." + fileName; diff --git a/Sources/SqlDatabase/SqlDatabase.csproj b/Sources/SqlDatabase/SqlDatabase.csproj index 1d03ab06..fb2f1658 100644 --- a/Sources/SqlDatabase/SqlDatabase.csproj +++ b/Sources/SqlDatabase/SqlDatabase.csproj @@ -1,7 +1,7 @@  - net472;net6.0;net8.0;net9.0;netstandard2.0 - net6.0;net8.0;net9.0 + net472;net8.0;net9.0;net10.0;netstandard2.0 + net8.0;net9.0;net10.0 Exe diff --git a/Sources/global.json b/Sources/global.json index fc56567f..6b0856a3 100644 --- a/Sources/global.json +++ b/Sources/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "9.0.100-rc.2.24474.11", + "version": "10.0.100-rc.1.25451.107", "allowPrerelease": true, "rollForward": "latestFeature" }