diff --git a/Build/README.md b/Build/README.md index 50bb1494..cf17b991 100644 --- a/Build/README.md +++ b/Build/README.md @@ -3,11 +3,12 @@ build.ps1 is designed to run on windows - PowerShell Desktop 5.1 -- PowerShell Core 6.* (.net core 2.2 tests), versions 7+ are optional -- InvokeBuild 5.7.2 +- PowerShell [7.2.1](https://github.com/PowerShell/PowerShell/releases/tag/v7.2.1) for .net 6.0 tests +- PowerShell [7.1.5](https://github.com/PowerShell/PowerShell/releases/tag/v7.1.5) for .net 5.0 tests +- PowerShell [7.0.8](https://github.com/PowerShell/PowerShell/releases/tag/v7.0.8) for .net core 3.1 tests +- Install-Module -Name InvokeBuild -RequiredVersion 5.8.7 - ThirdPartyLibraries https://www.nuget.org/packages/ThirdPartyLibraries.GlobalTool/ - .net framework 4.7.2+ sdk -- .net core 2.2 sdk - .net core 3.1 sdk - .net 5.0 sdk - docker, switched to linux containers diff --git a/Build/build-tasks.ps1 b/Build/build-tasks.ps1 index 60ccf218..947a2bb4 100644 --- a/Build/build-tasks.ps1 +++ b/Build/build-tasks.ps1 @@ -111,12 +111,6 @@ task PackManualDownload PackGlobalTool, PackPoweShellModule, { $source = Join-Path $settings.artifactsPowerShell "*" Compress-Archive -Path $source -DestinationPath $destination - # netcoreapp2.2 build does not create .exe, copy it from netcoreapp3.1 - $exe = Join-Path $settings.bin "SqlDatabase\netcoreapp3.1\publish\SqlDatabase.exe" - $destination = Join-Path $out "SqlDatabase.$packageVersion-netcore21.zip" - $source = Join-Path $settings.bin "SqlDatabase\netcoreapp2.1\publish\*" - Compress-Archive -Path $source, $exe, $lic, $thirdParty -DestinationPath $destination - $destination = Join-Path $out "SqlDatabase.$packageVersion-netcore31.zip" $source = Join-Path $settings.bin "SqlDatabase\netcoreapp3.1\publish\*" Compress-Archive -Path $source, $lic, $thirdParty -DestinationPath $destination @@ -124,17 +118,21 @@ task PackManualDownload PackGlobalTool, PackPoweShellModule, { $destination = Join-Path $out "SqlDatabase.$packageVersion-net50.zip" $source = Join-Path $settings.bin "SqlDatabase\net5.0\publish\*" Compress-Archive -Path $source, $lic, $thirdParty -DestinationPath $destination + + $destination = Join-Path $out "SqlDatabase.$packageVersion-net60.zip" + $source = Join-Path $settings.bin "SqlDatabase\net6.0\publish\*" + Compress-Archive -Path $source, $lic, $thirdParty -DestinationPath $destination } task UnitTest { $builds = @( @{ File = "build-tasks.unit-test.ps1"; Task = "Test"; settings = $settings; targetFramework = "net472" } - @{ File = "build-tasks.unit-test.ps1"; Task = "Test"; settings = $settings; targetFramework = "netcoreapp2.1" } @{ File = "build-tasks.unit-test.ps1"; Task = "Test"; settings = $settings; targetFramework = "netcoreapp3.1" } @{ File = "build-tasks.unit-test.ps1"; Task = "Test"; settings = $settings; targetFramework = "net5.0" } + @{ File = "build-tasks.unit-test.ps1"; Task = "Test"; settings = $settings; targetFramework = "net6.0" } ) - Build-Parallel $builds -MaximumBuilds 4 + Build-Parallel $builds -ShowParameter targetFramework -MaximumBuilds 4 } task InitializeIntegrationTest { @@ -164,9 +162,17 @@ task InitializeIntegrationTest { } task PsDesktopTest { + $builds = @() foreach ($database in $databases) { - Invoke-Build -File "build-tasks.it-ps-desktop.ps1" -Task "Test" -settings $settings -database $database + $builds += @{ + File = "build-tasks.it-ps-desktop.ps1"; + Task = "Test"; + settings = $settings; + database = $database; + } } + + Build-Parallel $builds -ShowParameter database -MaximumBuilds 1 } task PsCoreTest { @@ -190,65 +196,92 @@ task PsCoreTest { , "mcr.microsoft.com/powershell:7.1.2-ubuntu-20.04" , "mcr.microsoft.com/powershell:7.1.3-ubuntu-20.04" , "mcr.microsoft.com/powershell:7.1.4-ubuntu-20.04" - , "mcr.microsoft.com/powershell:7.2.0-preview.10-ubuntu-20.04") + , "mcr.microsoft.com/powershell:7.2.0-ubuntu-20.04" + , "mcr.microsoft.com/powershell:7.2.1-ubuntu-20.04" + , "mcr.microsoft.com/powershell:7.3.0-preview.1-ubuntu-20.04") $builds = @() foreach ($image in $images) { foreach ($database in $databases) { - $builds += @{ File = "build-tasks.it-ps-core.ps1"; Task = "Test"; settings = $settings; database = $database; image = $image } + $builds += @{ + File = "build-tasks.it-ps-core.ps1"; + Task = "Test"; + settings = $settings; + database = $database; + image = $image; + } } } - Build-Parallel $builds -MaximumBuilds 4 + Build-Parallel $builds -ShowParameter database, image -MaximumBuilds 4 } task SdkToolTest { $images = $( - "sqldatabase/dotnet_pwsh:2.1-sdk" - , "sqldatabase/dotnet_pwsh:3.1-sdk" - , "sqldatabase/dotnet_pwsh:5.0-sdk") + "sqldatabase/dotnet_pwsh:3.1-sdk" + , "sqldatabase/dotnet_pwsh:5.0-sdk" + , "sqldatabase/dotnet_pwsh:6.0-sdk") $builds = @() foreach ($image in $images) { foreach ($database in $databases) { - $builds += @{ File = "build-tasks.it-tool-linux.ps1"; Task = "Test"; settings = $settings; database = $database; image = $image } + $builds += @{ + File = "build-tasks.it-tool-linux.ps1"; + Task = "Test"; + settings = $settings; + database = $database; + image = $image; + } } } - Build-Parallel $builds -MaximumBuilds 4 + Build-Parallel $builds -ShowParameter database, image -MaximumBuilds 4 } task NetRuntimeLinuxTest { $testCases = $( - @{ targetFramework = "netcore21"; image = "sqldatabase/dotnet_pwsh:2.1-runtime" } - , @{ targetFramework = "netcore31"; image = "sqldatabase/dotnet_pwsh:3.1-runtime" } + @{ targetFramework = "netcore31"; image = "sqldatabase/dotnet_pwsh:3.1-runtime" } , @{ targetFramework = "net50"; image = "sqldatabase/dotnet_pwsh:5.0-runtime" } + , @{ targetFramework = "net60"; image = "sqldatabase/dotnet_pwsh:6.0-runtime" } ) $builds = @() foreach ($case in $testCases) { foreach ($database in $databases) { - $builds += @{ File = "build-tasks.it-linux.ps1"; Task = "Test"; settings = $settings; targetFramework = $case.targetFramework; database = $database; image = $case.image } + $builds += @{ + File = "build-tasks.it-linux.ps1"; + Task = "Test"; + settings = $settings; + targetFramework = $case.targetFramework; + database = $database; + image = $case.image; + } } } - Build-Parallel $builds -MaximumBuilds 4 + Build-Parallel $builds -ShowParameter database, targetFramework, image -MaximumBuilds 4 } task NetRuntimeWindowsTest { $testCases = $( "net452" - , "netcore21" , "netcore31" , "net50" + , "net60" ) $builds = @() foreach ($case in $testCases) { foreach ($database in $databases) { - $builds += @{ File = "build-tasks.it-win.ps1"; Task = "Test"; settings = $settings; targetFramework = $case; database = $database } + $builds += @{ + File = "build-tasks.it-win.ps1"; + Task = "Test"; + settings = $settings; + targetFramework = $case; + database = $database; + } } } - Build-Parallel $builds -MaximumBuilds 4 + Build-Parallel $builds -ShowParameter database, targetFramework -MaximumBuilds 4 } \ No newline at end of file diff --git a/Build/build.ps1 b/Build/build.ps1 index d9859a2e..408ef719 100644 --- a/Build/build.ps1 +++ b/Build/build.ps1 @@ -1,4 +1,4 @@ -#Requires -Modules @{ModuleName='InvokeBuild'; RequiredVersion='5.7.2'} +#Requires -Modules @{ModuleName='InvokeBuild'; RequiredVersion='5.8.7'} Set-StrictMode -Version Latest diff --git a/Build/create-images-tasks.ps1 b/Build/create-images-tasks.ps1 index 92f11fb0..2a9f1c8f 100644 --- a/Build/create-images-tasks.ps1 +++ b/Build/create-images-tasks.ps1 @@ -1,12 +1,13 @@ -task Default BuildDotnetSdk21 ` - , BuildDotnetRuntime21 ` - , BuildDotnetSdk31 ` - , BuildDotnetRuntime31 ` - , BuildDotnetSdk50 ` - , BuildDotnetRuntime50 ` - , BuildMsSqlDatabase ` - , BuildPgSqlDatabase ` - , BuildMySqlDatabase +task Default ` + BuildDotnetSdk31 ` + , BuildDotnetRuntime31 ` + , BuildDotnetSdk50 ` + , BuildDotnetRuntime50 ` + , BuildDotnetSdk60 ` + , BuildDotnetRuntime60 ` + , BuildMsSqlDatabase ` + , BuildPgSqlDatabase ` + , BuildMySqlDatabase task BuildMsSqlDatabase { $context = Join-Path $PSScriptRoot "..\Sources\SqlDatabase.Test\Docker" @@ -38,24 +39,6 @@ task BuildMySqlDatabase { } } -task BuildDotnetSdk21 { - exec { - docker build ` - -f image-dotnet-sdk-2.1.dockerfile ` - -t sqldatabase/dotnet_pwsh:2.1-sdk ` - . - } -} - -task BuildDotnetRuntime21 { - exec { - docker build ` - -f image-dotnet-runtime-2.1.dockerfile ` - -t sqldatabase/dotnet_pwsh:2.1-runtime ` - . - } -} - task BuildDotnetSdk31 { exec { docker build ` @@ -91,3 +74,21 @@ task BuildDotnetRuntime50 { . } } + +task BuildDotnetSdk60 { + exec { + docker build ` + -f image-dotnet-sdk-6.0.dockerfile ` + -t sqldatabase/dotnet_pwsh:6.0-sdk ` + . + } +} + +task BuildDotnetRuntime60 { + exec { + docker build ` + -f image-dotnet-runtime-6.0.dockerfile ` + -t sqldatabase/dotnet_pwsh:6.0-runtime ` + . + } +} diff --git a/Build/create-images.ps1 b/Build/create-images.ps1 index b386e9fe..6286c445 100644 --- a/Build/create-images.ps1 +++ b/Build/create-images.ps1 @@ -1,4 +1,4 @@ -#Requires -Modules @{ModuleName='InvokeBuild'; RequiredVersion='5.7.2'} +#Requires -Modules @{ModuleName='InvokeBuild'; RequiredVersion='5.8.7'} Set-StrictMode -Version Latest diff --git a/Build/image-dotnet-runtime-2.1.dockerfile b/Build/image-dotnet-runtime-2.1.dockerfile deleted file mode 100644 index f64aae23..00000000 --- a/Build/image-dotnet-runtime-2.1.dockerfile +++ /dev/null @@ -1,6 +0,0 @@ -FROM microsoft/dotnet:2.1-runtime - -RUN curl -L https://github.com/PowerShell/PowerShell/releases/download/v6.2.7/powershell_6.2.7-1.debian.9_amd64.deb --output powershell_6.2.7-1.debian.9_amd64.deb && \ - dpkg -i powershell_6.2.7-1.debian.9_amd64.deb && \ - apt-get install -f && \ - rm -f powershell_6.2.7-1.debian.9_amd64.deb \ No newline at end of file diff --git a/Build/image-dotnet-runtime-6.0.dockerfile b/Build/image-dotnet-runtime-6.0.dockerfile new file mode 100644 index 00000000..9228192c --- /dev/null +++ b/Build/image-dotnet-runtime-6.0.dockerfile @@ -0,0 +1,8 @@ +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.1/powershell_7.2.1-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/Build/image-dotnet-sdk-2.1.dockerfile b/Build/image-dotnet-sdk-2.1.dockerfile deleted file mode 100644 index f9276744..00000000 --- a/Build/image-dotnet-sdk-2.1.dockerfile +++ /dev/null @@ -1,6 +0,0 @@ -FROM microsoft/dotnet:2.1-sdk - -RUN curl -L https://github.com/PowerShell/PowerShell/releases/download/v6.2.7/powershell_6.2.7-1.debian.9_amd64.deb --output powershell_6.2.7-1.debian.9_amd64.deb && \ - dpkg -i powershell_6.2.7-1.debian.9_amd64.deb && \ - apt-get install -f && \ - rm -f powershell_6.2.7-1.debian.9_amd64.deb \ No newline at end of file diff --git a/Build/image-dotnet-sdk-6.0.dockerfile b/Build/image-dotnet-sdk-6.0.dockerfile new file mode 100644 index 00000000..9dd071fc --- /dev/null +++ b/Build/image-dotnet-sdk-6.0.dockerfile @@ -0,0 +1,8 @@ +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.1/powershell_7.2.1-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/Build/third-party-libraries/packages/nuget.org/castle.core/4.4.0/index.json b/Build/third-party-libraries/packages/nuget.org/castle.core/4.4.0/index.json index 7a09813f..7cd8bd57 100644 --- a/Build/third-party-libraries/packages/nuget.org/castle.core/4.4.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/castle.core/4.4.0/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" ], "Dependencies": [ diff --git a/Build/third-party-libraries/packages/nuget.org/castle.core/4.4.0/readme.md b/Build/third-party-libraries/packages/nuget.org/castle.core/4.4.0/readme.md index 380d23ef..7bc282f5 100644 --- a/Build/third-party-libraries/packages/nuget.org/castle.core/4.4.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/castle.core/4.4.0/readme.md @@ -3,7 +3,7 @@ Castle.Core [4.4.0](https://www.nuget.org/packages/Castle.Core/4.4.0) Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 License: [Apache-2.0](../../../../licenses/apache-2.0) diff --git a/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/index.json b/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.123/index.json similarity index 77% rename from Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/index.json rename to Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.123/index.json index c792d8d5..ec6c44a2 100644 --- a/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/index.json +++ b/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.123/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" ] } @@ -25,14 +25,14 @@ { "Subject": "repository", "Code": null, - "HRef": "https://github.com/StackExchange/Dapper", - "Description": "License should be verified on https://github.com/StackExchange/Dapper" + "HRef": "https://github.com/DapperLib/Dapper", + "Description": "License should be verified on https://github.com/DapperLib/Dapper" }, { "Subject": "project", "Code": null, - "HRef": "https://github.com/StackExchange/Dapper", - "Description": "License should be verified on https://github.com/StackExchange/Dapper" + "HRef": "https://github.com/DapperLib/Dapper", + "Description": "License should be verified on https://github.com/DapperLib/Dapper" } ] } \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/package.nuspec b/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.123/package.nuspec similarity index 77% rename from Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.123/package.nuspec index f1ca8a3a..9404cbf7 100644 --- a/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.123/package.nuspec @@ -2,19 +2,19 @@ Dapper.StrongName - 2.0.78 + 2.0.123 Dapper (Strong Named) Sam Saffron,Marc Gravell,Nick Craver Sam Saffron,Marc Gravell,Nick Craver false Apache-2.0 https://licenses.nuget.org/Apache-2.0 - https://github.com/StackExchange/Dapper + https://github.com/DapperLib/Dapper A high performance Micro-ORM supporting SQL Server, MySQL, Sqlite, SqlCE, Firebird etc.. - https://stackexchange.github.io/Dapper/ + https://dapperlib.github.io/Dapper/ 2019 Stack Exchange, Inc. orm sql micro-orm - + @@ -22,5 +22,6 @@ + Dapper.png \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.123/project-License.txt b/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.123/project-License.txt new file mode 100644 index 00000000..aa784935 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.123/project-License.txt @@ -0,0 +1,6 @@ +The Dapper library and tools are licenced under Apache 2.0: http://www.apache.org/licenses/LICENSE-2.0 + +The Dapper logo is copyright Marc Gravell 2021 onwards; it is fine to use the Dapper logo when referencing the Dapper library and utilities, but +the Dapper logo (including derivatives) must not be used in a way that misrepresents an external product or library as being affiliated or endorsed +with Dapper. For example, you must not use the Dapper logo as the package icon on your own external tool (even if it uses Dapper internally), +without written permission. If in doubt: ask. \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.123/readme.md b/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.123/readme.md new file mode 100644 index 00000000..6a65c08b --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.123/readme.md @@ -0,0 +1,27 @@ +Dapper.StrongName [2.0.123](https://www.nuget.org/packages/Dapper.StrongName/2.0.123) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 + +License: [Apache-2.0](../../../../licenses/apache-2.0) + +- package license: [Apache-2.0](https://licenses.nuget.org/Apache-2.0) +- repository license: [Unknown](https://github.com/DapperLib/Dapper) , License should be verified on https://github.com/DapperLib/Dapper +- project license: [Unknown](https://github.com/DapperLib/Dapper) , License should be verified on https://github.com/DapperLib/Dapper + +Description +----------- +A high performance Micro-ORM supporting SQL Server, MySQL, Sqlite, SqlCE, Firebird etc.. + +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/dapper.strongname/2.0.78/remarks.md b/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.123/remarks.md similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/remarks.md rename to Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.123/remarks.md diff --git a/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.123/repository-License.txt b/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.123/repository-License.txt new file mode 100644 index 00000000..aa784935 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.123/repository-License.txt @@ -0,0 +1,6 @@ +The Dapper library and tools are licenced under Apache 2.0: http://www.apache.org/licenses/LICENSE-2.0 + +The Dapper logo is copyright Marc Gravell 2021 onwards; it is fine to use the Dapper logo when referencing the Dapper library and utilities, but +the Dapper logo (including derivatives) must not be used in a way that misrepresents an external product or library as being affiliated or endorsed +with Dapper. For example, you must not use the Dapper logo as the package icon on your own external tool (even if it uses Dapper internally), +without written permission. If in doubt: ask. \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.123/third-party-notices.txt similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/third-party-notices.txt rename to Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.123/third-party-notices.txt diff --git a/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/project-License.txt b/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/project-License.txt deleted file mode 100644 index 0f333522..00000000 --- a/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/project-License.txt +++ /dev/null @@ -1 +0,0 @@ -http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/readme.md b/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/readme.md deleted file mode 100644 index 821559d7..00000000 --- a/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/readme.md +++ /dev/null @@ -1,27 +0,0 @@ -Dapper.StrongName [2.0.78](https://www.nuget.org/packages/Dapper.StrongName/2.0.78) --------------------- - -Used by: SqlDatabase internal - -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 - -License: [Apache-2.0](../../../../licenses/apache-2.0) - -- package license: [Apache-2.0](https://licenses.nuget.org/Apache-2.0) -- repository license: [Unknown](https://github.com/StackExchange/Dapper) , License should be verified on https://github.com/StackExchange/Dapper -- project license: [Unknown](https://github.com/StackExchange/Dapper) , License should be verified on https://github.com/StackExchange/Dapper - -Description ------------ -A high performance Micro-ORM supporting SQL Server, MySQL, Sqlite, SqlCE, Firebird etc.. - -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/dapper.strongname/2.0.78/repository-License.txt b/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/repository-License.txt deleted file mode 100644 index 0f333522..00000000 --- a/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/repository-License.txt +++ /dev/null @@ -1 +0,0 @@ -http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/diffengine/6.4.9/index.json b/Build/third-party-libraries/packages/nuget.org/diffengine/6.4.9/index.json index 0c12e0b2..09eb067b 100644 --- a/Build/third-party-libraries/packages/nuget.org/diffengine/6.4.9/index.json +++ b/Build/third-party-libraries/packages/nuget.org/diffengine/6.4.9/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" ], "Dependencies": [ diff --git a/Build/third-party-libraries/packages/nuget.org/diffengine/6.4.9/readme.md b/Build/third-party-libraries/packages/nuget.org/diffengine/6.4.9/readme.md index ddac9530..b2ecf707 100644 --- a/Build/third-party-libraries/packages/nuget.org/diffengine/6.4.9/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/diffengine/6.4.9/readme.md @@ -3,7 +3,7 @@ DiffEngine [6.4.9](https://www.nuget.org/packages/DiffEngine/6.4.9) Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 License: [MIT](../../../../licenses/mit) diff --git a/Build/third-party-libraries/packages/nuget.org/emptyfiles/2.3.3/index.json b/Build/third-party-libraries/packages/nuget.org/emptyfiles/2.3.3/index.json index f8e9cef5..143e8d58 100644 --- a/Build/third-party-libraries/packages/nuget.org/emptyfiles/2.3.3/index.json +++ b/Build/third-party-libraries/packages/nuget.org/emptyfiles/2.3.3/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" ] } diff --git a/Build/third-party-libraries/packages/nuget.org/emptyfiles/2.3.3/readme.md b/Build/third-party-libraries/packages/nuget.org/emptyfiles/2.3.3/readme.md index c1b669b1..5c6b0acc 100644 --- a/Build/third-party-libraries/packages/nuget.org/emptyfiles/2.3.3/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/emptyfiles/2.3.3/readme.md @@ -3,7 +3,7 @@ EmptyFiles [2.3.3](https://www.nuget.org/packages/EmptyFiles/2.3.3) Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 License: [MIT](../../../../licenses/mit) diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.0.0/index.json similarity index 96% rename from Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.0.0/index.json index 9d07bd3b..cf09ab3a 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.0.0/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" ] } diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/package-LICENSE_NET.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.0.0/package-LICENSE_NET.txt similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/package-LICENSE_NET.txt rename to Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.0.0/package-LICENSE_NET.txt diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.0.0/package.nuspec similarity index 90% rename from Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.0.0/package.nuspec index 8800cf39..ca1fecf8 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.0.0/package.nuspec @@ -2,7 +2,7 @@ Microsoft.CodeCoverage - 16.9.4 + 17.0.0 Microsoft.CodeCoverage Microsoft Microsoft @@ -15,7 +15,7 @@ Microsoft.CodeCoverage package brings infra for collecting code coverage from vstest.console.exe and "dotnet test". © Microsoft Corporation. All rights reserved. vstest visual-studio unittest testplatform mstest microsoft test testing codecoverage code-coverage - + diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.0.0/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.0.0/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.0.0/readme.md similarity index 75% rename from Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/readme.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.0.0/readme.md index 837f64ba..5263e0ed 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.0.0/readme.md @@ -1,9 +1,9 @@ -Microsoft.CodeCoverage [16.9.4](https://www.nuget.org/packages/Microsoft.CodeCoverage/16.9.4) +Microsoft.CodeCoverage [17.0.0](https://www.nuget.org/packages/Microsoft.CodeCoverage/17.0.0) -------------------- Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 License: [MIT](../../../../licenses/mit) diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/remarks.md b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.0.0/remarks.md similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/remarks.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.0.0/remarks.md diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.0.0/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.0.0/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.0.0/third-party-notices.txt similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/third-party-notices.txt rename to Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.0.0/third-party-notices.txt diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.dotnet.internalabstractions/1.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.dotnet.internalabstractions/1.0.0/index.json deleted file mode 100644 index ed452b63..00000000 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.dotnet.internalabstractions/1.0.0/index.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "License": { - "Code": "MIT", - "Status": "AutomaticallyApproved" - }, - "UsedBy": [ - { - "Name": "SqlDatabase", - "InternalOnly": true, - "TargetFrameworks": [ - "netcoreapp2.1", - "netcoreapp3.1", - "net5.0", - "net472" - ], - "Dependencies": [ - { - "Name": "System.AppContext", - "Version": "4.1.0" - }, - { - "Name": "System.Reflection.TypeExtensions", - "Version": "4.3.0" - }, - { - "Name": "System.Runtime.InteropServices.RuntimeInformation", - "Version": "4.3.0" - } - ] - } - ], - "Licenses": [ - { - "Subject": "package", - "Code": null, - "HRef": null, - "Description": null - } - ] -} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.dotnet.internalabstractions/1.0.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.dotnet.internalabstractions/1.0.0/package.nuspec deleted file mode 100644 index c62609c7..00000000 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.dotnet.internalabstractions/1.0.0/package.nuspec +++ /dev/null @@ -1,26 +0,0 @@ - - - - Microsoft.DotNet.InternalAbstractions - 1.0.0 - Microsoft.DotNet.InternalAbstractions - Microsoft.DotNet.InternalAbstractions - false - Abstractions for making code that uses file system and environment testable. - - true - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.dotnet.internalabstractions/1.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.dotnet.internalabstractions/1.0.0/readme.md deleted file mode 100644 index d3339eb2..00000000 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.dotnet.internalabstractions/1.0.0/readme.md +++ /dev/null @@ -1,30 +0,0 @@ -Microsoft.DotNet.InternalAbstractions [1.0.0](https://www.nuget.org/packages/Microsoft.DotNet.InternalAbstractions/1.0.0) --------------------- - -Used by: SqlDatabase internal - -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 - -License: [MIT](../../../../licenses/mit) - -- package license: [Unknown]() - -Description ------------ -Abstractions for making code that uses file system and environment testable. - -Remarks ------------ -no remarks - - -Dependencies 3 ------------ - -|Name|Version| -|----------|:----| -|[System.AppContext](../../../../packages/nuget.org/system.appcontext/4.1.0)|4.1.0| -|[System.Reflection.TypeExtensions](../../../../packages/nuget.org/system.reflection.typeextensions/4.3.0)|4.3.0| -|[System.Runtime.InteropServices.RuntimeInformation](../../../../packages/nuget.org/system.runtime.interopservices.runtimeinformation/4.3.0)|4.3.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/16.9.4/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.0.0/index.json similarity index 90% rename from Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.0.0/index.json index 89119799..3657874a 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.0.0/index.json @@ -8,19 +8,19 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" ], "Dependencies": [ { "Name": "Microsoft.CodeCoverage", - "Version": "16.9.4" + "Version": "17.0.0" }, { "Name": "Microsoft.TestPlatform.TestHost", - "Version": "16.9.4" + "Version": "17.0.0" } ] } diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/package-LICENSE_NET.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.0.0/package-LICENSE_NET.txt similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/package-LICENSE_NET.txt rename to Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.0.0/package-LICENSE_NET.txt diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.0.0/package.nuspec similarity index 83% rename from Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.0.0/package.nuspec index d43febd3..40efdd6c 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.0.0/package.nuspec @@ -2,7 +2,7 @@ Microsoft.NET.Test.Sdk - 16.9.4 + 17.0.0 Microsoft.NET.Test.Sdk Microsoft Microsoft @@ -15,7 +15,7 @@ The MSbuild targets and properties for building .NET test projects. © Microsoft Corporation. All rights reserved. vstest visual-studio unittest testplatform mstest microsoft test testing - + @@ -24,16 +24,16 @@ - - + + - - + + - + diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.0.0/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.0.0/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.0.0/readme.md similarity index 71% rename from Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/readme.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.0.0/readme.md index 19fb0a89..e2fd0e1a 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.0.0/readme.md @@ -1,9 +1,9 @@ -Microsoft.NET.Test.Sdk [16.9.4](https://www.nuget.org/packages/Microsoft.NET.Test.Sdk/16.9.4) +Microsoft.NET.Test.Sdk [17.0.0](https://www.nuget.org/packages/Microsoft.NET.Test.Sdk/17.0.0) -------------------- Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 License: [MIT](../../../../licenses/mit) @@ -25,7 +25,7 @@ Dependencies 2 |Name|Version| |----------|:----| -|[Microsoft.CodeCoverage](../../../../packages/nuget.org/microsoft.codecoverage/16.9.4)|16.9.4| -|[Microsoft.TestPlatform.TestHost](../../../../packages/nuget.org/microsoft.testplatform.testhost/16.9.4)|16.9.4| +|[Microsoft.CodeCoverage](../../../../packages/nuget.org/microsoft.codecoverage/17.0.0)|17.0.0| +|[Microsoft.TestPlatform.TestHost](../../../../packages/nuget.org/microsoft.testplatform.testhost/17.0.0)|17.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.dotnet.internalabstractions/1.0.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.0.0/remarks.md similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.dotnet.internalabstractions/1.0.0/remarks.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.0.0/remarks.md diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.0.0/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.0.0/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.dotnet.internalabstractions/1.0.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.0.0/third-party-notices.txt similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.dotnet.internalabstractions/1.0.0/third-party-notices.txt rename to Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/17.0.0/third-party-notices.txt diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.1.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.1.0/index.json deleted file mode 100644 index 88c9c1dd..00000000 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.1.0/index.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "License": { - "Code": "MIT", - "Status": "AutomaticallyApproved" - }, - "UsedBy": [ - { - "Name": "SqlDatabase", - "InternalOnly": false, - "TargetFrameworks": [ - "netcoreapp2.1", - "netcoreapp3.1", - "net5.0", - "net452", - "netstandard2.0", - "net472" - ] - } - ], - "Licenses": [ - { - "Subject": "package", - "Code": null, - "HRef": "https://github.com/dotnet/core-setup/blob/master/LICENSE.TXT", - "Description": "License should be verified on https://github.com/dotnet/core-setup/blob/master/LICENSE.TXT" - }, - { - "Subject": "project", - "Code": null, - "HRef": "https://dot.net/", - "Description": "License should be verified on https://dot.net/" - } - ] -} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.1.0/package-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.1.0/package-LICENSE.txt deleted file mode 100644 index cd10d697..00000000 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.1.0/package-LICENSE.txt +++ /dev/null @@ -1,22 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2015 .NET Foundation - -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.netcore.app/2.1.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.1.0/package.nuspec deleted file mode 100644 index 343e83f1..00000000 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.1.0/package.nuspec +++ /dev/null @@ -1,121 +0,0 @@ - - - - Microsoft.NETCore.App - 2.1.0 - Microsoft.NETCore.App - Microsoft - microsoft,dotnetframework - false - https://github.com/dotnet/core-setup/blob/master/LICENSE.TXT - https://dot.net/ - http://go.microsoft.com/fwlink/?LinkID=288859 - A set of .NET API's that are included in the default .NET Core application model. -caa7b7e2bad98e56a687fb5cbaf60825500800f7 -When using NuGet 3.x this package requires at least version 3.4. - https://go.microsoft.com/fwlink/?LinkID=799417 - © Microsoft Corporation. All rights reserved. - true - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.1.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.1.0/readme.md deleted file mode 100644 index c7b4e97e..00000000 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.1.0/readme.md +++ /dev/null @@ -1,28 +0,0 @@ -Microsoft.NETCore.App [2.1.0](https://www.nuget.org/packages/Microsoft.NETCore.App/2.1.0) --------------------- - -Used by: SqlDatabase - -Target frameworks: net452, net472, net5.0, netcoreapp2.1, netcoreapp3.1, netstandard2.0 - -License: [MIT](../../../../licenses/mit) - -- package license: [Unknown](https://github.com/dotnet/core-setup/blob/master/LICENSE.TXT) , License should be verified on https://github.com/dotnet/core-setup/blob/master/LICENSE.TXT -- project license: [Unknown](https://dot.net/) , License should be verified on https://dot.net/ - -Description ------------ -A set of .NET API's that are included in the default .NET Core application model. -caa7b7e2bad98e56a687fb5cbaf60825500800f7 -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.testplatform.objectmodel/16.9.4/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.0.0/index.json similarity index 97% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.0.0/index.json index 08a6c5d0..4a8470df 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.0.0/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" ], "Dependencies": [ diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/package-LICENSE_NET.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.0.0/package-LICENSE_NET.txt similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/package-LICENSE_NET.txt rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.0.0/package-LICENSE_NET.txt diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.0.0/package.nuspec similarity index 89% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.0.0/package.nuspec index cdbad1d8..261b8360 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.0.0/package.nuspec @@ -2,7 +2,7 @@ Microsoft.TestPlatform.ObjectModel - 16.9.4 + 17.0.0 Microsoft.TestPlatform.ObjectModel Microsoft Microsoft @@ -15,7 +15,7 @@ The Microsoft Test Platform Object Model. © Microsoft Corporation. All rights reserved. vstest visual-studio unittest testplatform mstest microsoft test testing - + @@ -25,6 +25,14 @@ + + + + + + + + diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.0.0/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.0.0/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.0.0/readme.md similarity index 77% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/readme.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.0.0/readme.md index 57289300..599e4fe4 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.0.0/readme.md @@ -1,9 +1,9 @@ -Microsoft.TestPlatform.ObjectModel [16.9.4](https://www.nuget.org/packages/Microsoft.TestPlatform.ObjectModel/16.9.4) +Microsoft.TestPlatform.ObjectModel [17.0.0](https://www.nuget.org/packages/Microsoft.TestPlatform.ObjectModel/17.0.0) -------------------- Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 License: [MIT](../../../../licenses/mit) diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/remarks.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.0.0/remarks.md similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/remarks.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.0.0/remarks.md diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.0.0/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.0.0/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.0.0/third-party-notices.txt similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/third-party-notices.txt rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/17.0.0/third-party-notices.txt diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.0.0/index.json similarity index 94% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.0.0/index.json index 0b25eb36..9069baba 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.0.0/index.json @@ -8,15 +8,15 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" ], "Dependencies": [ { "Name": "Microsoft.TestPlatform.ObjectModel", - "Version": "16.9.4" + "Version": "17.0.0" }, { "Name": "Newtonsoft.Json", diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/package-LICENSE_NET.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.0.0/package-LICENSE_NET.txt similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/package-LICENSE_NET.txt rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.0.0/package-LICENSE_NET.txt diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.0.0/package.nuspec similarity index 93% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.0.0/package.nuspec index 61e5bd7d..d302d991 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.0.0/package.nuspec @@ -2,7 +2,7 @@ Microsoft.TestPlatform.TestHost - 16.9.4 + 17.0.0 Microsoft.TestPlatform.TestHost Microsoft Microsoft @@ -15,10 +15,10 @@ Testplatform host executes the test using specified adapter. © Microsoft Corporation. All rights reserved. vstest visual-studio unittest testplatform mstest microsoft test testing - + - + @@ -29,11 +29,11 @@ - + - + diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.0.0/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.0.0/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.0.0/readme.md similarity index 72% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/readme.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.0.0/readme.md index ab321b4d..7bf1e7ce 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.0.0/readme.md @@ -1,9 +1,9 @@ -Microsoft.TestPlatform.TestHost [16.9.4](https://www.nuget.org/packages/Microsoft.TestPlatform.TestHost/16.9.4) +Microsoft.TestPlatform.TestHost [17.0.0](https://www.nuget.org/packages/Microsoft.TestPlatform.TestHost/17.0.0) -------------------- Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 License: [MIT](../../../../licenses/mit) @@ -25,7 +25,7 @@ Dependencies 2 |Name|Version| |----------|:----| -|[Microsoft.TestPlatform.ObjectModel](../../../../packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4)|16.9.4| +|[Microsoft.TestPlatform.ObjectModel](../../../../packages/nuget.org/microsoft.testplatform.objectmodel/17.0.0)|17.0.0| |[Newtonsoft.Json](../../../../packages/nuget.org/newtonsoft.json/13.0.1)|13.0.1| *This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.1.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.0.0/remarks.md similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.1.0/remarks.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.0.0/remarks.md diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.0.0/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.0.0/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.1.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.0.0/third-party-notices.txt similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.1.0/third-party-notices.txt rename to Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/17.0.0/third-party-notices.txt diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.5.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.5.0/index.json index 4be18516..fde45ad0 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.5.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.5.0/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net452", "netstandard2.0" ], diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.5.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.5.0/readme.md index aa73ffa0..61034272 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.5.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.5.0/readme.md @@ -3,7 +3,7 @@ Microsoft.Win32.Registry [4.5.0](https://www.nuget.org/packages/Microsoft.Win32. Used by: SqlDatabase -Target frameworks: net452, net5.0, netcoreapp2.1, netcoreapp3.1, netstandard2.0 +Target frameworks: net452, net5.0, net6.0, netcoreapp3.1, netstandard2.0 License: [MIT](../../../../licenses/mit) diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/package-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/package-LICENSE.txt deleted file mode 100644 index b2f52a2b..00000000 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/package-LICENSE.txt +++ /dev/null @@ -1,21 +0,0 @@ -Copyright (c) Microsoft Corporation. - -MIT License - -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.wsman.runtime/6.2.7/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/readme.md deleted file mode 100644 index 8e296c50..00000000 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/readme.md +++ /dev/null @@ -1,26 +0,0 @@ -Microsoft.WSMan.Runtime [6.2.7](https://www.nuget.org/packages/Microsoft.WSMan.Runtime/6.2.7) --------------------- - -Used by: SqlDatabase - -Target frameworks: net452, net5.0, netcoreapp2.1, netcoreapp3.1, netstandard2.0 - -License: [MIT](../../../../licenses/mit) - -- package license: [MIT](https://github.com/PowerShell/PowerShell/blob/master/LICENSE.txt) -- project license: [MIT](https://github.com/PowerShell/PowerShell) - -Description ------------ -PowerShell runtime for hosting PowerShell Core - -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.wsman.runtime/7.0.5/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.0.5/index.json index 1c007617..cb58cb5b 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.0.5/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.0.5/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net452", "netstandard2.0" ] diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.0.5/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.0.5/readme.md index cba905db..80e0cecd 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.0.5/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.0.5/readme.md @@ -3,7 +3,7 @@ Microsoft.WSMan.Runtime [7.0.5](https://www.nuget.org/packages/Microsoft.WSMan.R Used by: SqlDatabase -Target frameworks: net452, net5.0, netcoreapp2.1, netcoreapp3.1, netstandard2.0 +Target frameworks: net452, net5.0, net6.0, netcoreapp3.1, netstandard2.0 License: [MIT](../../../../licenses/mit) diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.1.2/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.1.2/index.json index 5ab6a77c..b5a131f0 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.1.2/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.1.2/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net452", "netstandard2.0" ] diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.1.2/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.1.2/readme.md index aaeb3ea2..f74e5020 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.1.2/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.1.2/readme.md @@ -3,7 +3,7 @@ Microsoft.WSMan.Runtime [7.1.2](https://www.nuget.org/packages/Microsoft.WSMan.R Used by: SqlDatabase -Target frameworks: net452, net5.0, netcoreapp2.1, netcoreapp3.1, netstandard2.0 +Target frameworks: net452, net5.0, net6.0, netcoreapp3.1, netstandard2.0 License: [MIT](../../../../licenses/mit) diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.2.0/index.json similarity index 83% rename from Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/index.json rename to Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.2.0/index.json index 1c007617..b5a131f0 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/index.json +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.2.0/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net452", "netstandard2.0" ] @@ -20,7 +20,7 @@ { "Subject": "package", "Code": "MIT", - "HRef": "https://github.com/PowerShell/PowerShell/blob/master/LICENSE.txt", + "HRef": "https://licenses.nuget.org/MIT", "Description": null }, { diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.2.0/package.nuspec similarity index 59% rename from Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.2.0/package.nuspec index d3658265..74d0a9f8 100644 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.2.0/package.nuspec @@ -2,19 +2,20 @@ Microsoft.WSMan.Runtime - 6.2.7 + 7.2.0 Microsoft Microsoft,PowerShell - true - https://github.com/PowerShell/PowerShell/blob/master/LICENSE.txt + false + MIT + https://licenses.nuget.org/MIT + Powershell_black_64.png https://github.com/PowerShell/PowerShell - https://github.com/PowerShell/PowerShell/blob/master/assets/Powershell_black_64.png?raw=true - PowerShell runtime for hosting PowerShell Core + Runtime for hosting PowerShell © Microsoft Corporation. All rights reserved. en-US PowerShell - + diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/project-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.2.0/project-LICENSE.txt similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/project-LICENSE.txt rename to Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.2.0/project-LICENSE.txt diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.2.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.2.0/readme.md new file mode 100644 index 00000000..46a23dfe --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.2.0/readme.md @@ -0,0 +1,26 @@ +Microsoft.WSMan.Runtime [7.2.0](https://www.nuget.org/packages/Microsoft.WSMan.Runtime/7.2.0) +-------------------- + +Used by: SqlDatabase + +Target frameworks: net452, net5.0, net6.0, netcoreapp3.1, netstandard2.0 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://licenses.nuget.org/MIT) +- project license: [MIT](https://github.com/PowerShell/PowerShell) + +Description +----------- +Runtime for hosting PowerShell + +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.testplatform.objectmodel/16.9.4/remarks.md b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.2.0/remarks.md similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/remarks.md rename to Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.2.0/remarks.md diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.2.0/third-party-notices.txt similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/third-party-notices.txt rename to Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.2.0/third-party-notices.txt diff --git a/Build/third-party-libraries/packages/nuget.org/moq/4.16.1/index.json b/Build/third-party-libraries/packages/nuget.org/moq/4.16.1/index.json index e5b7c883..1569c3e7 100644 --- a/Build/third-party-libraries/packages/nuget.org/moq/4.16.1/index.json +++ b/Build/third-party-libraries/packages/nuget.org/moq/4.16.1/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" ], "Dependencies": [ diff --git a/Build/third-party-libraries/packages/nuget.org/moq/4.16.1/readme.md b/Build/third-party-libraries/packages/nuget.org/moq/4.16.1/readme.md index f8c46660..aeec6f46 100644 --- a/Build/third-party-libraries/packages/nuget.org/moq/4.16.1/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/moq/4.16.1/readme.md @@ -3,7 +3,7 @@ Moq [4.16.1](https://www.nuget.org/packages/Moq/4.16.1) Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 License: [BSD-3-Clause](../../../../licenses/bsd-3-clause) diff --git a/Build/third-party-libraries/packages/nuget.org/mysqlconnector/1.3.10/index.json b/Build/third-party-libraries/packages/nuget.org/mysqlconnector/1.3.10/index.json index e5f396ee..94493ffb 100644 --- a/Build/third-party-libraries/packages/nuget.org/mysqlconnector/1.3.10/index.json +++ b/Build/third-party-libraries/packages/nuget.org/mysqlconnector/1.3.10/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net452", "netstandard2.0" ] diff --git a/Build/third-party-libraries/packages/nuget.org/mysqlconnector/1.3.10/readme.md b/Build/third-party-libraries/packages/nuget.org/mysqlconnector/1.3.10/readme.md index 7d70a3ad..54be54d9 100644 --- a/Build/third-party-libraries/packages/nuget.org/mysqlconnector/1.3.10/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/mysqlconnector/1.3.10/readme.md @@ -3,7 +3,7 @@ MySqlConnector [1.3.10](https://www.nuget.org/packages/MySqlConnector/1.3.10) Used by: SqlDatabase -Target frameworks: net452, net5.0, netcoreapp2.1, netcoreapp3.1, netstandard2.0 +Target frameworks: net452, net5.0, net6.0, netcoreapp3.1, netstandard2.0 License: [MIT](../../../../licenses/mit) 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 48a44b18..e771e1ec 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 @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net452", "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 6388a23d..4b97e56f 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: net452, net5.0, netcoreapp2.1, netcoreapp3.1, netstandard2.0 +Target frameworks: net452, net5.0, net6.0, netcoreapp3.1, netstandard2.0 License: [MIT](../../../../licenses/mit) 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.1/index.json index 2037a02b..c349f976 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.1/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" ] } 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.1/readme.md index 847d82c2..ba03f11f 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.1/readme.md @@ -3,7 +3,7 @@ Newtonsoft.Json [13.0.1](https://www.nuget.org/packages/Newtonsoft.Json/13.0.1) Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 License: [MIT](../../../../licenses/mit) diff --git a/Build/third-party-libraries/packages/nuget.org/npgsql/4.0.11/index.json b/Build/third-party-libraries/packages/nuget.org/npgsql/4.0.11/index.json index 8deb81ef..0602ccf1 100644 --- a/Build/third-party-libraries/packages/nuget.org/npgsql/4.0.11/index.json +++ b/Build/third-party-libraries/packages/nuget.org/npgsql/4.0.11/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net452", "netstandard2.0" ], diff --git a/Build/third-party-libraries/packages/nuget.org/npgsql/4.0.11/readme.md b/Build/third-party-libraries/packages/nuget.org/npgsql/4.0.11/readme.md index 6e83cc84..0ff33d36 100644 --- a/Build/third-party-libraries/packages/nuget.org/npgsql/4.0.11/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/npgsql/4.0.11/readme.md @@ -3,7 +3,7 @@ Npgsql [4.0.11](https://www.nuget.org/packages/Npgsql/4.0.11) Used by: SqlDatabase -Target frameworks: net452, net5.0, netcoreapp2.1, netcoreapp3.1, netstandard2.0 +Target frameworks: net452, net5.0, net6.0, netcoreapp3.1, netstandard2.0 License: [PostgreSQL](../../../../licenses/postgresql) diff --git a/Build/third-party-libraries/packages/nuget.org/nuget.frameworks/5.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/nuget.frameworks/5.0.0/index.json index 691d794f..089849f2 100644 --- a/Build/third-party-libraries/packages/nuget.org/nuget.frameworks/5.0.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/nuget.frameworks/5.0.0/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" ] } diff --git a/Build/third-party-libraries/packages/nuget.org/nuget.frameworks/5.0.0/readme.md b/Build/third-party-libraries/packages/nuget.org/nuget.frameworks/5.0.0/readme.md index fca3bfc9..2fbff4e1 100644 --- a/Build/third-party-libraries/packages/nuget.org/nuget.frameworks/5.0.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/nuget.frameworks/5.0.0/readme.md @@ -3,7 +3,7 @@ NuGet.Frameworks [5.0.0](https://www.nuget.org/packages/NuGet.Frameworks/5.0.0%2 Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 License: [Apache-2.0](../../../../licenses/apache-2.0) diff --git a/Build/third-party-libraries/packages/nuget.org/nunit/3.13.1/index.json b/Build/third-party-libraries/packages/nuget.org/nunit/3.13.2/index.json similarity index 96% rename from Build/third-party-libraries/packages/nuget.org/nunit/3.13.1/index.json rename to Build/third-party-libraries/packages/nuget.org/nunit/3.13.2/index.json index 5f283814..4cb70adb 100644 --- a/Build/third-party-libraries/packages/nuget.org/nunit/3.13.1/index.json +++ b/Build/third-party-libraries/packages/nuget.org/nunit/3.13.2/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" ] } diff --git a/Build/third-party-libraries/packages/nuget.org/nunit/3.13.1/package-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/nunit/3.13.2/package-LICENSE.txt similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/nunit/3.13.1/package-LICENSE.txt rename to Build/third-party-libraries/packages/nuget.org/nunit/3.13.2/package-LICENSE.txt diff --git a/Build/third-party-libraries/packages/nuget.org/nunit/3.13.1/package.nuspec b/Build/third-party-libraries/packages/nuget.org/nunit/3.13.2/package.nuspec similarity index 98% rename from Build/third-party-libraries/packages/nuget.org/nunit/3.13.1/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/nunit/3.13.2/package.nuspec index 933aa749..4fa9ee56 100644 --- a/Build/third-party-libraries/packages/nuget.org/nunit/3.13.1/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/nunit/3.13.2/package.nuspec @@ -2,7 +2,7 @@ NUnit - 3.13.1 + 3.13.2 NUnit Charlie Poole, Rob Prouse Charlie Poole, Rob Prouse diff --git a/Build/third-party-libraries/packages/nuget.org/nunit/3.13.1/readme.md b/Build/third-party-libraries/packages/nuget.org/nunit/3.13.2/readme.md similarity index 87% rename from Build/third-party-libraries/packages/nuget.org/nunit/3.13.1/readme.md rename to Build/third-party-libraries/packages/nuget.org/nunit/3.13.2/readme.md index f1b96aaa..a669f13e 100644 --- a/Build/third-party-libraries/packages/nuget.org/nunit/3.13.1/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/nunit/3.13.2/readme.md @@ -1,9 +1,9 @@ -NUnit [3.13.1](https://www.nuget.org/packages/NUnit/3.13.1) +NUnit [3.13.2](https://www.nuget.org/packages/NUnit/3.13.2) -------------------- Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 License: [MIT](../../../../licenses/mit) diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/remarks.md b/Build/third-party-libraries/packages/nuget.org/nunit/3.13.2/remarks.md similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/remarks.md rename to Build/third-party-libraries/packages/nuget.org/nunit/3.13.2/remarks.md diff --git a/Build/third-party-libraries/packages/nuget.org/nunit/3.13.1/repository-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/nunit/3.13.2/repository-LICENSE.txt similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/nunit/3.13.1/repository-LICENSE.txt rename to Build/third-party-libraries/packages/nuget.org/nunit/3.13.2/repository-LICENSE.txt diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/nunit/3.13.2/third-party-notices.txt similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/third-party-notices.txt rename to Build/third-party-libraries/packages/nuget.org/nunit/3.13.2/third-party-notices.txt diff --git a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/index.json b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/index.json deleted file mode 100644 index ba9f90cc..00000000 --- a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/index.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "License": { - "Code": "MIT", - "Status": "AutomaticallyApproved" - }, - "UsedBy": [ - { - "Name": "SqlDatabase", - "InternalOnly": true, - "TargetFrameworks": [ - "netcoreapp2.1", - "netcoreapp3.1", - "net5.0", - "net472" - ], - "Dependencies": [ - { - "Name": "Microsoft.DotNet.InternalAbstractions", - "Version": "1.0.0" - }, - { - "Name": "System.ComponentModel.EventBasedAsync", - "Version": "4.3.0" - }, - { - "Name": "System.ComponentModel.TypeConverter", - "Version": "4.3.0" - }, - { - "Name": "System.Runtime.InteropServices.RuntimeInformation", - "Version": "4.3.0" - }, - { - "Name": "System.Threading.Thread", - "Version": "4.3.0" - }, - { - "Name": "System.Xml.XPath.XmlDocument", - "Version": "4.3.0" - }, - { - "Name": "System.Xml.XmlDocument", - "Version": "4.3.0" - } - ] - } - ], - "Licenses": [ - { - "Subject": "package", - "Code": null, - "HRef": null, - "Description": null - }, - { - "Subject": "repository", - "Code": "MIT", - "HRef": "https://github.com/nunit/nunit3-vs-adapter", - "Description": null - }, - { - "Subject": "project", - "Code": null, - "HRef": "https://github.com/nunit/docs/wiki/Visual-Studio-Test-Adapter", - "Description": "License should be verified on https://github.com/nunit/docs/wiki/Visual-Studio-Test-Adapter" - } - ] -} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/package-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/package-LICENSE.txt deleted file mode 100644 index 853e5f5a..00000000 --- a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/package-LICENSE.txt +++ /dev/null @@ -1,20 +0,0 @@ -Copyright (c) 2011-2020 Charlie Poole, 2014-2020 Terje Sandstrom - -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/nunit3testadapter/3.17.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/package.nuspec deleted file mode 100644 index eb3ea9cc..00000000 --- a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/package.nuspec +++ /dev/null @@ -1,40 +0,0 @@ - - - - NUnit3TestAdapter - 3.17.0 - NUnit 3 Test Adapter for Visual Studio and DotNet - Charlie Poole, Terje Sandstrom - Charlie Poole, Terje Sandstrom - false - LICENSE.txt - https://aka.ms/deprecateLicenseUrl - https://github.com/nunit/docs/wiki/Visual-Studio-Test-Adapter - https://cdn.rawgit.com/nunit/resources/master/images/icon/nunit_256.png - The NUnit3 TestAdapter for Visual Studio, all versions from 2012 and onwards, and DotNet (incl. .Net core). - - 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.) - - Note that with this package you should not install the VSIX adapter package. - NUnit 3 adapter for running tests in Visual Studio and DotNet. Works with NUnit 3.x, use the NUnit 2 adapter for 2.x tests. - This release works with NUnit 3.0 and higher only. Also see https://docs.nunit.org/articles/vs-test-adapter/Adapter-Release-Notes.html - Copyright (c) 2011-2020 Charlie Poole, 2014-2020 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/3.17.0/readme.md b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/readme.md deleted file mode 100644 index 0a6712e2..00000000 --- a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/readme.md +++ /dev/null @@ -1,41 +0,0 @@ -NUnit3TestAdapter [3.17.0](https://www.nuget.org/packages/NUnit3TestAdapter/3.17.0) --------------------- - -Used by: SqlDatabase internal - -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 - -License: [MIT](../../../../licenses/mit) - -- package license: [Unknown]() -- repository license: [MIT](https://github.com/nunit/nunit3-vs-adapter) -- project license: [Unknown](https://github.com/nunit/docs/wiki/Visual-Studio-Test-Adapter) , License should be verified on https://github.com/nunit/docs/wiki/Visual-Studio-Test-Adapter - -Description ------------ -The NUnit3 TestAdapter for Visual Studio, all versions from 2012 and onwards, and DotNet (incl. .Net core). - - 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.) - - Note that with this package you should not install the VSIX adapter package. - -Remarks ------------ -no remarks - - -Dependencies 7 ------------ - -|Name|Version| -|----------|:----| -|[Microsoft.DotNet.InternalAbstractions](../../../../packages/nuget.org/microsoft.dotnet.internalabstractions/1.0.0)|1.0.0| -|[System.ComponentModel.EventBasedAsync](../../../../packages/nuget.org/system.componentmodel.eventbasedasync/4.3.0)|4.3.0| -|[System.ComponentModel.TypeConverter](../../../../packages/nuget.org/system.componentmodel.typeconverter/4.3.0)|4.3.0| -|[System.Runtime.InteropServices.RuntimeInformation](../../../../packages/nuget.org/system.runtime.interopservices.runtimeinformation/4.3.0)|4.3.0| -|[System.Threading.Thread](../../../../packages/nuget.org/system.threading.thread/4.3.0)|4.3.0| -|[System.Xml.XPath.XmlDocument](../../../../packages/nuget.org/system.xml.xpath.xmldocument/4.3.0)|4.3.0| -|[System.Xml.XmlDocument](../../../../packages/nuget.org/system.xml.xmldocument/4.3.0)|4.3.0| - -*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/4.1.0/index.json b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/4.1.0/index.json new file mode 100644 index 00000000..8756ce79 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/4.1.0/index.json @@ -0,0 +1,38 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp3.1", + "net5.0", + "net6.0", + "net472" + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://licenses.nuget.org/MIT", + "Description": null + }, + { + "Subject": "repository", + "Code": "MIT", + "HRef": "https://github.com/nunit/nunit3-vs-adapter", + "Description": null + }, + { + "Subject": "project", + "Code": null, + "HRef": "https://docs.nunit.org/articles/vs-test-adapter/Index.html", + "Description": "License should be verified on https://docs.nunit.org/articles/vs-test-adapter/Index.html" + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/4.1.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/4.1.0/package.nuspec new file mode 100644 index 00000000..64a2df66 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/4.1.0/package.nuspec @@ -0,0 +1,26 @@ + + + + NUnit3TestAdapter + 4.1.0 + NUnit 3 Test Adapter for Visual Studio and DotNet + Charlie Poole, Terje Sandstrom + false + MIT + https://licenses.nuget.org/MIT + https://docs.nunit.org/articles/vs-test-adapter/Index.html + https://cdn.rawgit.com/nunit/resources/master/images/icon/nunit_256.png + The NUnit3 TestAdapter for Visual Studio, all versions from 2012 and onwards, and DotNet (incl. .Net core). + + 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.) + + Note that with this package you should not install the VSIX adapter package. + NUnit 3 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-2021 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.1.0/readme.md b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/4.1.0/readme.md new file mode 100644 index 00000000..2677b4e6 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/4.1.0/readme.md @@ -0,0 +1,32 @@ +NUnit3TestAdapter [4.1.0](https://www.nuget.org/packages/NUnit3TestAdapter/4.1.0) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://licenses.nuget.org/MIT) +- repository license: [MIT](https://github.com/nunit/nunit3-vs-adapter) +- project license: [Unknown](https://docs.nunit.org/articles/vs-test-adapter/Index.html) , License should be verified on https://docs.nunit.org/articles/vs-test-adapter/Index.html + +Description +----------- +The NUnit3 TestAdapter for Visual Studio, all versions from 2012 and onwards, and DotNet (incl. .Net core). + + 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.) + + Note that with this package you should not install the VSIX adapter package. + +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.wsman.runtime/6.2.7/remarks.md b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/4.1.0/remarks.md similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/remarks.md rename to Build/third-party-libraries/packages/nuget.org/nunit3testadapter/4.1.0/remarks.md diff --git a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/4.1.0/repository-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/repository-LICENSE rename to Build/third-party-libraries/packages/nuget.org/nunit3testadapter/4.1.0/repository-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/4.1.0/third-party-notices.txt similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/third-party-notices.txt rename to Build/third-party-libraries/packages/nuget.org/nunit3testadapter/4.1.0/third-party-notices.txt diff --git a/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.0/index.json b/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.0/index.json index 4a2478d9..c4600ba2 100644 --- a/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.0/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net452", "netstandard2.0", "net472" diff --git a/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.0/readme.md b/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.0/readme.md index 0d24a8b1..1fba9082 100644 --- a/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.0/readme.md @@ -3,7 +3,7 @@ PowerShellStandard.Library [5.1.0](https://www.nuget.org/packages/PowerShellStan Used by: SqlDatabase -Target frameworks: net452, net472, net5.0, netcoreapp2.1, netcoreapp3.1, netstandard2.0 +Target frameworks: net452, net472, net5.0, net6.0, netcoreapp3.1, netstandard2.0 License: [MIT](../../../../licenses/mit) diff --git a/Build/third-party-libraries/packages/nuget.org/shouldly/4.0.3/index.json b/Build/third-party-libraries/packages/nuget.org/shouldly/4.0.3/index.json index fdf607ea..187b79ec 100644 --- a/Build/third-party-libraries/packages/nuget.org/shouldly/4.0.3/index.json +++ b/Build/third-party-libraries/packages/nuget.org/shouldly/4.0.3/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" ], "Dependencies": [ diff --git a/Build/third-party-libraries/packages/nuget.org/shouldly/4.0.3/readme.md b/Build/third-party-libraries/packages/nuget.org/shouldly/4.0.3/readme.md index 0a68b0ae..6d055d9d 100644 --- a/Build/third-party-libraries/packages/nuget.org/shouldly/4.0.3/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/shouldly/4.0.3/readme.md @@ -3,7 +3,7 @@ Shouldly [4.0.3](https://www.nuget.org/packages/Shouldly/4.0.3) Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 License: [BSD-2-Clause](../../../../licenses/bsd-2-clause) diff --git a/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/remarks.md b/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/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.333/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/index.json b/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.376/index.json similarity index 96% rename from Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/index.json rename to Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.376/index.json index 9911c827..5da73b59 100644 --- a/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/index.json +++ b/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.376/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net452", "netstandard2.0", "net472" diff --git a/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/package-LICENSE b/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.376/package-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/package-LICENSE rename to Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.376/package-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/package.nuspec b/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.376/package.nuspec similarity index 92% rename from Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/package.nuspec rename to Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.376/package.nuspec index 0e37700e..dd15edde 100644 --- a/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/package.nuspec +++ b/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.376/package.nuspec @@ -2,7 +2,7 @@ StyleCop.Analyzers.Unstable - 1.2.0.333 + 1.2.0.376 StyleCop.Analyzers.Unstable Sam Harwell et. al. Sam Harwell @@ -12,7 +12,7 @@ https://licenses.nuget.org/MIT https://github.com/DotNetAnalyzers/StyleCopAnalyzers An implementation of StyleCop's rules using Roslyn analyzers and code fixes - https://github.com/DotNetAnalyzers/StyleCopAnalyzers/releases/1.2.0-beta.333 + https://github.com/DotNetAnalyzers/StyleCopAnalyzers/releases/1.2.0-beta.376 Copyright 2015 Tunnel Vision Laboratories, LLC StyleCop DotNetAnalyzers Roslyn Diagnostic Analyzer diff --git a/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/project-LICENSE b/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.376/project-LICENSE similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/project-LICENSE rename to Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.376/project-LICENSE diff --git a/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/readme.md b/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.376/readme.md similarity index 68% rename from Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/readme.md rename to Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.376/readme.md index 3957a22e..0049a99a 100644 --- a/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.376/readme.md @@ -1,9 +1,9 @@ -StyleCop.Analyzers.Unstable [1.2.0.333](https://www.nuget.org/packages/StyleCop.Analyzers.Unstable/1.2.0.333) +StyleCop.Analyzers.Unstable [1.2.0.376](https://www.nuget.org/packages/StyleCop.Analyzers.Unstable/1.2.0.376) -------------------- Used by: SqlDatabase internal -Target frameworks: net452, net472, net5.0, netcoreapp2.1, netcoreapp3.1, netstandard2.0 +Target frameworks: net452, net472, net5.0, net6.0, netcoreapp3.1, netstandard2.0 License: [MIT](../../../../licenses/mit) diff --git a/Build/third-party-libraries/packages/nuget.org/nunit/3.13.1/remarks.md b/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.376/remarks.md similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/nunit/3.13.1/remarks.md rename to Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.376/remarks.md diff --git a/Build/third-party-libraries/packages/nuget.org/nunit/3.13.1/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.376/third-party-notices.txt similarity index 100% rename from Build/third-party-libraries/packages/nuget.org/nunit/3.13.1/third-party-notices.txt rename to Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.376/third-party-notices.txt diff --git a/Build/third-party-libraries/packages/nuget.org/system.appcontext/4.1.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.appcontext/4.1.0/index.json deleted file mode 100644 index cb053ee5..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.appcontext/4.1.0/index.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "License": { - "Code": "ms-net-library", - "Status": "AutomaticallyApproved" - }, - "UsedBy": [ - { - "Name": "SqlDatabase", - "InternalOnly": true, - "TargetFrameworks": [ - "netcoreapp2.1", - "netcoreapp3.1", - "net5.0", - "net472" - ] - } - ], - "Licenses": [ - { - "Subject": "package", - "Code": "ms-net-library", - "HRef": "http://go.microsoft.com/fwlink/?LinkId=329770", - "Description": null - }, - { - "Subject": "project", - "Code": null, - "HRef": "https://dot.net/", - "Description": "License should be verified on https://dot.net/" - } - ] -} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.appcontext/4.1.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.appcontext/4.1.0/package.nuspec deleted file mode 100644 index 3377973d..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.appcontext/4.1.0/package.nuspec +++ /dev/null @@ -1,49 +0,0 @@ - - - - System.AppContext - 4.1.0 - System.AppContext - Microsoft - microsoft,dotnetframework - true - http://go.microsoft.com/fwlink/?LinkId=329770 - https://dot.net/ - http://go.microsoft.com/fwlink/?LinkID=288859 - Provides the System.AppContext class, which allows access to the BaseDirectory property and other application specific data. - -Commonly Used Types: -System.AppContext - -When using NuGet 3.x this package requires at least version 3.4. - https://go.microsoft.com/fwlink/?LinkID=799417 - © Microsoft Corporation. All rights reserved. - true - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.appcontext/4.1.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.appcontext/4.1.0/readme.md deleted file mode 100644 index a998b65b..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.appcontext/4.1.0/readme.md +++ /dev/null @@ -1,31 +0,0 @@ -System.AppContext [4.1.0](https://www.nuget.org/packages/System.AppContext/4.1.0) --------------------- - -Used by: SqlDatabase internal - -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 - -License: [ms-net-library](../../../../licenses/ms-net-library) - -- package license: [ms-net-library](http://go.microsoft.com/fwlink/?LinkId=329770) -- project license: [Unknown](https://dot.net/) , License should be verified on https://dot.net/ - -Description ------------ -Provides the System.AppContext class, which allows access to the BaseDirectory property and other application specific data. - -Commonly Used Types: -System.AppContext - -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.appcontext/4.1.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.appcontext/4.1.0/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.appcontext/4.1.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.appcontext/4.1.0/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.buffers/4.4.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.4.0/index.json index f3706740..a72233ce 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.buffers/4.4.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.4.0/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net452", "netstandard2.0" ] diff --git a/Build/third-party-libraries/packages/nuget.org/system.buffers/4.4.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.4.0/readme.md index 60a51643..df0014e1 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.buffers/4.4.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.4.0/readme.md @@ -3,7 +3,7 @@ System.Buffers [4.4.0](https://www.nuget.org/packages/System.Buffers/4.4.0) Used by: SqlDatabase -Target frameworks: net452, net5.0, netcoreapp2.1, netcoreapp3.1, netstandard2.0 +Target frameworks: net452, net5.0, net6.0, netcoreapp3.1, netstandard2.0 License: [MIT](../../../../licenses/mit) 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 382a9b54..c19f5aa6 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 @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" ] } 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 0ec1f1b3..bdbc9ed0 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 internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 License: [MIT](../../../../licenses/mit) diff --git a/Build/third-party-libraries/packages/nuget.org/system.collections.nongeneric/4.3.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.collections.nongeneric/4.3.0/index.json index 6a62a378..330a9b8c 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.collections.nongeneric/4.3.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.collections.nongeneric/4.3.0/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" ], "Dependencies": [ diff --git a/Build/third-party-libraries/packages/nuget.org/system.collections.nongeneric/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.collections.nongeneric/4.3.0/readme.md index 9ea88387..3fd51179 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.collections.nongeneric/4.3.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.collections.nongeneric/4.3.0/readme.md @@ -3,7 +3,7 @@ System.Collections.NonGeneric [4.3.0](https://www.nuget.org/packages/System.Coll Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 License: [ms-net-library](../../../../licenses/ms-net-library) diff --git a/Build/third-party-libraries/packages/nuget.org/system.collections.specialized/4.3.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.collections.specialized/4.3.0/index.json index 58af373c..bf2a4599 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.collections.specialized/4.3.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.collections.specialized/4.3.0/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" ], "Dependencies": [ diff --git a/Build/third-party-libraries/packages/nuget.org/system.collections.specialized/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.collections.specialized/4.3.0/readme.md index 7e16dffb..8eedb355 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.collections.specialized/4.3.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.collections.specialized/4.3.0/readme.md @@ -3,7 +3,7 @@ System.Collections.Specialized [4.3.0](https://www.nuget.org/packages/System.Col Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 License: [ms-net-library](../../../../licenses/ms-net-library) diff --git a/Build/third-party-libraries/packages/nuget.org/system.componentmodel.eventbasedasync/4.3.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.componentmodel.eventbasedasync/4.3.0/index.json deleted file mode 100644 index 6a62a378..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.componentmodel.eventbasedasync/4.3.0/index.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "License": { - "Code": "ms-net-library", - "Status": "AutomaticallyApproved" - }, - "UsedBy": [ - { - "Name": "SqlDatabase", - "InternalOnly": true, - "TargetFrameworks": [ - "netcoreapp2.1", - "netcoreapp3.1", - "net5.0", - "net472" - ], - "Dependencies": [ - { - "Name": "System.Threading", - "Version": "4.3.0" - } - ] - } - ], - "Licenses": [ - { - "Subject": "package", - "Code": "ms-net-library", - "HRef": "http://go.microsoft.com/fwlink/?LinkId=329770", - "Description": null - }, - { - "Subject": "project", - "Code": null, - "HRef": "https://dot.net/", - "Description": "License should be verified on https://dot.net/" - } - ] -} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.componentmodel.eventbasedasync/4.3.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.componentmodel.eventbasedasync/4.3.0/package.nuspec deleted file mode 100644 index 2035d370..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.componentmodel.eventbasedasync/4.3.0/package.nuspec +++ /dev/null @@ -1,59 +0,0 @@ - - - - System.ComponentModel.EventBasedAsync - 4.3.0 - System.ComponentModel.EventBasedAsync - Microsoft - microsoft,dotnetframework - true - http://go.microsoft.com/fwlink/?LinkId=329770 - https://dot.net/ - http://go.microsoft.com/fwlink/?LinkID=288859 - Provides support classes and delegates for the event-based asynchronous pattern. Developers should prefer the classes in the System.Threading.Tasks package. - -Commonly Used Types: -System.ComponentModel.AsyncCompletedEventArgs -System.ComponentModel.AsyncCompletedEventHandler -System.ComponentModel.ProgressChangedEventArgs -System.ComponentModel.ProgressChangedEventHandler -System.ComponentModel.AsyncOperation -System.ComponentModel.AsyncOperationManager - -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.componentmodel.eventbasedasync/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.componentmodel.eventbasedasync/4.3.0/readme.md deleted file mode 100644 index 11a373f2..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.componentmodel.eventbasedasync/4.3.0/readme.md +++ /dev/null @@ -1,39 +0,0 @@ -System.ComponentModel.EventBasedAsync [4.3.0](https://www.nuget.org/packages/System.ComponentModel.EventBasedAsync/4.3.0) --------------------- - -Used by: SqlDatabase internal - -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 - -License: [ms-net-library](../../../../licenses/ms-net-library) - -- package license: [ms-net-library](http://go.microsoft.com/fwlink/?LinkId=329770) -- project license: [Unknown](https://dot.net/) , License should be verified on https://dot.net/ - -Description ------------ -Provides support classes and delegates for the event-based asynchronous pattern. Developers should prefer the classes in the System.Threading.Tasks package. - -Commonly Used Types: -System.ComponentModel.AsyncCompletedEventArgs -System.ComponentModel.AsyncCompletedEventHandler -System.ComponentModel.ProgressChangedEventArgs -System.ComponentModel.ProgressChangedEventHandler -System.ComponentModel.AsyncOperation -System.ComponentModel.AsyncOperationManager - -When using NuGet 3.x this package requires at least version 3.4. - -Remarks ------------ -no remarks - - -Dependencies 1 ------------ - -|Name|Version| -|----------|:----| -|[System.Threading](../../../../packages/nuget.org/system.threading/4.3.0)|4.3.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.componentmodel.eventbasedasync/4.3.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.componentmodel.eventbasedasync/4.3.0/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.componentmodel.eventbasedasync/4.3.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.componentmodel.eventbasedasync/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.componentmodel.primitives/4.3.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.componentmodel.primitives/4.3.0/index.json index b6c1e6c6..6021bb1b 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.componentmodel.primitives/4.3.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.componentmodel.primitives/4.3.0/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" ], "Dependencies": [ diff --git a/Build/third-party-libraries/packages/nuget.org/system.componentmodel.primitives/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.componentmodel.primitives/4.3.0/readme.md index 73ae92df..506dd88f 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.componentmodel.primitives/4.3.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.componentmodel.primitives/4.3.0/readme.md @@ -3,7 +3,7 @@ System.ComponentModel.Primitives [4.3.0](https://www.nuget.org/packages/System.C Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 License: [ms-net-library](../../../../licenses/ms-net-library) diff --git a/Build/third-party-libraries/packages/nuget.org/system.componentmodel.typeconverter/4.3.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.componentmodel.typeconverter/4.3.0/index.json index 544be632..eb1de6c5 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.componentmodel.typeconverter/4.3.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.componentmodel.typeconverter/4.3.0/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" ], "Dependencies": [ diff --git a/Build/third-party-libraries/packages/nuget.org/system.componentmodel.typeconverter/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.componentmodel.typeconverter/4.3.0/readme.md index fd9aeadd..cf75100e 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.componentmodel.typeconverter/4.3.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.componentmodel.typeconverter/4.3.0/readme.md @@ -3,7 +3,7 @@ System.ComponentModel.TypeConverter [4.3.0](https://www.nuget.org/packages/Syste Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 License: [ms-net-library](../../../../licenses/ms-net-library) diff --git a/Build/third-party-libraries/packages/nuget.org/system.componentmodel/4.3.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.componentmodel/4.3.0/index.json index cb053ee5..e143dd9c 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.componentmodel/4.3.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.componentmodel/4.3.0/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" ] } diff --git a/Build/third-party-libraries/packages/nuget.org/system.componentmodel/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.componentmodel/4.3.0/readme.md index 1da84558..1be96bc6 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.componentmodel/4.3.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.componentmodel/4.3.0/readme.md @@ -3,7 +3,7 @@ System.ComponentModel [4.3.0](https://www.nuget.org/packages/System.ComponentMod Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 License: [ms-net-library](../../../../licenses/ms-net-library) diff --git a/Build/third-party-libraries/packages/nuget.org/system.configuration.configurationmanager/4.5.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.configuration.configurationmanager/4.5.0/index.json index 214b48c4..ca36c0cd 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.configuration.configurationmanager/4.5.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.configuration.configurationmanager/4.5.0/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net452", "netstandard2.0" ], diff --git a/Build/third-party-libraries/packages/nuget.org/system.configuration.configurationmanager/4.5.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.configuration.configurationmanager/4.5.0/readme.md index 5b4c7a4a..f64fbaee 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.configuration.configurationmanager/4.5.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.configuration.configurationmanager/4.5.0/readme.md @@ -3,7 +3,7 @@ System.Configuration.ConfigurationManager [4.5.0](https://www.nuget.org/packages Used by: SqlDatabase -Target frameworks: net452, net5.0, netcoreapp2.1, netcoreapp3.1, netstandard2.0 +Target frameworks: net452, net5.0, net6.0, netcoreapp3.1, netstandard2.0 License: [MIT](../../../../licenses/mit) diff --git a/Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.5.1/index.json b/Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.5.1/index.json index 3953b474..010dc70b 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.5.1/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.5.1/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net452", "netstandard2.0" ], diff --git a/Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.5.1/readme.md b/Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.5.1/readme.md index a9fa0ba6..608c0bca 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.5.1/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.5.1/readme.md @@ -3,7 +3,7 @@ System.Data.SqlClient [4.5.1](https://www.nuget.org/packages/System.Data.SqlClie Used by: SqlDatabase -Target frameworks: net452, net5.0, netcoreapp2.1, netcoreapp3.1, netstandard2.0 +Target frameworks: net452, net5.0, net6.0, netcoreapp3.1, netstandard2.0 License: [MIT](../../../../licenses/mit) diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.5.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.5.0/index.json index f3706740..a72233ce 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.5.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.5.0/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net452", "netstandard2.0" ] diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.5.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.5.0/readme.md index 3032b33e..e99aa47e 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.5.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.5.0/readme.md @@ -3,7 +3,7 @@ System.Diagnostics.DiagnosticSource [4.5.0](https://www.nuget.org/packages/Syste Used by: SqlDatabase -Target frameworks: net452, net5.0, netcoreapp2.1, netcoreapp3.1, netstandard2.0 +Target frameworks: net452, net5.0, net6.0, netcoreapp3.1, netstandard2.0 License: [MIT](../../../../licenses/mit) diff --git a/Build/third-party-libraries/packages/nuget.org/system.dynamic.runtime/4.3.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.dynamic.runtime/4.3.0/index.json index 0dd49c10..8ded9a29 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.dynamic.runtime/4.3.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.dynamic.runtime/4.3.0/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" ], "Dependencies": [ diff --git a/Build/third-party-libraries/packages/nuget.org/system.dynamic.runtime/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.dynamic.runtime/4.3.0/readme.md index c802b600..c19a0d5c 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.dynamic.runtime/4.3.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.dynamic.runtime/4.3.0/readme.md @@ -3,7 +3,7 @@ System.Dynamic.Runtime [4.3.0](https://www.nuget.org/packages/System.Dynamic.Run Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 License: [ms-net-library](../../../../licenses/ms-net-library) diff --git a/Build/third-party-libraries/packages/nuget.org/system.io.filesystem.primitives/4.3.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.io.filesystem.primitives/4.3.0/index.json index cb053ee5..e143dd9c 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.io.filesystem.primitives/4.3.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.io.filesystem.primitives/4.3.0/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" ] } diff --git a/Build/third-party-libraries/packages/nuget.org/system.io.filesystem.primitives/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.io.filesystem.primitives/4.3.0/readme.md index af4d7ada..aaa88dfb 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.io.filesystem.primitives/4.3.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.io.filesystem.primitives/4.3.0/readme.md @@ -3,7 +3,7 @@ System.IO.FileSystem.Primitives [4.3.0](https://www.nuget.org/packages/System.IO Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 License: [ms-net-library](../../../../licenses/ms-net-library) diff --git a/Build/third-party-libraries/packages/nuget.org/system.linq.expressions/4.3.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.linq.expressions/4.3.0/index.json index 442dc52d..8d68cc2f 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.linq.expressions/4.3.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.linq.expressions/4.3.0/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" ], "Dependencies": [ diff --git a/Build/third-party-libraries/packages/nuget.org/system.linq.expressions/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.linq.expressions/4.3.0/readme.md index 38ecd9b6..cb979b66 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.linq.expressions/4.3.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.linq.expressions/4.3.0/readme.md @@ -3,7 +3,7 @@ System.Linq.Expressions [4.3.0](https://www.nuget.org/packages/System.Linq.Expre Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 License: [ms-net-library](../../../../licenses/ms-net-library) diff --git a/Build/third-party-libraries/packages/nuget.org/system.linq/4.3.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.linq/4.3.0/index.json index cb053ee5..e143dd9c 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.linq/4.3.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.linq/4.3.0/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" ] } diff --git a/Build/third-party-libraries/packages/nuget.org/system.linq/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.linq/4.3.0/readme.md index bb17d419..31f8a38f 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.linq/4.3.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.linq/4.3.0/readme.md @@ -3,7 +3,7 @@ System.Linq [4.3.0](https://www.nuget.org/packages/System.Linq/4.3.0) Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 License: [ms-net-library](../../../../licenses/ms-net-library) diff --git a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.3/index.json b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.3/index.json index 00a64e95..65f22a83 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.3/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.3/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net452", "netstandard2.0" ], diff --git a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.3/readme.md b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.3/readme.md index 62d36493..97cbe0e8 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.3/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.3/readme.md @@ -3,7 +3,7 @@ System.Memory [4.5.3](https://www.nuget.org/packages/System.Memory/4.5.3) Used by: SqlDatabase -Target frameworks: net452, net5.0, netcoreapp2.1, netcoreapp3.1, netstandard2.0 +Target frameworks: net452, net5.0, net6.0, netcoreapp3.1, netstandard2.0 License: [MIT](../../../../licenses/mit) 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 c35b4742..be8da353 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 @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" ], "Dependencies": [ 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 963c6681..61f509d8 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 @@ -3,7 +3,7 @@ System.Memory [4.5.4](https://www.nuget.org/packages/System.Memory/4.5.4) Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 License: [MIT](../../../../licenses/mit) 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 f3706740..a72233ce 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 @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net452", "netstandard2.0" ] 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 566c1bba..9b77f8ea 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 @@ -3,7 +3,7 @@ System.Numerics.Vectors [4.4.0](https://www.nuget.org/packages/System.Numerics.V Used by: SqlDatabase -Target frameworks: net452, net5.0, netcoreapp2.1, netcoreapp3.1, netstandard2.0 +Target frameworks: net452, net5.0, net6.0, netcoreapp3.1, netstandard2.0 License: [MIT](../../../../licenses/mit) 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 382a9b54..c19f5aa6 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 @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" ] } 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 a600eb56..00934de0 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, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 License: [MIT](../../../../licenses/mit) diff --git a/Build/third-party-libraries/packages/nuget.org/system.objectmodel/4.3.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.objectmodel/4.3.0/index.json index 6a62a378..330a9b8c 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.objectmodel/4.3.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.objectmodel/4.3.0/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" ], "Dependencies": [ diff --git a/Build/third-party-libraries/packages/nuget.org/system.objectmodel/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.objectmodel/4.3.0/readme.md index 648ee567..253335d3 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.objectmodel/4.3.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.objectmodel/4.3.0/readme.md @@ -3,7 +3,7 @@ System.ObjectModel [4.3.0](https://www.nuget.org/packages/System.ObjectModel/4.3 Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 License: [ms-net-library](../../../../licenses/ms-net-library) 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 382a9b54..c19f5aa6 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 @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" ] } 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 52c056a2..b1ccbbe1 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, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 License: [MIT](../../../../licenses/mit) diff --git a/Build/third-party-libraries/packages/nuget.org/system.reflection.typeextensions/4.3.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.reflection.typeextensions/4.3.0/index.json index cb053ee5..e143dd9c 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.reflection.typeextensions/4.3.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.reflection.typeextensions/4.3.0/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" ] } diff --git a/Build/third-party-libraries/packages/nuget.org/system.reflection.typeextensions/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.reflection.typeextensions/4.3.0/readme.md index 9152b598..834d4b4e 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.reflection.typeextensions/4.3.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.reflection.typeextensions/4.3.0/readme.md @@ -3,7 +3,7 @@ System.Reflection.TypeExtensions [4.3.0](https://www.nuget.org/packages/System.R Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 License: [ms-net-library](../../../../licenses/ms-net-library) diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.2/index.json b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.2/index.json index f3706740..a72233ce 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.2/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.2/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net452", "netstandard2.0" ] diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.2/readme.md b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.2/readme.md index 0719ceea..af0ecc95 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.2/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.2/readme.md @@ -3,7 +3,7 @@ System.Runtime.CompilerServices.Unsafe [4.5.2](https://www.nuget.org/packages/Sy Used by: SqlDatabase -Target frameworks: net452, net5.0, netcoreapp2.1, netcoreapp3.1, netstandard2.0 +Target frameworks: net452, net5.0, net6.0, netcoreapp3.1, netstandard2.0 License: [MIT](../../../../licenses/mit) 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 382a9b54..c19f5aa6 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 @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" ] } 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 116cee73..87b0d3de 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, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 License: [MIT](../../../../licenses/mit) diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.interopservices.runtimeinformation/4.3.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.runtime.interopservices.runtimeinformation/4.3.0/index.json index 6a62a378..e143dd9c 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.runtime.interopservices.runtimeinformation/4.3.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.interopservices.runtimeinformation/4.3.0/index.json @@ -8,16 +8,10 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" - ], - "Dependencies": [ - { - "Name": "System.Threading", - "Version": "4.3.0" - } ] } ], diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.interopservices.runtimeinformation/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.runtime.interopservices.runtimeinformation/4.3.0/readme.md index 0a128c5f..eee36a54 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.runtime.interopservices.runtimeinformation/4.3.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.interopservices.runtimeinformation/4.3.0/readme.md @@ -3,7 +3,7 @@ System.Runtime.InteropServices.RuntimeInformation [4.3.0](https://www.nuget.org/ Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 License: [ms-net-library](../../../../licenses/ms-net-library) @@ -25,11 +25,8 @@ Remarks no remarks -Dependencies 1 +Dependencies 0 ----------- -|Name|Version| -|----------|:----| -|[System.Threading](../../../../packages/nuget.org/system.threading/4.3.0)|4.3.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/index.json b/Build/third-party-libraries/packages/nuget.org/system.runtime.loader/4.3.0/index.json index df83ee35..03a47284 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 @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net452", "netstandard2.0" ] 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 643745ae..70fbd084 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 @@ -3,7 +3,7 @@ System.Runtime.Loader [4.3.0](https://www.nuget.org/packages/System.Runtime.Load Used by: SqlDatabase -Target frameworks: net452, net5.0, netcoreapp2.1, netcoreapp3.1, netstandard2.0 +Target frameworks: net452, net5.0, net6.0, netcoreapp3.1, netstandard2.0 License: [ms-net-library](../../../../licenses/ms-net-library) diff --git a/Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.5.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.5.0/index.json index adff3590..9efa3cf7 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.5.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.5.0/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net452", "netstandard2.0" ], diff --git a/Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.5.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.5.0/readme.md index 440e43f8..26fcf26a 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.5.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.5.0/readme.md @@ -3,7 +3,7 @@ System.Security.AccessControl [4.5.0](https://www.nuget.org/packages/System.Secu Used by: SqlDatabase -Target frameworks: net452, net5.0, netcoreapp2.1, netcoreapp3.1, netstandard2.0 +Target frameworks: net452, net5.0, net6.0, netcoreapp3.1, netstandard2.0 License: [MIT](../../../../licenses/mit) diff --git a/Build/third-party-libraries/packages/nuget.org/system.security.cryptography.protecteddata/4.5.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.security.cryptography.protecteddata/4.5.0/index.json index f3706740..a72233ce 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.security.cryptography.protecteddata/4.5.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.security.cryptography.protecteddata/4.5.0/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net452", "netstandard2.0" ] diff --git a/Build/third-party-libraries/packages/nuget.org/system.security.cryptography.protecteddata/4.5.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.security.cryptography.protecteddata/4.5.0/readme.md index 62d6de63..bb0ce692 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.security.cryptography.protecteddata/4.5.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.security.cryptography.protecteddata/4.5.0/readme.md @@ -3,7 +3,7 @@ System.Security.Cryptography.ProtectedData [4.5.0](https://www.nuget.org/package Used by: SqlDatabase -Target frameworks: net452, net5.0, netcoreapp2.1, netcoreapp3.1, netstandard2.0 +Target frameworks: net452, net5.0, net6.0, netcoreapp3.1, netstandard2.0 License: [MIT](../../../../licenses/mit) diff --git a/Build/third-party-libraries/packages/nuget.org/system.security.permissions/4.5.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.security.permissions/4.5.0/index.json index 0794360f..87eeb6c2 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.security.permissions/4.5.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.security.permissions/4.5.0/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net452", "netstandard2.0" ], diff --git a/Build/third-party-libraries/packages/nuget.org/system.security.permissions/4.5.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.security.permissions/4.5.0/readme.md index db949f63..cd35829f 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.security.permissions/4.5.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.security.permissions/4.5.0/readme.md @@ -3,7 +3,7 @@ System.Security.Permissions [4.5.0](https://www.nuget.org/packages/System.Securi Used by: SqlDatabase -Target frameworks: net452, net5.0, netcoreapp2.1, netcoreapp3.1, netstandard2.0 +Target frameworks: net452, net5.0, net6.0, netcoreapp3.1, netstandard2.0 License: [MIT](../../../../licenses/mit) diff --git a/Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.5.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.5.0/index.json index f3706740..a72233ce 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.5.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.5.0/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net452", "netstandard2.0" ] diff --git a/Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.5.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.5.0/readme.md index 49fb2f0b..79c80ff4 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.5.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.5.0/readme.md @@ -3,7 +3,7 @@ System.Security.Principal.Windows [4.5.0](https://www.nuget.org/packages/System. Used by: SqlDatabase -Target frameworks: net452, net5.0, netcoreapp2.1, netcoreapp3.1, netstandard2.0 +Target frameworks: net452, net5.0, net6.0, netcoreapp3.1, netstandard2.0 License: [MIT](../../../../licenses/mit) diff --git a/Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.5.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.5.0/index.json index c82a1ea9..62f000b1 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.5.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.5.0/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net452", "netstandard2.0" ], diff --git a/Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.5.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.5.0/readme.md index d120054f..54380aba 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.5.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.5.0/readme.md @@ -3,7 +3,7 @@ System.Text.Encoding.CodePages [4.5.0](https://www.nuget.org/packages/System.Tex Used by: SqlDatabase -Target frameworks: net452, net5.0, netcoreapp2.1, netcoreapp3.1, netstandard2.0 +Target frameworks: net452, net5.0, net6.0, netcoreapp3.1, netstandard2.0 License: [MIT](../../../../licenses/mit) diff --git a/Build/third-party-libraries/packages/nuget.org/system.text.regularexpressions/4.3.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.text.regularexpressions/4.3.0/index.json index cb053ee5..e143dd9c 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.text.regularexpressions/4.3.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.text.regularexpressions/4.3.0/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" ] } diff --git a/Build/third-party-libraries/packages/nuget.org/system.text.regularexpressions/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.text.regularexpressions/4.3.0/readme.md index 3aefca8b..43891bfe 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.text.regularexpressions/4.3.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.text.regularexpressions/4.3.0/readme.md @@ -3,7 +3,7 @@ System.Text.RegularExpressions [4.3.0](https://www.nuget.org/packages/System.Tex Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 License: [ms-net-library](../../../../licenses/ms-net-library) diff --git a/Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.2/index.json b/Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.2/index.json index c82a1ea9..62f000b1 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.2/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.2/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net452", "netstandard2.0" ], diff --git a/Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.2/readme.md b/Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.2/readme.md index cbbe5480..58732516 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.2/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.2/readme.md @@ -3,7 +3,7 @@ System.Threading.Tasks.Extensions [4.5.2](https://www.nuget.org/packages/System. Used by: SqlDatabase -Target frameworks: net452, net5.0, netcoreapp2.1, netcoreapp3.1, netstandard2.0 +Target frameworks: net452, net5.0, net6.0, netcoreapp3.1, netstandard2.0 License: [MIT](../../../../licenses/mit) 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 96a2ee4f..0a588a92 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 @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" ], "Dependencies": [ 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 69e07ea3..83dddd45 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 internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 License: [MIT](../../../../licenses/mit) diff --git a/Build/third-party-libraries/packages/nuget.org/system.threading.thread/4.3.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.threading.thread/4.3.0/index.json deleted file mode 100644 index cb053ee5..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.threading.thread/4.3.0/index.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "License": { - "Code": "ms-net-library", - "Status": "AutomaticallyApproved" - }, - "UsedBy": [ - { - "Name": "SqlDatabase", - "InternalOnly": true, - "TargetFrameworks": [ - "netcoreapp2.1", - "netcoreapp3.1", - "net5.0", - "net472" - ] - } - ], - "Licenses": [ - { - "Subject": "package", - "Code": "ms-net-library", - "HRef": "http://go.microsoft.com/fwlink/?LinkId=329770", - "Description": null - }, - { - "Subject": "project", - "Code": null, - "HRef": "https://dot.net/", - "Description": "License should be verified on https://dot.net/" - } - ] -} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.threading.thread/4.3.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.threading.thread/4.3.0/package.nuspec deleted file mode 100644 index d133d26e..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.threading.thread/4.3.0/package.nuspec +++ /dev/null @@ -1,41 +0,0 @@ - - - - System.Threading.Thread - 4.3.0 - System.Threading.Thread - Microsoft - microsoft,dotnetframework - true - http://go.microsoft.com/fwlink/?LinkId=329770 - https://dot.net/ - http://go.microsoft.com/fwlink/?LinkID=288859 - Provides the System.Threading.Thread class, which allows developers to create and control a thread, set its priority, and get its state. - -Commonly Used Types: -System.Threading.Thread -System.Threading.ThreadStart -System.Threading.ParameterizedThreadStart - -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.threading.thread/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.threading.thread/4.3.0/readme.md deleted file mode 100644 index 480bd44a..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.threading.thread/4.3.0/readme.md +++ /dev/null @@ -1,33 +0,0 @@ -System.Threading.Thread [4.3.0](https://www.nuget.org/packages/System.Threading.Thread/4.3.0) --------------------- - -Used by: SqlDatabase internal - -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 - -License: [ms-net-library](../../../../licenses/ms-net-library) - -- package license: [ms-net-library](http://go.microsoft.com/fwlink/?LinkId=329770) -- project license: [Unknown](https://dot.net/) , License should be verified on https://dot.net/ - -Description ------------ -Provides the System.Threading.Thread class, which allows developers to create and control a thread, set its priority, and get its state. - -Commonly Used Types: -System.Threading.Thread -System.Threading.ThreadStart -System.Threading.ParameterizedThreadStart - -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.threading.thread/4.3.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.threading.thread/4.3.0/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.threading.thread/4.3.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.threading.thread/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.threading/4.3.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.threading/4.3.0/index.json index cb053ee5..e143dd9c 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.threading/4.3.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.threading/4.3.0/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" ] } diff --git a/Build/third-party-libraries/packages/nuget.org/system.threading/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.threading/4.3.0/readme.md index 969ae5bc..d8f2511f 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.threading/4.3.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.threading/4.3.0/readme.md @@ -3,7 +3,7 @@ System.Threading [4.3.0](https://www.nuget.org/packages/System.Threading/4.3.0) Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 License: [ms-net-library](../../../../licenses/ms-net-library) 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 f3706740..a72233ce 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 @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net452", "netstandard2.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 f5db75f6..63cfdcd4 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 -Target frameworks: net452, net5.0, netcoreapp2.1, netcoreapp3.1, netstandard2.0 +Target frameworks: net452, net5.0, net6.0, netcoreapp3.1, netstandard2.0 License: [MIT](../../../../licenses/mit) diff --git a/Build/third-party-libraries/packages/nuget.org/system.xml.readerwriter/4.3.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.xml.readerwriter/4.3.0/index.json index a279bbc4..f12e98c2 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.xml.readerwriter/4.3.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.xml.readerwriter/4.3.0/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" ], "Dependencies": [ diff --git a/Build/third-party-libraries/packages/nuget.org/system.xml.readerwriter/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.xml.readerwriter/4.3.0/readme.md index d4193a70..85fb4c8e 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.xml.readerwriter/4.3.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.xml.readerwriter/4.3.0/readme.md @@ -3,7 +3,7 @@ System.Xml.ReaderWriter [4.3.0](https://www.nuget.org/packages/System.Xml.Reader Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 License: [ms-net-library](../../../../licenses/ms-net-library) diff --git a/Build/third-party-libraries/packages/nuget.org/system.xml.xmldocument/4.3.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.xml.xmldocument/4.3.0/index.json index a722c5f1..7366d71d 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.xml.xmldocument/4.3.0/index.json +++ b/Build/third-party-libraries/packages/nuget.org/system.xml.xmldocument/4.3.0/index.json @@ -8,9 +8,9 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", + "net6.0", "net472" ], "Dependencies": [ diff --git a/Build/third-party-libraries/packages/nuget.org/system.xml.xmldocument/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.xml.xmldocument/4.3.0/readme.md index de85b563..eee2cef1 100644 --- a/Build/third-party-libraries/packages/nuget.org/system.xml.xmldocument/4.3.0/readme.md +++ b/Build/third-party-libraries/packages/nuget.org/system.xml.xmldocument/4.3.0/readme.md @@ -3,7 +3,7 @@ System.Xml.XmlDocument [4.3.0](https://www.nuget.org/packages/System.Xml.XmlDocu Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, net6.0, netcoreapp3.1 License: [ms-net-library](../../../../licenses/ms-net-library) diff --git a/Build/third-party-libraries/packages/nuget.org/system.xml.xpath.xmldocument/4.3.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.xml.xpath.xmldocument/4.3.0/index.json deleted file mode 100644 index d1c598c7..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.xml.xpath.xmldocument/4.3.0/index.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "License": { - "Code": "ms-net-library", - "Status": "AutomaticallyApproved" - }, - "UsedBy": [ - { - "Name": "SqlDatabase", - "InternalOnly": true, - "TargetFrameworks": [ - "netcoreapp2.1", - "netcoreapp3.1", - "net5.0", - "net472" - ], - "Dependencies": [ - { - "Name": "System.Threading", - "Version": "4.3.0" - }, - { - "Name": "System.Xml.ReaderWriter", - "Version": "4.3.0" - }, - { - "Name": "System.Xml.XPath", - "Version": "4.3.0" - }, - { - "Name": "System.Xml.XmlDocument", - "Version": "4.3.0" - } - ] - } - ], - "Licenses": [ - { - "Subject": "package", - "Code": "ms-net-library", - "HRef": "http://go.microsoft.com/fwlink/?LinkId=329770", - "Description": null - }, - { - "Subject": "project", - "Code": null, - "HRef": "https://dot.net/", - "Description": "License should be verified on https://dot.net/" - } - ] -} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.xml.xpath.xmldocument/4.3.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.xml.xpath.xmldocument/4.3.0/package.nuspec deleted file mode 100644 index 35c1ed81..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.xml.xpath.xmldocument/4.3.0/package.nuspec +++ /dev/null @@ -1,52 +0,0 @@ - - - - System.Xml.XPath.XmlDocument - 4.3.0 - System.Xml.XPath.XmlDocument - Microsoft - microsoft,dotnetframework - true - http://go.microsoft.com/fwlink/?LinkId=329770 - https://dot.net/ - http://go.microsoft.com/fwlink/?LinkID=288859 - Provides extension methods that add System.Xml.XPath support to the System.Xml.XmlDocument package. - -Commonly Used Types: -System.Xml.XPath.XmlDocumentExtensions - -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.xml.xpath.xmldocument/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.xml.xpath.xmldocument/4.3.0/readme.md deleted file mode 100644 index 85597cb7..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.xml.xpath.xmldocument/4.3.0/readme.md +++ /dev/null @@ -1,37 +0,0 @@ -System.Xml.XPath.XmlDocument [4.3.0](https://www.nuget.org/packages/System.Xml.XPath.XmlDocument/4.3.0) --------------------- - -Used by: SqlDatabase internal - -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 - -License: [ms-net-library](../../../../licenses/ms-net-library) - -- package license: [ms-net-library](http://go.microsoft.com/fwlink/?LinkId=329770) -- project license: [Unknown](https://dot.net/) , License should be verified on https://dot.net/ - -Description ------------ -Provides extension methods that add System.Xml.XPath support to the System.Xml.XmlDocument package. - -Commonly Used Types: -System.Xml.XPath.XmlDocumentExtensions - -When using NuGet 3.x this package requires at least version 3.4. - -Remarks ------------ -no remarks - - -Dependencies 4 ------------ - -|Name|Version| -|----------|:----| -|[System.Threading](../../../../packages/nuget.org/system.threading/4.3.0)|4.3.0| -|[System.Xml.ReaderWriter](../../../../packages/nuget.org/system.xml.readerwriter/4.3.0)|4.3.0| -|[System.Xml.XPath](../../../../packages/nuget.org/system.xml.xpath/4.3.0)|4.3.0| -|[System.Xml.XmlDocument](../../../../packages/nuget.org/system.xml.xmldocument/4.3.0)|4.3.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.xml.xpath.xmldocument/4.3.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.xml.xpath.xmldocument/4.3.0/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.xml.xpath.xmldocument/4.3.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.xml.xpath.xmldocument/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.xml.xpath/4.3.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.xml.xpath/4.3.0/index.json deleted file mode 100644 index a722c5f1..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.xml.xpath/4.3.0/index.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "License": { - "Code": "ms-net-library", - "Status": "AutomaticallyApproved" - }, - "UsedBy": [ - { - "Name": "SqlDatabase", - "InternalOnly": true, - "TargetFrameworks": [ - "netcoreapp2.1", - "netcoreapp3.1", - "net5.0", - "net472" - ], - "Dependencies": [ - { - "Name": "System.Threading", - "Version": "4.3.0" - }, - { - "Name": "System.Xml.ReaderWriter", - "Version": "4.3.0" - } - ] - } - ], - "Licenses": [ - { - "Subject": "package", - "Code": "ms-net-library", - "HRef": "http://go.microsoft.com/fwlink/?LinkId=329770", - "Description": null - }, - { - "Subject": "project", - "Code": null, - "HRef": "https://dot.net/", - "Description": "License should be verified on https://dot.net/" - } - ] -} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.xml.xpath/4.3.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.xml.xpath/4.3.0/package.nuspec deleted file mode 100644 index 9a802d39..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.xml.xpath/4.3.0/package.nuspec +++ /dev/null @@ -1,56 +0,0 @@ - - - - System.Xml.XPath - 4.3.0 - System.Xml.XPath - Microsoft - microsoft,dotnetframework - true - http://go.microsoft.com/fwlink/?LinkId=329770 - https://dot.net/ - http://go.microsoft.com/fwlink/?LinkID=288859 - Provides the classes that define a cursor model for navigating and editing Extensible Markup Language (XML) information items as instances of the XQuery 1.0 and XPath 2.0 Data Model. - -Commonly Used Types: -System.Xml.XPath.XPathNavigator -System.Xml.XPath.IXPathNavigable -System.Xml.XPath.XPathNodeType -System.Xml.XPath.XPathNodeIterator -System.Xml.XPath.XPathExpression -System.Xml.XPath.XPathResultType -System.Xml.XPath.XPathException -System.Xml.XPath.XPathDocument -System.Xml.XPath.XPathItem -System.Xml.XPath.XPathNamespaceScope - -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.xml.xpath/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.xml.xpath/4.3.0/readme.md deleted file mode 100644 index 4793f028..00000000 --- a/Build/third-party-libraries/packages/nuget.org/system.xml.xpath/4.3.0/readme.md +++ /dev/null @@ -1,44 +0,0 @@ -System.Xml.XPath [4.3.0](https://www.nuget.org/packages/System.Xml.XPath/4.3.0) --------------------- - -Used by: SqlDatabase internal - -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 - -License: [ms-net-library](../../../../licenses/ms-net-library) - -- package license: [ms-net-library](http://go.microsoft.com/fwlink/?LinkId=329770) -- project license: [Unknown](https://dot.net/) , License should be verified on https://dot.net/ - -Description ------------ -Provides the classes that define a cursor model for navigating and editing Extensible Markup Language (XML) information items as instances of the XQuery 1.0 and XPath 2.0 Data Model. - -Commonly Used Types: -System.Xml.XPath.XPathNavigator -System.Xml.XPath.IXPathNavigable -System.Xml.XPath.XPathNodeType -System.Xml.XPath.XPathNodeIterator -System.Xml.XPath.XPathExpression -System.Xml.XPath.XPathResultType -System.Xml.XPath.XPathException -System.Xml.XPath.XPathDocument -System.Xml.XPath.XPathItem -System.Xml.XPath.XPathNamespaceScope - -When using NuGet 3.x this package requires at least version 3.4. - -Remarks ------------ -no remarks - - -Dependencies 2 ------------ - -|Name|Version| -|----------|:----| -|[System.Threading](../../../../packages/nuget.org/system.threading/4.3.0)|4.3.0| -|[System.Xml.ReaderWriter](../../../../packages/nuget.org/system.xml.readerwriter/4.3.0)|4.3.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.xml.xpath/4.3.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.xml.xpath/4.3.0/remarks.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Build/third-party-libraries/packages/nuget.org/system.xml.xpath/4.3.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.xml.xpath/4.3.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 988c45c8..ecf5a807 100644 --- a/Build/third-party-libraries/readme.md +++ b/Build/third-party-libraries/readme.md @@ -6,49 +6,45 @@ Licenses |[Apache-2.0](licenses/apache-2.0)|no|no|3| |[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|39| -|[ms-net-library](licenses/ms-net-library)|no|no|22| +|[MIT](licenses/mit)|no|no|37| +|[ms-net-library](licenses/ms-net-library)|no|no|17| |[PostgreSQL](licenses/postgresql)|no|no|1| -Packages 67 +Packages 60 -------- |Name|Version|Source|License|Used by| |----------|:----|:----|:----|:----| |[Castle.Core](packages/nuget.org/castle.core/4.4.0)|4.4.0|[nuget.org](https://www.nuget.org/packages/Castle.Core/4.4.0)|[Apache-2.0](licenses/apache-2.0)|SqlDatabase internal| -|[Dapper.StrongName](packages/nuget.org/dapper.strongname/2.0.78)|2.0.78|[nuget.org](https://www.nuget.org/packages/Dapper.StrongName/2.0.78)|[Apache-2.0](licenses/apache-2.0)|SqlDatabase internal| +|[Dapper.StrongName](packages/nuget.org/dapper.strongname/2.0.123)|2.0.123|[nuget.org](https://www.nuget.org/packages/Dapper.StrongName/2.0.123)|[Apache-2.0](licenses/apache-2.0)|SqlDatabase internal| |[DiffEngine](packages/nuget.org/diffengine/6.4.9)|6.4.9|[nuget.org](https://www.nuget.org/packages/DiffEngine/6.4.9)|[MIT](licenses/mit)|SqlDatabase internal| |[EmptyFiles](packages/nuget.org/emptyfiles/2.3.3)|2.3.3|[nuget.org](https://www.nuget.org/packages/EmptyFiles/2.3.3)|[MIT](licenses/mit)|SqlDatabase internal| -|[Microsoft.CodeCoverage](packages/nuget.org/microsoft.codecoverage/16.9.4)|16.9.4|[nuget.org](https://www.nuget.org/packages/Microsoft.CodeCoverage/16.9.4)|[MIT](licenses/mit)|SqlDatabase internal| -|[Microsoft.DotNet.InternalAbstractions](packages/nuget.org/microsoft.dotnet.internalabstractions/1.0.0)|1.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.DotNet.InternalAbstractions/1.0.0)|[MIT](licenses/mit)|SqlDatabase internal| -|[Microsoft.NET.Test.Sdk](packages/nuget.org/microsoft.net.test.sdk/16.9.4)|16.9.4|[nuget.org](https://www.nuget.org/packages/Microsoft.NET.Test.Sdk/16.9.4)|[MIT](licenses/mit)|SqlDatabase internal| -|[Microsoft.NETCore.App](packages/nuget.org/microsoft.netcore.app/2.1.0)|2.1.0|[nuget.org](https://www.nuget.org/packages/Microsoft.NETCore.App/2.1.0)|[MIT](licenses/mit)|SqlDatabase| -|[Microsoft.TestPlatform.ObjectModel](packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4)|16.9.4|[nuget.org](https://www.nuget.org/packages/Microsoft.TestPlatform.ObjectModel/16.9.4)|[MIT](licenses/mit)|SqlDatabase internal| -|[Microsoft.TestPlatform.TestHost](packages/nuget.org/microsoft.testplatform.testhost/16.9.4)|16.9.4|[nuget.org](https://www.nuget.org/packages/Microsoft.TestPlatform.TestHost/16.9.4)|[MIT](licenses/mit)|SqlDatabase internal| +|[Microsoft.CodeCoverage](packages/nuget.org/microsoft.codecoverage/17.0.0)|17.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.CodeCoverage/17.0.0)|[MIT](licenses/mit)|SqlDatabase internal| +|[Microsoft.NET.Test.Sdk](packages/nuget.org/microsoft.net.test.sdk/17.0.0)|17.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.NET.Test.Sdk/17.0.0)|[MIT](licenses/mit)|SqlDatabase internal| +|[Microsoft.TestPlatform.ObjectModel](packages/nuget.org/microsoft.testplatform.objectmodel/17.0.0)|17.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.TestPlatform.ObjectModel/17.0.0)|[MIT](licenses/mit)|SqlDatabase internal| +|[Microsoft.TestPlatform.TestHost](packages/nuget.org/microsoft.testplatform.testhost/17.0.0)|17.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.TestPlatform.TestHost/17.0.0)|[MIT](licenses/mit)|SqlDatabase internal| |[Microsoft.Win32.Registry](packages/nuget.org/microsoft.win32.registry/4.5.0)|4.5.0|[nuget.org](https://www.nuget.org/packages/Microsoft.Win32.Registry/4.5.0)|[MIT](licenses/mit)|SqlDatabase| -|[Microsoft.WSMan.Runtime](packages/nuget.org/microsoft.wsman.runtime/6.2.7)|6.2.7|[nuget.org](https://www.nuget.org/packages/Microsoft.WSMan.Runtime/6.2.7)|[MIT](licenses/mit)|SqlDatabase| |[Microsoft.WSMan.Runtime](packages/nuget.org/microsoft.wsman.runtime/7.0.5)|7.0.5|[nuget.org](https://www.nuget.org/packages/Microsoft.WSMan.Runtime/7.0.5)|[MIT](licenses/mit)|SqlDatabase| |[Microsoft.WSMan.Runtime](packages/nuget.org/microsoft.wsman.runtime/7.1.2)|7.1.2|[nuget.org](https://www.nuget.org/packages/Microsoft.WSMan.Runtime/7.1.2)|[MIT](licenses/mit)|SqlDatabase| +|[Microsoft.WSMan.Runtime](packages/nuget.org/microsoft.wsman.runtime/7.2.0)|7.2.0|[nuget.org](https://www.nuget.org/packages/Microsoft.WSMan.Runtime/7.2.0)|[MIT](licenses/mit)|SqlDatabase| |[Moq](packages/nuget.org/moq/4.16.1)|4.16.1|[nuget.org](https://www.nuget.org/packages/Moq/4.16.1)|[BSD-3-Clause](licenses/bsd-3-clause)|SqlDatabase internal| |[MySqlConnector](packages/nuget.org/mysqlconnector/1.3.10)|1.3.10|[nuget.org](https://www.nuget.org/packages/MySqlConnector/1.3.10)|[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| |[Npgsql](packages/nuget.org/npgsql/4.0.11)|4.0.11|[nuget.org](https://www.nuget.org/packages/Npgsql/4.0.11)|[PostgreSQL](licenses/postgresql)|SqlDatabase| |[NuGet.Frameworks](packages/nuget.org/nuget.frameworks/5.0.0)|5.0.0|[nuget.org](https://www.nuget.org/packages/NuGet.Frameworks/5.0.0%2b42a8779499c1d1ed2488c2e6b9e2ee6ff6107766)|[Apache-2.0](licenses/apache-2.0)|SqlDatabase internal| -|[NUnit](packages/nuget.org/nunit/3.13.1)|3.13.1|[nuget.org](https://www.nuget.org/packages/NUnit/3.13.1)|[MIT](licenses/mit)|SqlDatabase internal| -|[NUnit3TestAdapter](packages/nuget.org/nunit3testadapter/3.17.0)|3.17.0|[nuget.org](https://www.nuget.org/packages/NUnit3TestAdapter/3.17.0)|[MIT](licenses/mit)|SqlDatabase internal| +|[NUnit](packages/nuget.org/nunit/3.13.2)|3.13.2|[nuget.org](https://www.nuget.org/packages/NUnit/3.13.2)|[MIT](licenses/mit)|SqlDatabase internal| +|[NUnit3TestAdapter](packages/nuget.org/nunit3testadapter/4.1.0)|4.1.0|[nuget.org](https://www.nuget.org/packages/NUnit3TestAdapter/4.1.0)|[MIT](licenses/mit)|SqlDatabase internal| |[PowerShellStandard.Library](packages/nuget.org/powershellstandard.library/5.1.0)|5.1.0|[nuget.org](https://www.nuget.org/packages/PowerShellStandard.Library/5.1.0)|[MIT](licenses/mit)|SqlDatabase| |[Shouldly](packages/nuget.org/shouldly/4.0.3)|4.0.3|[nuget.org](https://www.nuget.org/packages/Shouldly/4.0.3)|[BSD-2-Clause](licenses/bsd-2-clause)|SqlDatabase internal| -|[StyleCop.Analyzers.Unstable](packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333)|1.2.0.333|[nuget.org](https://www.nuget.org/packages/StyleCop.Analyzers.Unstable/1.2.0.333)|[MIT](licenses/mit)|SqlDatabase internal| -|[System.AppContext](packages/nuget.org/system.appcontext/4.1.0)|4.1.0|[nuget.org](https://www.nuget.org/packages/System.AppContext/4.1.0)|[ms-net-library](licenses/ms-net-library)|SqlDatabase internal| +|[StyleCop.Analyzers.Unstable](packages/nuget.org/stylecop.analyzers.unstable/1.2.0.376)|1.2.0.376|[nuget.org](https://www.nuget.org/packages/StyleCop.Analyzers.Unstable/1.2.0.376)|[MIT](licenses/mit)|SqlDatabase internal| |[System.Buffers](packages/nuget.org/system.buffers/4.4.0)|4.4.0|[nuget.org](https://www.nuget.org/packages/System.Buffers/4.4.0)|[MIT](licenses/mit)|SqlDatabase| |[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 internal| |[System.Collections.NonGeneric](packages/nuget.org/system.collections.nongeneric/4.3.0)|4.3.0|[nuget.org](https://www.nuget.org/packages/System.Collections.NonGeneric/4.3.0)|[ms-net-library](licenses/ms-net-library)|SqlDatabase internal| |[System.Collections.Specialized](packages/nuget.org/system.collections.specialized/4.3.0)|4.3.0|[nuget.org](https://www.nuget.org/packages/System.Collections.Specialized/4.3.0)|[ms-net-library](licenses/ms-net-library)|SqlDatabase internal| |[System.ComponentModel](packages/nuget.org/system.componentmodel/4.3.0)|4.3.0|[nuget.org](https://www.nuget.org/packages/System.ComponentModel/4.3.0)|[ms-net-library](licenses/ms-net-library)|SqlDatabase internal| -|[System.ComponentModel.EventBasedAsync](packages/nuget.org/system.componentmodel.eventbasedasync/4.3.0)|4.3.0|[nuget.org](https://www.nuget.org/packages/System.ComponentModel.EventBasedAsync/4.3.0)|[ms-net-library](licenses/ms-net-library)|SqlDatabase internal| |[System.ComponentModel.Primitives](packages/nuget.org/system.componentmodel.primitives/4.3.0)|4.3.0|[nuget.org](https://www.nuget.org/packages/System.ComponentModel.Primitives/4.3.0)|[ms-net-library](licenses/ms-net-library)|SqlDatabase internal| |[System.ComponentModel.TypeConverter](packages/nuget.org/system.componentmodel.typeconverter/4.3.0)|4.3.0|[nuget.org](https://www.nuget.org/packages/System.ComponentModel.TypeConverter/4.3.0)|[ms-net-library](licenses/ms-net-library)|SqlDatabase internal| |[System.Configuration.ConfigurationManager](packages/nuget.org/system.configuration.configurationmanager/4.5.0)|4.5.0|[nuget.org](https://www.nuget.org/packages/System.Configuration.ConfigurationManager/4.5.0)|[MIT](licenses/mit)|SqlDatabase| @@ -78,11 +74,8 @@ Packages 67 |[System.Threading](packages/nuget.org/system.threading/4.3.0)|4.3.0|[nuget.org](https://www.nuget.org/packages/System.Threading/4.3.0)|[ms-net-library](licenses/ms-net-library)|SqlDatabase internal| |[System.Threading.Tasks.Extensions](packages/nuget.org/system.threading.tasks.extensions/4.5.2)|4.5.2|[nuget.org](https://www.nuget.org/packages/System.Threading.Tasks.Extensions/4.5.2)|[MIT](licenses/mit)|SqlDatabase| |[System.Threading.Tasks.Extensions](packages/nuget.org/system.threading.tasks.extensions/4.5.4)|4.5.4|[nuget.org](https://www.nuget.org/packages/System.Threading.Tasks.Extensions/4.5.4)|[MIT](licenses/mit)|SqlDatabase internal| -|[System.Threading.Thread](packages/nuget.org/system.threading.thread/4.3.0)|4.3.0|[nuget.org](https://www.nuget.org/packages/System.Threading.Thread/4.3.0)|[ms-net-library](licenses/ms-net-library)|SqlDatabase internal| |[System.ValueTuple](packages/nuget.org/system.valuetuple/4.5.0)|4.5.0|[nuget.org](https://www.nuget.org/packages/System.ValueTuple/4.5.0)|[MIT](licenses/mit)|SqlDatabase| |[System.Xml.ReaderWriter](packages/nuget.org/system.xml.readerwriter/4.3.0)|4.3.0|[nuget.org](https://www.nuget.org/packages/System.Xml.ReaderWriter/4.3.0)|[ms-net-library](licenses/ms-net-library)|SqlDatabase internal| |[System.Xml.XmlDocument](packages/nuget.org/system.xml.xmldocument/4.3.0)|4.3.0|[nuget.org](https://www.nuget.org/packages/System.Xml.XmlDocument/4.3.0)|[ms-net-library](licenses/ms-net-library)|SqlDatabase internal| -|[System.Xml.XPath](packages/nuget.org/system.xml.xpath/4.3.0)|4.3.0|[nuget.org](https://www.nuget.org/packages/System.Xml.XPath/4.3.0)|[ms-net-library](licenses/ms-net-library)|SqlDatabase internal| -|[System.Xml.XPath.XmlDocument](packages/nuget.org/system.xml.xpath.xmldocument/4.3.0)|4.3.0|[nuget.org](https://www.nuget.org/packages/System.Xml.XPath.XmlDocument/4.3.0)|[ms-net-library](licenses/ms-net-library)|SqlDatabase internal| *This page was generated by [ThirdPartyLibraries.GlobalTool](https://github.com/max-ieremenko/ThirdPartyLibraries).* \ No newline at end of file diff --git a/Examples/CSharpMirationStep/readme.md b/Examples/CSharpMirationStep/readme.md index 94cf1865..c8d38867 100644 --- a/Examples/CSharpMirationStep/readme.md +++ b/Examples/CSharpMirationStep/readme.md @@ -4,12 +4,12 @@ Any assembly script is - .exe or .dll for target framework is 4.5.2+ -- .dll for .net core 2.1/3.1 or .net5.0 +- .dll for .net core 3.1 or .net5.0/6.0 - has exactly one class with script implementation This project is an example of script implementation. The build output is 2.1_2.2.dll with target framework 4.5.2. -Due to the current dependencies, 2.1_2.2.dll works well on .net core 2.1/3.1 and .net 5.0. +Due to the current dependencies, 2.1_2.2.dll works well on .net core 3.1 and .net 5.0/6.0. ## Script source diff --git a/Examples/PowerShellScript/readme.md b/Examples/PowerShellScript/readme.md index 4feaf146..32e59b02 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 5.0 or .net core 2.1/3.1 +### .net SDK tool for .net 5.0/6.0 or .net core 3.1 [![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 Powershell Core design, -* SqlDatabase .net 5.0 can host Powershell Core versions below 7.2 +* SqlDatabase .net 5.0 can host Powershell Core versions below 7.3.1 +* .net 6.0 can host Powershell Core versions below 7.2 * .net core 3.1 below 7.1 -* .net core 2.1 below 7.0 PowerShell location can be passed via command line: diff --git a/README.md b/README.md index 952d8348..8acbe04e 100644 --- a/README.md +++ b/README.md @@ -12,19 +12,19 @@ Table of Contents ----------------- - -- [Installation](#installation) -- [Target database type](#database-selection) -- [Execute script(s) (file)](#execute-script) -- [Export data from a database to sql script (file)](#export-data) -- [Create a database](#create-database) -- [Migrate an existing database](#upgrade-database) -- [Scripts](#scripts) -- [Variables](#variables) -- [*.zip files](#zip-files) -- [VS Package manager console](#console) -- [Examples](#examples) -- [License](#license) + + - [Installation](#installation) + - [Target database type selection ](#target-database-type-selection-) + - [Execute script(s) ](#execute-scripts-) + - [Export data from a database to sql script (file) ](#export-data-from-a-database-to-sql-script-file-) + - [Create a database ](#create-a-database-) + - [Migrate an existing database ](#migrate-an-existing-database-) + - [Scripts](#scripts) + - [Variables](#variables) + - [*.zip files ](#zip-files-) + - [VS Package manager console ](#vs-package-manager-console-) + - [Examples](#examples) + - [License](#license) @@ -33,9 +33,9 @@ Installation PowerShell module is compatible with Powershell Core 6.1+ and PowerShell Desktop 5.1. -.net tool requires SDK .Net 5.0 or .Net Core 2.1/3.1. +.net tool requires SDK .Net 5.0/6.0 or .Net Core 3.1. -Command-line tool is compatible with .net runtime 5.0, .net Core runtime 2.1/3.1 and .net Framework 4.5.2+. +Command-line tool is compatible with .net runtime 5.0/6.0, .net Core runtime 3.1 and .net Framework 4.5.2+. ### PowerShell, from gallery diff --git a/Sources/Directory.Build.props b/Sources/Directory.Build.props index 4f7746fd..d9c99767 100644 --- a/Sources/Directory.Build.props +++ b/Sources/Directory.Build.props @@ -11,7 +11,7 @@ - + diff --git a/Sources/GlobalAssemblyInfo.cs b/Sources/GlobalAssemblyInfo.cs index e7d1fbdb..62f73a4c 100644 --- a/Sources/GlobalAssemblyInfo.cs +++ b/Sources/GlobalAssemblyInfo.cs @@ -4,10 +4,10 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("SqlDatabase")] -[assembly: AssemblyCopyright("Copyright © 2018-2021 Max Ieremenko")] +[assembly: AssemblyCopyright("Copyright � 2018-2022 Max Ieremenko")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] -[assembly: AssemblyVersion("4.0.0.0")] -[assembly: AssemblyFileVersion("4.0.0.0")] +[assembly: AssemblyVersion("4.1.0.0")] +[assembly: AssemblyFileVersion("4.1.0.0")] diff --git a/Sources/SqlDatabase.Package/choco/sqldatabase.nuspec b/Sources/SqlDatabase.Package/choco/sqldatabase.nuspec index 841c3cf2..0c2d01af 100644 --- a/Sources/SqlDatabase.Package/choco/sqldatabase.nuspec +++ b/Sources/SqlDatabase.Package/choco/sqldatabase.nuspec @@ -9,16 +9,16 @@ https://github.com/max-ieremenko/SqlDatabase/blob/master/LICENSE.md https://github.com/max-ieremenko/SqlDatabase https://github.com/max-ieremenko/SqlDatabase - https://github.com/max-ieremenko/SqlDatabase + https://github.com/max-ieremenko/SqlDatabase https://github.com/max-ieremenko/SqlDatabase/blob/master/README.md - https://github.com/max-ieremenko/SqlDatabase/issues + https://github.com/max-ieremenko/SqlDatabase/issues https://github.com/max-ieremenko/SqlDatabase/raw/master/icon-32.png false Command-line tool and PowerShell module for SQL Server. SqlDatabase is a tool for SQL Server, allows to execute scripts, database migrations and export data. Requires Powershell Core 6.1+ or PowerShell Desktop 5.1. https://github.com/max-ieremenko/SqlDatabase/releases - (C) 2018-2021 Max Ieremenko. + (C) 2018-2022 Max Ieremenko. sqlserver sqlcmd migration-tool c-sharp command-line-tool miration-step sql-script sql-database database-migrations export-data diff --git a/Sources/SqlDatabase.Package/nuget/package.nuspec b/Sources/SqlDatabase.Package/nuget/package.nuspec index c4abfe21..8ac4b68f 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 - (C) 2018-2021 Max Ieremenko. + (C) 2018-2022 Max Ieremenko. sqlserver postgresql mysql mysql-database sqlcmd migration-tool c-sharp command-line-tool miration-step sql-script sql-database database-migrations export-data diff --git a/Sources/SqlDatabase.PowerShell.Test/SqlDatabase.PowerShell.Test.csproj b/Sources/SqlDatabase.PowerShell.Test/SqlDatabase.PowerShell.Test.csproj index 68d25c6f..db1b7d5f 100644 --- a/Sources/SqlDatabase.PowerShell.Test/SqlDatabase.PowerShell.Test.csproj +++ b/Sources/SqlDatabase.PowerShell.Test/SqlDatabase.PowerShell.Test.csproj @@ -8,10 +8,10 @@ - + - - + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/Sources/SqlDatabase.PowerShell/SqlDatabase.psd1 b/Sources/SqlDatabase.PowerShell/SqlDatabase.psd1 index e69e0746..fc662ee3 100644 Binary files a/Sources/SqlDatabase.PowerShell/SqlDatabase.psd1 and b/Sources/SqlDatabase.PowerShell/SqlDatabase.psd1 differ diff --git a/Sources/SqlDatabase.Test/Scripts/PowerShellInternal/InstallationSeekerTest.cs b/Sources/SqlDatabase.Test/Scripts/PowerShellInternal/InstallationSeekerTest.cs index 755bf2a8..cc3f13b8 100644 --- a/Sources/SqlDatabase.Test/Scripts/PowerShellInternal/InstallationSeekerTest.cs +++ b/Sources/SqlDatabase.Test/Scripts/PowerShellInternal/InstallationSeekerTest.cs @@ -1,7 +1,6 @@ using System; using System.Collections.Generic; using System.IO; -using System.Reflection; using Moq; using NUnit.Framework; using Shouldly; diff --git a/Sources/SqlDatabase.Test/SqlDatabase.Test.csproj b/Sources/SqlDatabase.Test/SqlDatabase.Test.csproj index d2a55883..b377c177 100644 --- a/Sources/SqlDatabase.Test/SqlDatabase.Test.csproj +++ b/Sources/SqlDatabase.Test/SqlDatabase.Test.csproj @@ -1,19 +1,19 @@  - net472;netcoreapp2.1;netcoreapp3.1;net5.0 + net472;netcoreapp3.1;net5.0;net6.0 SqlDatabase NU1702 ..\..\bin\Tests - - + + - - + + diff --git a/Sources/SqlDatabase/Configuration/CreateCommandLine.cs b/Sources/SqlDatabase/Configuration/CreateCommandLine.cs index ca7f40e7..39ed2e8e 100644 --- a/Sources/SqlDatabase/Configuration/CreateCommandLine.cs +++ b/Sources/SqlDatabase/Configuration/CreateCommandLine.cs @@ -41,7 +41,7 @@ public override ICommand CreateCommand(ILogger logger) protected override bool ParseArg(Arg arg) { -#if NETCOREAPP || NET5_0 +#if NETCOREAPP || NET5_0_OR_GREATER if (Arg.UsePowerShell.Equals(arg.Key, System.StringComparison.OrdinalIgnoreCase)) { UsePowerShell = arg.Value; diff --git a/Sources/SqlDatabase/Configuration/ExecuteCommandLine.cs b/Sources/SqlDatabase/Configuration/ExecuteCommandLine.cs index 2013cc82..c56bae2f 100644 --- a/Sources/SqlDatabase/Configuration/ExecuteCommandLine.cs +++ b/Sources/SqlDatabase/Configuration/ExecuteCommandLine.cs @@ -56,7 +56,7 @@ protected override bool ParseArg(Arg arg) return true; } -#if NETCOREAPP || NET5_0 +#if NETCOREAPP || NET5_0_OR_GREATER if (Arg.UsePowerShell.Equals(arg.Key, StringComparison.OrdinalIgnoreCase)) { UsePowerShell = arg.Value; diff --git a/Sources/SqlDatabase/Configuration/UpgradeCommandLine.cs b/Sources/SqlDatabase/Configuration/UpgradeCommandLine.cs index ec9e95d4..3ad85b4a 100644 --- a/Sources/SqlDatabase/Configuration/UpgradeCommandLine.cs +++ b/Sources/SqlDatabase/Configuration/UpgradeCommandLine.cs @@ -63,7 +63,7 @@ protected override bool ParseArg(Arg arg) return true; } -#if NETCOREAPP || NET5_0 +#if NETCOREAPP || NET5_0_OR_GREATER if (Arg.UsePowerShell.Equals(arg.Key, StringComparison.OrdinalIgnoreCase)) { UsePowerShell = arg.Value; diff --git a/Sources/SqlDatabase/Scripts/PowerShellInternal/InstallationSeeker.cs b/Sources/SqlDatabase/Scripts/PowerShellInternal/InstallationSeeker.cs index df482115..f0f25193 100644 --- a/Sources/SqlDatabase/Scripts/PowerShellInternal/InstallationSeeker.cs +++ b/Sources/SqlDatabase/Scripts/PowerShellInternal/InstallationSeeker.cs @@ -130,12 +130,12 @@ private static string GetDefaultInstallationRoot() private static bool IsCompatibleVersion(Version version) { -#if NET5_0 +#if NET6_0 + return version < new Version("7.3.1"); +#elif NET5_0 return version < new Version("7.2"); #elif NETCOREAPP3_1_OR_GREATER return version < new Version("7.1"); -#elif NETCOREAPP2_1_OR_GREATER - return version < new Version("7.0"); #else return false; #endif diff --git a/Sources/SqlDatabase/Scripts/PowerShellInternal/PowerShellFactory.hosted.cs b/Sources/SqlDatabase/Scripts/PowerShellInternal/PowerShellFactory.hosted.cs index 627543f3..4f79bae0 100644 --- a/Sources/SqlDatabase/Scripts/PowerShellInternal/PowerShellFactory.hosted.cs +++ b/Sources/SqlDatabase/Scripts/PowerShellInternal/PowerShellFactory.hosted.cs @@ -1,4 +1,4 @@ -#if NETCOREAPP || NET5_0 +#if NETCOREAPP || NET5_0_OR_GREATER using System; using System.IO; using System.Management.Automation; diff --git a/Sources/SqlDatabase/SqlDatabase.csproj b/Sources/SqlDatabase/SqlDatabase.csproj index 0870ce90..1354249a 100644 --- a/Sources/SqlDatabase/SqlDatabase.csproj +++ b/Sources/SqlDatabase/SqlDatabase.csproj @@ -1,11 +1,8 @@  - - net452;netcoreapp2.1;netcoreapp3.1;net5.0;netstandard2.0 - - - - netcoreapp2.1;netcoreapp3.1;net5.0 + + net452;netcoreapp3.1;net5.0;net6.0;netstandard2.0 + netcoreapp3.1;net5.0;net6.0 @@ -27,9 +24,9 @@ https://github.com/max-ieremenko/SqlDatabase/raw/master/icon-32.png icon-32.png MIT - (C) 2018-2021 Max Ieremenko. + (C) 2018-2022 Max Ieremenko. git - sqlserver postgresql mysql mysql-database sqlcmd migration-tool c-sharp command-line-tool miration-step sql-script sql-database database-migrations export-data + sqlserver database postgresql mysql mysql-database sqlcmd migration-tool c-sharp command-line-tool miration-step sql-script sql-database database-migrations export-data @@ -66,10 +63,6 @@ - - - - @@ -78,6 +71,10 @@ + + + +