From a542436d20cc22e3880f3e839f604a68a44e1bde Mon Sep 17 00:00:00 2001 From: Max Ieremenko Date: Mon, 20 Dec 2021 18:38:22 +0100 Subject: [PATCH 01/15] update version to 4.1.0 --- Sources/GlobalAssemblyInfo.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/GlobalAssemblyInfo.cs b/Sources/GlobalAssemblyInfo.cs index e7d1fbdb..097c5fc2 100644 --- a/Sources/GlobalAssemblyInfo.cs +++ b/Sources/GlobalAssemblyInfo.cs @@ -9,5 +9,5 @@ [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")] From 8f76460d6f85c486dd9ba5e79477e40eed5176c8 Mon Sep 17 00:00:00 2001 From: Max Ieremenko Date: Tue, 21 Dec 2021 18:44:42 +0100 Subject: [PATCH 02/15] update InvokeBuild 5.7.2 => 5.8.7 --- Build/build.ps1 | 2 +- Build/create-images.ps1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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.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 From 7af99af03c3735beb9717f49bff1b1ce6d9316a8 Mon Sep 17 00:00:00 2001 From: Max Ieremenko Date: Tue, 21 Dec 2021 18:46:50 +0100 Subject: [PATCH 03/15] remove netcore2.1 --- Sources/SqlDatabase.Test/SqlDatabase.Test.csproj | 2 +- .../PowerShellInternal/InstallationSeeker.cs | 2 -- Sources/SqlDatabase/SqlDatabase.csproj | 13 +++---------- 3 files changed, 4 insertions(+), 13 deletions(-) diff --git a/Sources/SqlDatabase.Test/SqlDatabase.Test.csproj b/Sources/SqlDatabase.Test/SqlDatabase.Test.csproj index d2a55883..c1f46490 100644 --- a/Sources/SqlDatabase.Test/SqlDatabase.Test.csproj +++ b/Sources/SqlDatabase.Test/SqlDatabase.Test.csproj @@ -1,7 +1,7 @@  - net472;netcoreapp2.1;netcoreapp3.1;net5.0 + net472;netcoreapp3.1;net5.0 SqlDatabase NU1702 ..\..\bin\Tests diff --git a/Sources/SqlDatabase/Scripts/PowerShellInternal/InstallationSeeker.cs b/Sources/SqlDatabase/Scripts/PowerShellInternal/InstallationSeeker.cs index df482115..52115b72 100644 --- a/Sources/SqlDatabase/Scripts/PowerShellInternal/InstallationSeeker.cs +++ b/Sources/SqlDatabase/Scripts/PowerShellInternal/InstallationSeeker.cs @@ -134,8 +134,6 @@ private static bool IsCompatibleVersion(Version version) 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/SqlDatabase.csproj b/Sources/SqlDatabase/SqlDatabase.csproj index 0870ce90..2a87839e 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;netstandard2.0 + netcoreapp3.1;net5.0 @@ -66,10 +63,6 @@ - - - - From dd772d5b56939d082c56758bfe504572b557e69b Mon Sep 17 00:00:00 2001 From: Max Ieremenko Date: Tue, 21 Dec 2021 18:47:31 +0100 Subject: [PATCH 04/15] remove netcore2.1 - adapt build --- Build/build-tasks.ps1 | 14 ++------- Build/create-images-tasks.ps1 | 35 ++++++----------------- Build/image-dotnet-runtime-2.1.dockerfile | 6 ---- Build/image-dotnet-sdk-2.1.dockerfile | 6 ---- Examples/CSharpMirationStep/readme.md | 4 +-- Examples/PowerShellScript/readme.md | 3 +- 6 files changed, 13 insertions(+), 55 deletions(-) delete mode 100644 Build/image-dotnet-runtime-2.1.dockerfile delete mode 100644 Build/image-dotnet-sdk-2.1.dockerfile diff --git a/Build/build-tasks.ps1 b/Build/build-tasks.ps1 index 60ccf218..be367cbe 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 @@ -129,7 +123,6 @@ task PackManualDownload PackGlobalTool, PackPoweShellModule, { 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" } ) @@ -204,8 +197,7 @@ task PsCoreTest { task SdkToolTest { $images = $( - "sqldatabase/dotnet_pwsh:2.1-sdk" - , "sqldatabase/dotnet_pwsh:3.1-sdk" + "sqldatabase/dotnet_pwsh:3.1-sdk" , "sqldatabase/dotnet_pwsh:5.0-sdk") $builds = @() @@ -220,8 +212,7 @@ task SdkToolTest { 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" } ) @@ -238,7 +229,6 @@ task NetRuntimeLinuxTest { task NetRuntimeWindowsTest { $testCases = $( "net452" - , "netcore21" , "netcore31" , "net50" ) diff --git a/Build/create-images-tasks.ps1 b/Build/create-images-tasks.ps1 index 92f11fb0..e7484ccb 100644 --- a/Build/create-images-tasks.ps1 +++ b/Build/create-images-tasks.ps1 @@ -1,12 +1,11 @@ -task Default BuildDotnetSdk21 ` - , BuildDotnetRuntime21 ` - , BuildDotnetSdk31 ` - , BuildDotnetRuntime31 ` - , BuildDotnetSdk50 ` - , BuildDotnetRuntime50 ` - , BuildMsSqlDatabase ` - , BuildPgSqlDatabase ` - , BuildMySqlDatabase +task Default ` + BuildDotnetSdk31 ` + , BuildDotnetRuntime31 ` + , BuildDotnetSdk50 ` + , BuildDotnetRuntime50 ` + , BuildMsSqlDatabase ` + , BuildPgSqlDatabase ` + , BuildMySqlDatabase task BuildMsSqlDatabase { $context = Join-Path $PSScriptRoot "..\Sources\SqlDatabase.Test\Docker" @@ -38,24 +37,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 ` 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-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/Examples/CSharpMirationStep/readme.md b/Examples/CSharpMirationStep/readme.md index 94cf1865..085dfbfa 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 - 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. ## Script source diff --git a/Examples/PowerShellScript/readme.md b/Examples/PowerShellScript/readme.md index 4feaf146..3e4c0532 100644 --- a/Examples/PowerShellScript/readme.md +++ b/Examples/PowerShellScript/readme.md @@ -67,7 +67,7 @@ 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 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/) @@ -75,7 +75,6 @@ Pre-installed Powershell Core is required, will be used by SqlDatabase as extern * SqlDatabase .net 5.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: From 7dd88fc12859ead9123560e370a0af7e320d5e9d Mon Sep 17 00:00:00 2001 From: Max Ieremenko Date: Tue, 21 Dec 2021 18:48:52 +0100 Subject: [PATCH 05/15] remove netcore2.1 - update third party notices --- .../nuget.org/castle.core/4.4.0/index.json | 1 - .../nuget.org/castle.core/4.4.0/readme.md | 2 +- .../dapper.strongname/2.0.78/index.json | 1 - .../dapper.strongname/2.0.78/readme.md | 2 +- .../nuget.org/diffengine/6.4.9/index.json | 1 - .../nuget.org/diffengine/6.4.9/readme.md | 2 +- .../nuget.org/emptyfiles/2.3.3/index.json | 1 - .../nuget.org/emptyfiles/2.3.3/readme.md | 2 +- .../microsoft.codecoverage/16.9.4/index.json | 1 - .../microsoft.codecoverage/16.9.4/readme.md | 2 +- .../1.0.0/index.json | 1 - .../1.0.0/readme.md | 2 +- .../microsoft.net.test.sdk/16.9.4/index.json | 1 - .../microsoft.net.test.sdk/16.9.4/readme.md | 2 +- .../microsoft.netcore.app/2.1.0/index.json | 34 ----- .../2.1.0/package-LICENSE.txt | 22 ---- .../2.1.0/package.nuspec | 121 ------------------ .../microsoft.netcore.app/2.1.0/readme.md | 28 ---- .../microsoft.netcore.app/2.1.0/remarks.md | 0 .../2.1.0/third-party-notices.txt | 0 .../16.9.4/index.json | 1 - .../16.9.4/readme.md | 2 +- .../16.9.4/index.json | 1 - .../16.9.4/readme.md | 2 +- .../microsoft.win32.registry/4.5.0/index.json | 1 - .../microsoft.win32.registry/4.5.0/readme.md | 2 +- .../microsoft.wsman.runtime/6.2.7/index.json | 33 ----- .../6.2.7/package-LICENSE.txt | 21 --- .../6.2.7/package.nuspec | 23 ---- .../6.2.7/project-LICENSE.txt | 21 --- .../microsoft.wsman.runtime/6.2.7/readme.md | 26 ---- .../microsoft.wsman.runtime/6.2.7/remarks.md | 0 .../6.2.7/third-party-notices.txt | 0 .../microsoft.wsman.runtime/7.0.5/index.json | 1 - .../microsoft.wsman.runtime/7.0.5/readme.md | 2 +- .../microsoft.wsman.runtime/7.1.2/index.json | 1 - .../microsoft.wsman.runtime/7.1.2/readme.md | 2 +- .../packages/nuget.org/moq/4.16.1/index.json | 1 - .../packages/nuget.org/moq/4.16.1/readme.md | 2 +- .../mysqlconnector/1.3.10/index.json | 1 - .../nuget.org/mysqlconnector/1.3.10/readme.md | 2 +- .../netstandard.library/2.0.3/index.json | 1 - .../netstandard.library/2.0.3/readme.md | 2 +- .../newtonsoft.json/13.0.1/index.json | 1 - .../newtonsoft.json/13.0.1/readme.md | 2 +- .../nuget.org/npgsql/4.0.11/index.json | 1 - .../nuget.org/npgsql/4.0.11/readme.md | 2 +- .../nuget.frameworks/5.0.0/index.json | 1 - .../nuget.frameworks/5.0.0/readme.md | 2 +- .../nuget.org/nunit/3.13.1/index.json | 1 - .../packages/nuget.org/nunit/3.13.1/readme.md | 2 +- .../nunit3testadapter/3.17.0/index.json | 1 - .../nunit3testadapter/3.17.0/readme.md | 2 +- .../5.1.0/index.json | 1 - .../5.1.0/readme.md | 2 +- .../nuget.org/shouldly/4.0.3/index.json | 1 - .../nuget.org/shouldly/4.0.3/readme.md | 2 +- .../1.2.0.333/index.json | 1 - .../1.2.0.333/readme.md | 2 +- .../system.appcontext/4.1.0/index.json | 1 - .../system.appcontext/4.1.0/readme.md | 2 +- .../nuget.org/system.buffers/4.4.0/index.json | 1 - .../nuget.org/system.buffers/4.4.0/readme.md | 2 +- .../nuget.org/system.buffers/4.5.1/index.json | 1 - .../nuget.org/system.buffers/4.5.1/readme.md | 2 +- .../4.3.0/index.json | 1 - .../4.3.0/readme.md | 2 +- .../4.3.0/index.json | 1 - .../4.3.0/readme.md | 2 +- .../4.3.0/index.json | 1 - .../4.3.0/readme.md | 2 +- .../4.3.0/index.json | 1 - .../4.3.0/readme.md | 2 +- .../4.3.0/index.json | 1 - .../4.3.0/readme.md | 2 +- .../system.componentmodel/4.3.0/index.json | 1 - .../system.componentmodel/4.3.0/readme.md | 2 +- .../4.5.0/index.json | 1 - .../4.5.0/readme.md | 2 +- .../system.data.sqlclient/4.5.1/index.json | 1 - .../system.data.sqlclient/4.5.1/readme.md | 2 +- .../4.5.0/index.json | 1 - .../4.5.0/readme.md | 2 +- .../system.dynamic.runtime/4.3.0/index.json | 1 - .../system.dynamic.runtime/4.3.0/readme.md | 2 +- .../4.3.0/index.json | 1 - .../4.3.0/readme.md | 2 +- .../system.linq.expressions/4.3.0/index.json | 1 - .../system.linq.expressions/4.3.0/readme.md | 2 +- .../nuget.org/system.linq/4.3.0/index.json | 1 - .../nuget.org/system.linq/4.3.0/readme.md | 2 +- .../nuget.org/system.memory/4.5.3/index.json | 1 - .../nuget.org/system.memory/4.5.3/readme.md | 2 +- .../nuget.org/system.memory/4.5.4/index.json | 1 - .../nuget.org/system.memory/4.5.4/readme.md | 2 +- .../system.numerics.vectors/4.4.0/index.json | 1 - .../system.numerics.vectors/4.4.0/readme.md | 2 +- .../system.numerics.vectors/4.5.0/index.json | 1 - .../system.numerics.vectors/4.5.0/readme.md | 2 +- .../system.objectmodel/4.3.0/index.json | 1 - .../system.objectmodel/4.3.0/readme.md | 2 +- .../1.6.0/index.json | 1 - .../1.6.0/readme.md | 2 +- .../4.3.0/index.json | 1 - .../4.3.0/readme.md | 2 +- .../4.5.2/index.json | 1 - .../4.5.2/readme.md | 2 +- .../4.5.3/index.json | 1 - .../4.5.3/readme.md | 2 +- .../4.3.0/index.json | 1 - .../4.3.0/readme.md | 2 +- .../system.runtime.loader/4.3.0/index.json | 1 - .../system.runtime.loader/4.3.0/readme.md | 2 +- .../4.5.0/index.json | 1 - .../4.5.0/readme.md | 2 +- .../4.5.0/index.json | 1 - .../4.5.0/readme.md | 2 +- .../4.5.0/index.json | 1 - .../4.5.0/readme.md | 2 +- .../4.5.0/index.json | 1 - .../4.5.0/readme.md | 2 +- .../4.5.0/index.json | 1 - .../4.5.0/readme.md | 2 +- .../4.3.0/index.json | 1 - .../4.3.0/readme.md | 2 +- .../4.5.2/index.json | 1 - .../4.5.2/readme.md | 2 +- .../4.5.4/index.json | 1 - .../4.5.4/readme.md | 2 +- .../system.threading.thread/4.3.0/index.json | 1 - .../system.threading.thread/4.3.0/readme.md | 2 +- .../system.threading/4.3.0/index.json | 1 - .../system.threading/4.3.0/readme.md | 2 +- .../system.valuetuple/4.5.0/index.json | 1 - .../system.valuetuple/4.5.0/readme.md | 2 +- .../system.xml.readerwriter/4.3.0/index.json | 1 - .../system.xml.readerwriter/4.3.0/readme.md | 2 +- .../system.xml.xmldocument/4.3.0/index.json | 1 - .../system.xml.xmldocument/4.3.0/readme.md | 2 +- .../4.3.0/index.json | 1 - .../4.3.0/readme.md | 2 +- .../system.xml.xpath/4.3.0/index.json | 1 - .../system.xml.xpath/4.3.0/readme.md | 2 +- Build/third-party-libraries/readme.md | 6 +- 144 files changed, 67 insertions(+), 463 deletions(-) delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.1.0/index.json delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.1.0/package-LICENSE.txt delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.1.0/package.nuspec delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.1.0/readme.md delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.1.0/remarks.md delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.1.0/third-party-notices.txt delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/index.json delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/package-LICENSE.txt delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/package.nuspec delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/project-LICENSE.txt delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/readme.md delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/remarks.md delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/third-party-notices.txt 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..7c69b266 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net472" 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..2b028b9b 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, 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.78/index.json index c792d8d5..ac2291e4 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.78/index.json @@ -8,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net472" 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 index 821559d7..0aba9169 100644 --- 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 @@ -3,7 +3,7 @@ Dapper.StrongName [2.0.78](https://www.nuget.org/packages/Dapper.StrongName/2.0. Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, netcoreapp3.1 License: [Apache-2.0](../../../../licenses/apache-2.0) 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..8489c370 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net472" 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..77a1628b 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, 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..95bc9ca8 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.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..236a6cf6 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, 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/16.9.4/index.json index 9d07bd3b..abf287ab 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/16.9.4/index.json @@ -8,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net472" 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/16.9.4/readme.md index 837f64ba..bc2fc57c 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/16.9.4/readme.md @@ -3,7 +3,7 @@ Microsoft.CodeCoverage [16.9.4](https://www.nuget.org/packages/Microsoft.CodeCov Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, netcoreapp3.1 License: [MIT](../../../../licenses/mit) 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 index ed452b63..3251b463 100644 --- 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 @@ -8,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net472" 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 index d3339eb2..7a55d0df 100644 --- 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 @@ -3,7 +3,7 @@ Microsoft.DotNet.InternalAbstractions [1.0.0](https://www.nuget.org/packages/Mic Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, netcoreapp3.1 License: [MIT](../../../../licenses/mit) 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/16.9.4/index.json index 89119799..4d71c907 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/16.9.4/index.json @@ -8,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net472" 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/16.9.4/readme.md index 19fb0a89..62360993 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/16.9.4/readme.md @@ -3,7 +3,7 @@ Microsoft.NET.Test.Sdk [16.9.4](https://www.nuget.org/packages/Microsoft.NET.Tes Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, netcoreapp3.1 License: [MIT](../../../../licenses/mit) 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.netcore.app/2.1.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.1.0/remarks.md deleted file mode 100644 index e69de29b..00000000 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.netcore.app/2.1.0/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 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/16.9.4/index.json index 08a6c5d0..9b35a1b4 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/16.9.4/index.json @@ -8,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net472" 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/16.9.4/readme.md index 57289300..b41f100d 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/16.9.4/readme.md @@ -3,7 +3,7 @@ Microsoft.TestPlatform.ObjectModel [16.9.4](https://www.nuget.org/packages/Micro Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, netcoreapp3.1 License: [MIT](../../../../licenses/mit) 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/16.9.4/index.json index 0b25eb36..fe24c5dd 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/16.9.4/index.json @@ -8,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net472" 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/16.9.4/readme.md index ab321b4d..8db17a9d 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/16.9.4/readme.md @@ -3,7 +3,7 @@ Microsoft.TestPlatform.TestHost [16.9.4](https://www.nuget.org/packages/Microsof Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, netcoreapp3.1 License: [MIT](../../../../licenses/mit) 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..659a1f86 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net452", 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..2a082974 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, 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/6.2.7/index.json deleted file mode 100644 index 1c007617..00000000 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/index.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "License": { - "Code": "MIT", - "Status": "AutomaticallyApproved" - }, - "UsedBy": [ - { - "Name": "SqlDatabase", - "InternalOnly": false, - "TargetFrameworks": [ - "netcoreapp2.1", - "netcoreapp3.1", - "net5.0", - "net452", - "netstandard2.0" - ] - } - ], - "Licenses": [ - { - "Subject": "package", - "Code": "MIT", - "HRef": "https://github.com/PowerShell/PowerShell/blob/master/LICENSE.txt", - "Description": null - }, - { - "Subject": "project", - "Code": "MIT", - "HRef": "https://github.com/PowerShell/PowerShell", - "Description": null - } - ] -} \ No newline at end of file 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/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/package.nuspec deleted file mode 100644 index d3658265..00000000 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/package.nuspec +++ /dev/null @@ -1,23 +0,0 @@ - - - - Microsoft.WSMan.Runtime - 6.2.7 - Microsoft - Microsoft,PowerShell - true - https://github.com/PowerShell/PowerShell/blob/master/LICENSE.txt - 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 - © Microsoft Corporation. All rights reserved. - en-US - PowerShell - - - - - - - - \ No newline at end of file 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/6.2.7/project-LICENSE.txt deleted file mode 100644 index b2f52a2b..00000000 --- a/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/project-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/6.2.7/remarks.md b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/remarks.md deleted file mode 100644 index e69de29b..00000000 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/microsoft.wsman.runtime/6.2.7/third-party-notices.txt deleted file mode 100644 index e69de29b..00000000 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..38ea067f 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net452", 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..d920fe38 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, 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..7a6b402a 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net452", 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..3471bdc9 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, netcoreapp3.1, netstandard2.0 License: [MIT](../../../../licenses/mit) 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..76f205af 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net472" 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..1c83981b 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, 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..1ddb9f64 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net452", 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..5f3756da 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, 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..de5005cf 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net452", 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..67e1703f 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, 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..402a6d41 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.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..e1751376 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, 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..f6746582 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net452", 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..617faa7c 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, 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..1e2e67c3 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.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..ac43159a 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, 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.1/index.json index 5f283814..b5cec17d 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.1/index.json @@ -8,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net472" 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.1/readme.md index f1b96aaa..3e95ad53 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.1/readme.md @@ -3,7 +3,7 @@ NUnit [3.13.1](https://www.nuget.org/packages/NUnit/3.13.1) Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, netcoreapp3.1 License: [MIT](../../../../licenses/mit) 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 index ba9f90cc..3421982d 100644 --- 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 @@ -8,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net472" 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 index 0a6712e2..4f61d60d 100644 --- 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 @@ -3,7 +3,7 @@ NUnit3TestAdapter [3.17.0](https://www.nuget.org/packages/NUnit3TestAdapter/3.17 Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, netcoreapp3.1 License: [MIT](../../../../licenses/mit) 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..eb2bf739 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net452", 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..686d57f9 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, 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..ab3502d7 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net472" 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..cc8fc389 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, 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/index.json b/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/index.json index 9911c827..796f7999 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.333/index.json @@ -8,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net452", 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.333/readme.md index 3957a22e..ccc0ef15 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.333/readme.md @@ -3,7 +3,7 @@ StyleCop.Analyzers.Unstable [1.2.0.333](https://www.nuget.org/packages/StyleCop. Used by: SqlDatabase internal -Target frameworks: net452, net472, net5.0, netcoreapp2.1, netcoreapp3.1, netstandard2.0 +Target frameworks: net452, net472, net5.0, netcoreapp3.1, netstandard2.0 License: [MIT](../../../../licenses/mit) 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 index cb053ee5..c37cc6a7 100644 --- 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 @@ -8,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net472" 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 index a998b65b..9819c841 100644 --- 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 @@ -3,7 +3,7 @@ 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 +Target frameworks: net472, net5.0, netcoreapp3.1 License: [ms-net-library](../../../../licenses/ms-net-library) 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..4f27c585 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net452", 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..b35b054a 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, 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..abdcb3d9 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.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..8fc41ba9 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, 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..2582b1db 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net472" 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..90357dbc 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, 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..85bc1050 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net472" 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..f28b42a7 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, 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 index 6a62a378..2582b1db 100644 --- 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 @@ -8,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net472" 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 index 11a373f2..af4327fd 100644 --- 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 @@ -3,7 +3,7 @@ System.ComponentModel.EventBasedAsync [4.3.0](https://www.nuget.org/packages/Sys Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, netcoreapp3.1 License: [ms-net-library](../../../../licenses/ms-net-library) 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..f89d71bf 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net472" 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..d93a3490 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, 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..d62882b6 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net472" 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..0a5a7637 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, 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..c37cc6a7 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.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..09a44458 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, 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..38be9e10 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net452", 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..d4b26b0e 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, 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..a2489f8d 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net452", 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..822326e4 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, 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..4f27c585 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net452", 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..642ebfd6 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, 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..aa212e55 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net472" 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..9866c3d6 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, 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..c37cc6a7 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.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..4dbd8830 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, 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..8a1f744e 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net472" 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..b9b60b54 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, 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..c37cc6a7 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.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..7796dec6 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, 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..55aadaaa 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net452", 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..d31b66dd 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, 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..21a5b0a8 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net472" 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..68b4e88b 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, 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..4f27c585 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net452", 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..6f0f1193 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, 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..abdcb3d9 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.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..8664af18 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, 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..2582b1db 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net472" 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..aed7b19f 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, 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..abdcb3d9 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.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..87a4dce0 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, 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..c37cc6a7 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.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..ddeac47d 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, 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..4f27c585 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net452", 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..534c5125 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, 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..abdcb3d9 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.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..339f6c4e 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, 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..2582b1db 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net472" 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..91d4e24d 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, netcoreapp3.1 License: [ms-net-library](../../../../licenses/ms-net-library) 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..e1eed87a 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net452", 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..7cd482f2 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, 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..4c88a01b 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net452", 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..f56305e0 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, 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..4f27c585 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net452", 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..ff97edb2 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, 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..7800e49d 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net452", 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..a22f4ea3 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, 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..4f27c585 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net452", 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..b29aaafa 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, 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..b110bb69 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net452", 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..3585e5c3 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, 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..c37cc6a7 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.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..4f7b08d3 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, 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..b110bb69 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net452", 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..e9a6e6dd 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, 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..2d234549 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net472" 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..79541d6d 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, 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 index cb053ee5..c37cc6a7 100644 --- 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 @@ -8,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net472" 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 index 480bd44a..49cbbe42 100644 --- 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 @@ -3,7 +3,7 @@ System.Threading.Thread [4.3.0](https://www.nuget.org/packages/System.Threading. Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, netcoreapp3.1 License: [ms-net-library](../../../../licenses/ms-net-library) 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..c37cc6a7 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.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..38db8e34 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, 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..4f27c585 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": false, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net452", 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..0504e069 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, 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..a7bec3c1 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net472" 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..21f96020 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, 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..8239dc0d 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,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net472" 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..8faa71ed 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, 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 index d1c598c7..a90f8b55 100644 --- 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 @@ -8,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net472" 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 index 85597cb7..43d807e3 100644 --- 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 @@ -3,7 +3,7 @@ System.Xml.XPath.XmlDocument [4.3.0](https://www.nuget.org/packages/System.Xml.X Used by: SqlDatabase internal -Target frameworks: net472, net5.0, netcoreapp2.1, netcoreapp3.1 +Target frameworks: net472, net5.0, netcoreapp3.1 License: [ms-net-library](../../../../licenses/ms-net-library) 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 index a722c5f1..8239dc0d 100644 --- 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 @@ -8,7 +8,6 @@ "Name": "SqlDatabase", "InternalOnly": true, "TargetFrameworks": [ - "netcoreapp2.1", "netcoreapp3.1", "net5.0", "net472" 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 index 4793f028..c1c8e70a 100644 --- 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 @@ -3,7 +3,7 @@ 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 +Target frameworks: net472, net5.0, netcoreapp3.1 License: [ms-net-library](../../../../licenses/ms-net-library) diff --git a/Build/third-party-libraries/readme.md b/Build/third-party-libraries/readme.md index 988c45c8..79643fb8 100644 --- a/Build/third-party-libraries/readme.md +++ b/Build/third-party-libraries/readme.md @@ -6,13 +6,13 @@ 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| +|[MIT](licenses/mit)|no|no|37| |[ms-net-library](licenses/ms-net-library)|no|no|22| |[PostgreSQL](licenses/postgresql)|no|no|1| -Packages 67 +Packages 65 -------- |Name|Version|Source|License|Used by| @@ -24,11 +24,9 @@ Packages 67 |[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.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| |[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| From 5ccf39190a2bc21cfdaa161fb99277541a444111 Mon Sep 17 00:00:00 2001 From: Max Ieremenko Date: Tue, 21 Dec 2021 18:49:09 +0100 Subject: [PATCH 06/15] remove netcore2.1 - update docs --- Build/README.md | 6 +++--- README.md | 30 +++++++++++++++--------------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/Build/README.md b/Build/README.md index 50bb1494..37478322 100644 --- a/Build/README.md +++ b/Build/README.md @@ -3,11 +3,11 @@ 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.0.8](https://github.com/PowerShell/PowerShell/releases/tag/v7.0.8) for .net core 3.1 tests +- PowerShell [7.1.5](https://github.com/PowerShell/PowerShell/releases/tag/v7.1.5) for .net 5.0 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/README.md b/README.md index 952d8348..ce310709 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 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, .net Core runtime 3.1 and .net Framework 4.5.2+. ### PowerShell, from gallery From 0236f7b37947089b648a9dcacf1785274fb164c1 Mon Sep 17 00:00:00 2001 From: Max Ieremenko Date: Wed, 22 Dec 2021 19:01:22 +0100 Subject: [PATCH 07/15] .net 6.0 --- .../Scripts/PowerShellInternal/InstallationSeekerTest.cs | 1 - Sources/SqlDatabase.Test/SqlDatabase.Test.csproj | 2 +- Sources/SqlDatabase/Configuration/CreateCommandLine.cs | 2 +- Sources/SqlDatabase/Configuration/ExecuteCommandLine.cs | 2 +- Sources/SqlDatabase/Configuration/UpgradeCommandLine.cs | 2 +- .../Scripts/PowerShellInternal/InstallationSeeker.cs | 4 +++- .../PowerShellInternal/PowerShellFactory.hosted.cs | 2 +- Sources/SqlDatabase/SqlDatabase.csproj | 8 ++++++-- 8 files changed, 14 insertions(+), 9 deletions(-) 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 c1f46490..41848fda 100644 --- a/Sources/SqlDatabase.Test/SqlDatabase.Test.csproj +++ b/Sources/SqlDatabase.Test/SqlDatabase.Test.csproj @@ -1,7 +1,7 @@  - net472;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 52115b72..f0f25193 100644 --- a/Sources/SqlDatabase/Scripts/PowerShellInternal/InstallationSeeker.cs +++ b/Sources/SqlDatabase/Scripts/PowerShellInternal/InstallationSeeker.cs @@ -130,7 +130,9 @@ 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"); 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 2a87839e..8e89804f 100644 --- a/Sources/SqlDatabase/SqlDatabase.csproj +++ b/Sources/SqlDatabase/SqlDatabase.csproj @@ -1,8 +1,8 @@  - net452;netcoreapp3.1;net5.0;netstandard2.0 - netcoreapp3.1;net5.0 + net452;netcoreapp3.1;net5.0;net6.0;netstandard2.0 + netcoreapp3.1;net5.0;net6.0 @@ -71,6 +71,10 @@ + + + + From f1c95caf36600fc9c28cb462ba5e10bb86337853 Mon Sep 17 00:00:00 2001 From: Max Ieremenko Date: Wed, 22 Dec 2021 19:02:24 +0100 Subject: [PATCH 08/15] .net 6.0 adapt build --- Build/README.md | 3 ++- Build/build-tasks.ps1 | 10 +++++++++- Build/create-images-tasks.ps1 | 20 ++++++++++++++++++++ Build/image-dotnet-runtime-6.0.dockerfile | 8 ++++++++ Build/image-dotnet-sdk-6.0.dockerfile | 8 ++++++++ 5 files changed, 47 insertions(+), 2 deletions(-) create mode 100644 Build/image-dotnet-runtime-6.0.dockerfile create mode 100644 Build/image-dotnet-sdk-6.0.dockerfile diff --git a/Build/README.md b/Build/README.md index 37478322..cf17b991 100644 --- a/Build/README.md +++ b/Build/README.md @@ -3,8 +3,9 @@ build.ps1 is designed to run on windows - PowerShell Desktop 5.1 -- PowerShell [7.0.8](https://github.com/PowerShell/PowerShell/releases/tag/v7.0.8) for .net core 3.1 tests +- 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 diff --git a/Build/build-tasks.ps1 b/Build/build-tasks.ps1 index be367cbe..5ca58737 100644 --- a/Build/build-tasks.ps1 +++ b/Build/build-tasks.ps1 @@ -118,6 +118,10 @@ 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 { @@ -125,6 +129,7 @@ task UnitTest { @{ File = "build-tasks.unit-test.ps1"; Task = "Test"; settings = $settings; targetFramework = "net472" } @{ 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 @@ -198,7 +203,8 @@ task PsCoreTest { task SdkToolTest { $images = $( "sqldatabase/dotnet_pwsh:3.1-sdk" - , "sqldatabase/dotnet_pwsh:5.0-sdk") + , "sqldatabase/dotnet_pwsh:5.0-sdk" + , "sqldatabase/dotnet_pwsh:6.0-sdk") $builds = @() foreach ($image in $images) { @@ -214,6 +220,7 @@ task NetRuntimeLinuxTest { $testCases = $( @{ 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 = @() @@ -231,6 +238,7 @@ task NetRuntimeWindowsTest { "net452" , "netcore31" , "net50" + , "net60" ) $builds = @() diff --git a/Build/create-images-tasks.ps1 b/Build/create-images-tasks.ps1 index e7484ccb..2a9f1c8f 100644 --- a/Build/create-images-tasks.ps1 +++ b/Build/create-images-tasks.ps1 @@ -3,6 +3,8 @@ task Default ` , BuildDotnetRuntime31 ` , BuildDotnetSdk50 ` , BuildDotnetRuntime50 ` + , BuildDotnetSdk60 ` + , BuildDotnetRuntime60 ` , BuildMsSqlDatabase ` , BuildPgSqlDatabase ` , BuildMySqlDatabase @@ -72,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/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-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 From 7ff75cffd48dc52ac60c1d6b824f03297b4b14e8 Mon Sep 17 00:00:00 2001 From: Max Ieremenko Date: Wed, 22 Dec 2021 19:03:08 +0100 Subject: [PATCH 09/15] .net 6.0 - update third party notices --- .../nuget.org/castle.core/4.4.0/index.json | 1 + .../nuget.org/castle.core/4.4.0/readme.md | 2 +- .../dapper.strongname/2.0.78/index.json | 1 + .../dapper.strongname/2.0.78/readme.md | 2 +- .../nuget.org/diffengine/6.4.9/index.json | 1 + .../nuget.org/diffengine/6.4.9/readme.md | 2 +- .../nuget.org/emptyfiles/2.3.3/index.json | 1 + .../nuget.org/emptyfiles/2.3.3/readme.md | 2 +- .../microsoft.codecoverage/16.9.4/index.json | 1 + .../microsoft.codecoverage/16.9.4/readme.md | 2 +- .../1.0.0/index.json | 1 + .../1.0.0/readme.md | 2 +- .../microsoft.net.test.sdk/16.9.4/index.json | 1 + .../microsoft.net.test.sdk/16.9.4/readme.md | 2 +- .../16.9.4/index.json | 1 + .../16.9.4/readme.md | 2 +- .../16.9.4/index.json | 1 + .../16.9.4/readme.md | 2 +- .../microsoft.win32.registry/4.5.0/index.json | 1 + .../microsoft.win32.registry/4.5.0/readme.md | 2 +- .../microsoft.wsman.runtime/7.0.5/index.json | 1 + .../microsoft.wsman.runtime/7.0.5/readme.md | 2 +- .../microsoft.wsman.runtime/7.1.2/index.json | 1 + .../microsoft.wsman.runtime/7.1.2/readme.md | 2 +- .../microsoft.wsman.runtime/7.2.0/index.json | 33 +++++++++++++++++++ .../7.2.0/package.nuspec | 24 ++++++++++++++ .../7.2.0/project-LICENSE.txt | 21 ++++++++++++ .../microsoft.wsman.runtime/7.2.0/readme.md | 26 +++++++++++++++ .../microsoft.wsman.runtime/7.2.0/remarks.md | 0 .../7.2.0/third-party-notices.txt | 0 .../packages/nuget.org/moq/4.16.1/index.json | 1 + .../packages/nuget.org/moq/4.16.1/readme.md | 2 +- .../mysqlconnector/1.3.10/index.json | 1 + .../nuget.org/mysqlconnector/1.3.10/readme.md | 2 +- .../netstandard.library/2.0.3/index.json | 1 + .../netstandard.library/2.0.3/readme.md | 2 +- .../newtonsoft.json/13.0.1/index.json | 1 + .../newtonsoft.json/13.0.1/readme.md | 2 +- .../nuget.org/npgsql/4.0.11/index.json | 1 + .../nuget.org/npgsql/4.0.11/readme.md | 2 +- .../nuget.frameworks/5.0.0/index.json | 1 + .../nuget.frameworks/5.0.0/readme.md | 2 +- .../nuget.org/nunit/3.13.1/index.json | 1 + .../packages/nuget.org/nunit/3.13.1/readme.md | 2 +- .../nunit3testadapter/3.17.0/index.json | 1 + .../nunit3testadapter/3.17.0/readme.md | 2 +- .../5.1.0/index.json | 1 + .../5.1.0/readme.md | 2 +- .../nuget.org/shouldly/4.0.3/index.json | 1 + .../nuget.org/shouldly/4.0.3/readme.md | 2 +- .../1.2.0.333/index.json | 1 + .../1.2.0.333/readme.md | 2 +- .../system.appcontext/4.1.0/index.json | 1 + .../system.appcontext/4.1.0/readme.md | 2 +- .../nuget.org/system.buffers/4.4.0/index.json | 1 + .../nuget.org/system.buffers/4.4.0/readme.md | 2 +- .../nuget.org/system.buffers/4.5.1/index.json | 1 + .../nuget.org/system.buffers/4.5.1/readme.md | 2 +- .../4.3.0/index.json | 1 + .../4.3.0/readme.md | 2 +- .../4.3.0/index.json | 1 + .../4.3.0/readme.md | 2 +- .../4.3.0/index.json | 1 + .../4.3.0/readme.md | 2 +- .../4.3.0/index.json | 1 + .../4.3.0/readme.md | 2 +- .../4.3.0/index.json | 1 + .../4.3.0/readme.md | 2 +- .../system.componentmodel/4.3.0/index.json | 1 + .../system.componentmodel/4.3.0/readme.md | 2 +- .../4.5.0/index.json | 1 + .../4.5.0/readme.md | 2 +- .../system.data.sqlclient/4.5.1/index.json | 1 + .../system.data.sqlclient/4.5.1/readme.md | 2 +- .../4.5.0/index.json | 1 + .../4.5.0/readme.md | 2 +- .../system.dynamic.runtime/4.3.0/index.json | 1 + .../system.dynamic.runtime/4.3.0/readme.md | 2 +- .../4.3.0/index.json | 1 + .../4.3.0/readme.md | 2 +- .../system.linq.expressions/4.3.0/index.json | 1 + .../system.linq.expressions/4.3.0/readme.md | 2 +- .../nuget.org/system.linq/4.3.0/index.json | 1 + .../nuget.org/system.linq/4.3.0/readme.md | 2 +- .../nuget.org/system.memory/4.5.3/index.json | 1 + .../nuget.org/system.memory/4.5.3/readme.md | 2 +- .../nuget.org/system.memory/4.5.4/index.json | 1 + .../nuget.org/system.memory/4.5.4/readme.md | 2 +- .../system.numerics.vectors/4.4.0/index.json | 1 + .../system.numerics.vectors/4.4.0/readme.md | 2 +- .../system.numerics.vectors/4.5.0/index.json | 1 + .../system.numerics.vectors/4.5.0/readme.md | 2 +- .../system.objectmodel/4.3.0/index.json | 1 + .../system.objectmodel/4.3.0/readme.md | 2 +- .../1.6.0/index.json | 1 + .../1.6.0/readme.md | 2 +- .../4.3.0/index.json | 1 + .../4.3.0/readme.md | 2 +- .../4.5.2/index.json | 1 + .../4.5.2/readme.md | 2 +- .../4.5.3/index.json | 1 + .../4.5.3/readme.md | 2 +- .../4.3.0/index.json | 1 + .../4.3.0/readme.md | 2 +- .../system.runtime.loader/4.3.0/index.json | 1 + .../system.runtime.loader/4.3.0/readme.md | 2 +- .../4.5.0/index.json | 1 + .../4.5.0/readme.md | 2 +- .../4.5.0/index.json | 1 + .../4.5.0/readme.md | 2 +- .../4.5.0/index.json | 1 + .../4.5.0/readme.md | 2 +- .../4.5.0/index.json | 1 + .../4.5.0/readme.md | 2 +- .../4.5.0/index.json | 1 + .../4.5.0/readme.md | 2 +- .../4.3.0/index.json | 1 + .../4.3.0/readme.md | 2 +- .../4.5.2/index.json | 1 + .../4.5.2/readme.md | 2 +- .../4.5.4/index.json | 1 + .../4.5.4/readme.md | 2 +- .../system.threading.thread/4.3.0/index.json | 1 + .../system.threading.thread/4.3.0/readme.md | 2 +- .../system.threading/4.3.0/index.json | 1 + .../system.threading/4.3.0/readme.md | 2 +- .../system.valuetuple/4.5.0/index.json | 1 + .../system.valuetuple/4.5.0/readme.md | 2 +- .../system.xml.readerwriter/4.3.0/index.json | 1 + .../system.xml.readerwriter/4.3.0/readme.md | 2 +- .../system.xml.xmldocument/4.3.0/index.json | 1 + .../system.xml.xmldocument/4.3.0/readme.md | 2 +- .../4.3.0/index.json | 1 + .../4.3.0/readme.md | 2 +- .../system.xml.xpath/4.3.0/index.json | 1 + .../system.xml.xpath/4.3.0/readme.md | 2 +- Build/third-party-libraries/readme.md | 5 +-- 137 files changed, 237 insertions(+), 67 deletions(-) create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.2.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.2.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.2.0/project-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.2.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.2.0/remarks.md create mode 100644 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/castle.core/4.4.0/index.json b/Build/third-party-libraries/packages/nuget.org/castle.core/4.4.0/index.json index 7c69b266..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 2b028b9b..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, 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.78/index.json index ac2291e4..22274c15 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.78/index.json @@ -10,6 +10,7 @@ "TargetFrameworks": [ "netcoreapp3.1", "net5.0", + "net6.0", "net472" ] } 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 index 0aba9169..45c63cff 100644 --- 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 @@ -3,7 +3,7 @@ Dapper.StrongName [2.0.78](https://www.nuget.org/packages/Dapper.StrongName/2.0. Used by: SqlDatabase internal -Target frameworks: net472, net5.0, 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/diffengine/6.4.9/index.json b/Build/third-party-libraries/packages/nuget.org/diffengine/6.4.9/index.json index 8489c370..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 77a1628b..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, 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 95bc9ca8..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 236a6cf6..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, 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/16.9.4/index.json index abf287ab..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/16.9.4/index.json @@ -10,6 +10,7 @@ "TargetFrameworks": [ "netcoreapp3.1", "net5.0", + "net6.0", "net472" ] } 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/16.9.4/readme.md index bc2fc57c..3d8c6e37 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/16.9.4/readme.md @@ -3,7 +3,7 @@ Microsoft.CodeCoverage [16.9.4](https://www.nuget.org/packages/Microsoft.CodeCov Used by: SqlDatabase internal -Target frameworks: net472, net5.0, 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.dotnet.internalabstractions/1.0.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.dotnet.internalabstractions/1.0.0/index.json index 3251b463..3dc5dcef 100644 --- 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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "netcoreapp3.1", "net5.0", + "net6.0", "net472" ], "Dependencies": [ 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 index 7a55d0df..9ade254b 100644 --- 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 @@ -3,7 +3,7 @@ Microsoft.DotNet.InternalAbstractions [1.0.0](https://www.nuget.org/packages/Mic Used by: SqlDatabase internal -Target frameworks: net472, net5.0, 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/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/index.json index 4d71c907..c7528027 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/16.9.4/index.json @@ -10,6 +10,7 @@ "TargetFrameworks": [ "netcoreapp3.1", "net5.0", + "net6.0", "net472" ], "Dependencies": [ 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/16.9.4/readme.md index 62360993..406e8aba 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/16.9.4/readme.md @@ -3,7 +3,7 @@ Microsoft.NET.Test.Sdk [16.9.4](https://www.nuget.org/packages/Microsoft.NET.Tes Used by: SqlDatabase internal -Target frameworks: net472, net5.0, 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.objectmodel/16.9.4/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/index.json index 9b35a1b4..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/16.9.4/index.json @@ -10,6 +10,7 @@ "TargetFrameworks": [ "netcoreapp3.1", "net5.0", + "net6.0", "net472" ], "Dependencies": [ 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/16.9.4/readme.md index b41f100d..a04c1da8 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/16.9.4/readme.md @@ -3,7 +3,7 @@ Microsoft.TestPlatform.ObjectModel [16.9.4](https://www.nuget.org/packages/Micro Used by: SqlDatabase internal -Target frameworks: net472, net5.0, 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/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/index.json index fe24c5dd..0f91d067 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/16.9.4/index.json @@ -10,6 +10,7 @@ "TargetFrameworks": [ "netcoreapp3.1", "net5.0", + "net6.0", "net472" ], "Dependencies": [ 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/16.9.4/readme.md index 8db17a9d..6aaea0c0 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/16.9.4/readme.md @@ -3,7 +3,7 @@ Microsoft.TestPlatform.TestHost [16.9.4](https://www.nuget.org/packages/Microsof Used by: SqlDatabase internal -Target frameworks: net472, net5.0, 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.win32.registry/4.5.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.5.0/index.json index 659a1f86..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 2a082974..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, 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.0.5/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.0.5/index.json index 38ea067f..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 d920fe38..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, 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 7a6b402a..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 3471bdc9..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, 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.2.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.2.0/index.json new file mode 100644 index 00000000..b5a131f0 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.2.0/index.json @@ -0,0 +1,33 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": false, + "TargetFrameworks": [ + "netcoreapp3.1", + "net5.0", + "net6.0", + "net452", + "netstandard2.0" + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://licenses.nuget.org/MIT", + "Description": null + }, + { + "Subject": "project", + "Code": "MIT", + "HRef": "https://github.com/PowerShell/PowerShell", + "Description": null + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.2.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.2.0/package.nuspec new file mode 100644 index 00000000..74d0a9f8 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.2.0/package.nuspec @@ -0,0 +1,24 @@ + + + + Microsoft.WSMan.Runtime + 7.2.0 + Microsoft + Microsoft,PowerShell + false + MIT + https://licenses.nuget.org/MIT + Powershell_black_64.png + https://github.com/PowerShell/PowerShell + Runtime for hosting PowerShell + © Microsoft Corporation. All rights reserved. + en-US + PowerShell + + + + + + + + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.2.0/project-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.2.0/project-LICENSE.txt new file mode 100644 index 00000000..b2f52a2b --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.2.0/project-LICENSE.txt @@ -0,0 +1,21 @@ +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/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.wsman.runtime/7.2.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.2.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.2.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.2.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 76f205af..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 1c83981b..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, 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 1ddb9f64..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 5f3756da..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, 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 de5005cf..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 67e1703f..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, 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 402a6d41..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 e1751376..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, 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 f6746582..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 617faa7c..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, 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 1e2e67c3..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 ac43159a..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, 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.1/index.json index b5cec17d..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.1/index.json @@ -10,6 +10,7 @@ "TargetFrameworks": [ "netcoreapp3.1", "net5.0", + "net6.0", "net472" ] } 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.1/readme.md index 3e95ad53..48f0ed9d 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.1/readme.md @@ -3,7 +3,7 @@ NUnit [3.13.1](https://www.nuget.org/packages/NUnit/3.13.1) Used by: SqlDatabase internal -Target frameworks: net472, net5.0, 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/nunit3testadapter/3.17.0/index.json b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/index.json index 3421982d..94029b25 100644 --- 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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "netcoreapp3.1", "net5.0", + "net6.0", "net472" ], "Dependencies": [ 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 index 4f61d60d..29f78ffc 100644 --- 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 @@ -3,7 +3,7 @@ NUnit3TestAdapter [3.17.0](https://www.nuget.org/packages/NUnit3TestAdapter/3.17 Used by: SqlDatabase internal -Target frameworks: net472, net5.0, 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/powershellstandard.library/5.1.0/index.json b/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.0/index.json index eb2bf739..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 686d57f9..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, 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 ab3502d7..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 cc8fc389..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, 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/index.json b/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/index.json index 796f7999..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.333/index.json @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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/readme.md b/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/readme.md index ccc0ef15..ca0b61ab 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.333/readme.md @@ -3,7 +3,7 @@ StyleCop.Analyzers.Unstable [1.2.0.333](https://www.nuget.org/packages/StyleCop. Used by: SqlDatabase internal -Target frameworks: net452, net472, net5.0, 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/system.appcontext/4.1.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.appcontext/4.1.0/index.json index c37cc6a7..e143dd9c 100644 --- 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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "netcoreapp3.1", "net5.0", + "net6.0", "net472" ] } 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 index 9819c841..727af7bd 100644 --- 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 @@ -3,7 +3,7 @@ System.AppContext [4.1.0](https://www.nuget.org/packages/System.AppContext/4.1.0 Used by: SqlDatabase internal -Target frameworks: net472, net5.0, 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.buffers/4.4.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.4.0/index.json index 4f27c585..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 b35b054a..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, 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 abdcb3d9..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 8fc41ba9..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, 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 2582b1db..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 90357dbc..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, 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 85bc1050..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 f28b42a7..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, 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 index 2582b1db..330a9b8c 100644 --- 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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "netcoreapp3.1", "net5.0", + "net6.0", "net472" ], "Dependencies": [ 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 index af4327fd..d57a2f96 100644 --- 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 @@ -3,7 +3,7 @@ System.ComponentModel.EventBasedAsync [4.3.0](https://www.nuget.org/packages/Sys Used by: SqlDatabase internal -Target frameworks: net472, net5.0, 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.primitives/4.3.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.componentmodel.primitives/4.3.0/index.json index f89d71bf..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 d93a3490..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, 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 d62882b6..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 0a5a7637..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, 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 c37cc6a7..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 09a44458..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, 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 38be9e10..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 d4b26b0e..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, 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 a2489f8d..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 822326e4..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, 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 4f27c585..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 642ebfd6..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, 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 aa212e55..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 9866c3d6..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, 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 c37cc6a7..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 4dbd8830..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, 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 8a1f744e..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 b9b60b54..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, 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 c37cc6a7..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 7796dec6..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, 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 55aadaaa..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 d31b66dd..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, 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 21a5b0a8..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 68b4e88b..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, 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 4f27c585..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 6f0f1193..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, 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 abdcb3d9..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 8664af18..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, 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 2582b1db..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 aed7b19f..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, 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 abdcb3d9..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 87a4dce0..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, 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 c37cc6a7..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 ddeac47d..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, 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 4f27c585..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 534c5125..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, 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 abdcb3d9..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 339f6c4e..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, 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 2582b1db..330a9b8c 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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "netcoreapp3.1", "net5.0", + "net6.0", "net472" ], "Dependencies": [ 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 91d4e24d..21f2a8d5 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, 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.loader/4.3.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.runtime.loader/4.3.0/index.json index e1eed87a..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 7cd482f2..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, 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 4c88a01b..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 f56305e0..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, 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 4f27c585..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 ff97edb2..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, 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 7800e49d..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 a22f4ea3..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, 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 4f27c585..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 b29aaafa..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, 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 b110bb69..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 3585e5c3..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, 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 c37cc6a7..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 4f7b08d3..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, 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 b110bb69..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 e9a6e6dd..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, 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 2d234549..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 79541d6d..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, 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 index c37cc6a7..e143dd9c 100644 --- 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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "netcoreapp3.1", "net5.0", + "net6.0", "net472" ] } 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 index 49cbbe42..b4ef6b7a 100644 --- 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 @@ -3,7 +3,7 @@ System.Threading.Thread [4.3.0](https://www.nuget.org/packages/System.Threading. Used by: SqlDatabase internal -Target frameworks: net472, net5.0, 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/4.3.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.threading/4.3.0/index.json index c37cc6a7..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 38db8e34..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, 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 4f27c585..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 0504e069..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, 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 a7bec3c1..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 21f96020..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, 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 8239dc0d..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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "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 8faa71ed..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, 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 index a90f8b55..2c820c9c 100644 --- 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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "netcoreapp3.1", "net5.0", + "net6.0", "net472" ], "Dependencies": [ 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 index 43d807e3..710e3f33 100644 --- 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 @@ -3,7 +3,7 @@ System.Xml.XPath.XmlDocument [4.3.0](https://www.nuget.org/packages/System.Xml.X Used by: SqlDatabase internal -Target frameworks: net472, net5.0, 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/4.3.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.xml.xpath/4.3.0/index.json index 8239dc0d..7366d71d 100644 --- 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 @@ -10,6 +10,7 @@ "TargetFrameworks": [ "netcoreapp3.1", "net5.0", + "net6.0", "net472" ], "Dependencies": [ 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 index c1c8e70a..114676c2 100644 --- 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 @@ -3,7 +3,7 @@ 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, 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/readme.md b/Build/third-party-libraries/readme.md index 79643fb8..17bb269e 100644 --- a/Build/third-party-libraries/readme.md +++ b/Build/third-party-libraries/readme.md @@ -6,13 +6,13 @@ 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|37| +|[MIT](licenses/mit)|no|no|38| |[ms-net-library](licenses/ms-net-library)|no|no|22| |[PostgreSQL](licenses/postgresql)|no|no|1| -Packages 65 +Packages 66 -------- |Name|Version|Source|License|Used by| @@ -29,6 +29,7 @@ Packages 65 |[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/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| From ee3d4ad4311fd89b7242fd96d06e8be45642d5c6 Mon Sep 17 00:00:00 2001 From: Max Ieremenko Date: Wed, 22 Dec 2021 19:03:30 +0100 Subject: [PATCH 10/15] .net 6.0 update docs --- Examples/CSharpMirationStep/readme.md | 4 ++-- Examples/PowerShellScript/readme.md | 5 +++-- README.md | 4 ++-- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Examples/CSharpMirationStep/readme.md b/Examples/CSharpMirationStep/readme.md index 085dfbfa..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 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 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 3e4c0532..32e59b02 100644 --- a/Examples/PowerShellScript/readme.md +++ b/Examples/PowerShellScript/readme.md @@ -67,13 +67,14 @@ The version with which you run the module. Installed Powershell Desktop version. -### .net SDK tool for .net 5.0 or .net core 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 PowerShell location can be passed via command line: diff --git a/README.md b/README.md index ce310709..8acbe04e 100644 --- a/README.md +++ b/README.md @@ -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 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 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 From e8631045384361e546ebd8a4dbe6bd719a91f4dc Mon Sep 17 00:00:00 2001 From: Max Ieremenko Date: Sat, 25 Dec 2021 12:31:13 +0100 Subject: [PATCH 11/15] update packages - MySqlConnector 1.3.10 => 2.1.1 - StyleCop.Analyzers.Unstable 1.2.0.333 => 1.2.0.376 - NUnit 3.13.1 => 3.13.2 - NUnit3TestAdapter 3.17.0 => 4.1.0 - Microsoft.NET.Test.Sdk 16.9.4 => 17.0.0 --- Sources/Directory.Build.props | 2 +- .../SqlDatabase.PowerShell.Test.csproj | 6 +++--- Sources/SqlDatabase.Test/SqlDatabase.Test.csproj | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) 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/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.Test/SqlDatabase.Test.csproj b/Sources/SqlDatabase.Test/SqlDatabase.Test.csproj index 41848fda..b377c177 100644 --- a/Sources/SqlDatabase.Test/SqlDatabase.Test.csproj +++ b/Sources/SqlDatabase.Test/SqlDatabase.Test.csproj @@ -8,12 +8,12 @@ - - + + - - + + From 8d4fb705e980e5255c222ebf8c9f91a0d670bbaf Mon Sep 17 00:00:00 2001 From: Max Ieremenko Date: Sat, 25 Dec 2021 12:32:13 +0100 Subject: [PATCH 12/15] update third party notices --- .../{2.0.78 => 2.0.123}/index.json | 8 +-- .../{2.0.78 => 2.0.123}/package.nuspec | 9 +-- .../2.0.123/project-License.txt | 6 ++ .../{2.0.78 => 2.0.123}/readme.md | 6 +- .../{2.0.78 => 2.0.123}/remarks.md | 0 .../2.0.123/repository-License.txt | 6 ++ .../third-party-notices.txt | 0 .../2.0.78/project-License.txt | 1 - .../2.0.78/repository-License.txt | 1 - .../{16.9.4 => 17.0.0}/index.json | 0 .../package-LICENSE_NET.txt | 0 .../{16.9.4 => 17.0.0}/package.nuspec | 4 +- .../{16.9.4 => 17.0.0}/project-LICENSE | 0 .../{16.9.4 => 17.0.0}/readme.md | 2 +- .../{16.9.4 => 17.0.0}/remarks.md | 0 .../{16.9.4 => 17.0.0}/repository-LICENSE | 0 .../third-party-notices.txt | 0 .../1.0.0/index.json | 40 ----------- .../1.0.0/package.nuspec | 26 ------- .../1.0.0/readme.md | 30 -------- .../{16.9.4 => 17.0.0}/index.json | 4 +- .../package-LICENSE_NET.txt | 0 .../{16.9.4 => 17.0.0}/package.nuspec | 14 ++-- .../{16.9.4 => 17.0.0}/project-LICENSE | 0 .../{16.9.4 => 17.0.0}/readme.md | 6 +- .../17.0.0}/remarks.md | 0 .../{16.9.4 => 17.0.0}/repository-LICENSE | 0 .../17.0.0}/third-party-notices.txt | 0 .../{16.9.4 => 17.0.0}/index.json | 0 .../package-LICENSE_NET.txt | 0 .../{16.9.4 => 17.0.0}/package.nuspec | 12 +++- .../{16.9.4 => 17.0.0}/project-LICENSE | 0 .../{16.9.4 => 17.0.0}/readme.md | 2 +- .../17.0.0}/remarks.md | 0 .../{16.9.4 => 17.0.0}/repository-LICENSE | 0 .../17.0.0}/third-party-notices.txt | 0 .../{16.9.4 => 17.0.0}/index.json | 2 +- .../package-LICENSE_NET.txt | 0 .../{16.9.4 => 17.0.0}/package.nuspec | 10 +-- .../{16.9.4 => 17.0.0}/project-LICENSE | 0 .../{16.9.4 => 17.0.0}/readme.md | 4 +- .../17.0.0}/remarks.md | 0 .../{16.9.4 => 17.0.0}/repository-LICENSE | 0 .../17.0.0}/third-party-notices.txt | 0 .../nunit/{3.13.1 => 3.13.2}/index.json | 0 .../{3.13.1 => 3.13.2}/package-LICENSE.txt | 0 .../nunit/{3.13.1 => 3.13.2}/package.nuspec | 2 +- .../nunit/{3.13.1 => 3.13.2}/readme.md | 2 +- .../16.9.4 => nunit/3.13.2}/remarks.md | 0 .../{3.13.1 => 3.13.2}/repository-LICENSE.txt | 0 .../3.13.2}/third-party-notices.txt | 0 .../nunit3testadapter/3.17.0/index.json | 68 ------------------- .../3.17.0/package-LICENSE.txt | 20 ------ .../nunit3testadapter/3.17.0/package.nuspec | 40 ----------- .../nunit3testadapter/3.17.0/readme.md | 41 ----------- .../nunit3testadapter/4.1.0/index.json | 38 +++++++++++ .../nunit3testadapter/4.1.0/package.nuspec | 26 +++++++ .../nunit3testadapter/4.1.0/readme.md | 32 +++++++++ .../4.1.0}/remarks.md | 0 .../{3.17.0 => 4.1.0}/repository-LICENSE | 0 .../4.1.0}/third-party-notices.txt | 0 .../1.2.0.333/remarks.md | 0 .../1.2.0.333/third-party-notices.txt | 0 .../{1.2.0.333 => 1.2.0.376}/index.json | 0 .../{1.2.0.333 => 1.2.0.376}/package-LICENSE | 0 .../{1.2.0.333 => 1.2.0.376}/package.nuspec | 4 +- .../{1.2.0.333 => 1.2.0.376}/project-LICENSE | 0 .../{1.2.0.333 => 1.2.0.376}/readme.md | 2 +- .../1.2.0.376}/remarks.md | 0 .../1.2.0.376}/third-party-notices.txt | 0 .../system.appcontext/4.1.0/index.json | 32 --------- .../system.appcontext/4.1.0/package.nuspec | 49 ------------- .../system.appcontext/4.1.0/readme.md | 31 --------- .../system.appcontext/4.1.0/remarks.md | 0 .../4.1.0/third-party-notices.txt | 0 .../4.3.0/index.json | 38 ----------- .../4.3.0/package.nuspec | 59 ---------------- .../4.3.0/readme.md | 39 ----------- .../4.3.0/remarks.md | 0 .../4.3.0/third-party-notices.txt | 0 .../4.3.0/index.json | 6 -- .../4.3.0/readme.md | 5 +- .../system.threading.thread/4.3.0/index.json | 32 --------- .../4.3.0/package.nuspec | 41 ----------- .../system.threading.thread/4.3.0/readme.md | 33 --------- .../system.threading.thread/4.3.0/remarks.md | 0 .../4.3.0/third-party-notices.txt | 0 .../4.3.0/index.json | 50 -------------- .../4.3.0/package.nuspec | 52 -------------- .../4.3.0/readme.md | 37 ---------- .../4.3.0/remarks.md | 0 .../4.3.0/third-party-notices.txt | 0 .../system.xml.xpath/4.3.0/index.json | 42 ------------ .../system.xml.xpath/4.3.0/package.nuspec | 56 --------------- .../system.xml.xpath/4.3.0/readme.md | 44 ------------ .../system.xml.xpath/4.3.0/remarks.md | 0 .../4.3.0/third-party-notices.txt | 0 Build/third-party-libraries/readme.md | 28 +++----- 98 files changed, 171 insertions(+), 971 deletions(-) rename Build/third-party-libraries/packages/nuget.org/dapper.strongname/{2.0.78 => 2.0.123}/index.json (80%) rename Build/third-party-libraries/packages/nuget.org/dapper.strongname/{2.0.78 => 2.0.123}/package.nuspec (77%) create mode 100644 Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.123/project-License.txt rename Build/third-party-libraries/packages/nuget.org/dapper.strongname/{2.0.78 => 2.0.123}/readme.md (54%) rename Build/third-party-libraries/packages/nuget.org/dapper.strongname/{2.0.78 => 2.0.123}/remarks.md (100%) create mode 100644 Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.123/repository-License.txt rename Build/third-party-libraries/packages/nuget.org/dapper.strongname/{2.0.78 => 2.0.123}/third-party-notices.txt (100%) delete mode 100644 Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/project-License.txt delete mode 100644 Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/repository-License.txt rename Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/{16.9.4 => 17.0.0}/index.json (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/{16.9.4 => 17.0.0}/package-LICENSE_NET.txt (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/{16.9.4 => 17.0.0}/package.nuspec (90%) rename Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/{16.9.4 => 17.0.0}/project-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/{16.9.4 => 17.0.0}/readme.md (85%) rename Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/{16.9.4 => 17.0.0}/remarks.md (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/{16.9.4 => 17.0.0}/repository-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/{16.9.4 => 17.0.0}/third-party-notices.txt (100%) delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.dotnet.internalabstractions/1.0.0/index.json delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.dotnet.internalabstractions/1.0.0/package.nuspec delete mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.dotnet.internalabstractions/1.0.0/readme.md rename Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/{16.9.4 => 17.0.0}/index.json (93%) rename Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/{16.9.4 => 17.0.0}/package-LICENSE_NET.txt (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/{16.9.4 => 17.0.0}/package.nuspec (83%) rename Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/{16.9.4 => 17.0.0}/project-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/{16.9.4 => 17.0.0}/readme.md (79%) rename Build/third-party-libraries/packages/nuget.org/{microsoft.dotnet.internalabstractions/1.0.0 => microsoft.net.test.sdk/17.0.0}/remarks.md (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/{16.9.4 => 17.0.0}/repository-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/{microsoft.dotnet.internalabstractions/1.0.0 => microsoft.net.test.sdk/17.0.0}/third-party-notices.txt (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/{16.9.4 => 17.0.0}/index.json (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/{16.9.4 => 17.0.0}/package-LICENSE_NET.txt (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/{16.9.4 => 17.0.0}/package.nuspec (89%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/{16.9.4 => 17.0.0}/project-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/{16.9.4 => 17.0.0}/readme.md (85%) rename Build/third-party-libraries/packages/nuget.org/{microsoft.net.test.sdk/16.9.4 => microsoft.testplatform.objectmodel/17.0.0}/remarks.md (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/{16.9.4 => 17.0.0}/repository-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/{microsoft.net.test.sdk/16.9.4 => microsoft.testplatform.objectmodel/17.0.0}/third-party-notices.txt (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/{16.9.4 => 17.0.0}/index.json (96%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/{16.9.4 => 17.0.0}/package-LICENSE_NET.txt (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/{16.9.4 => 17.0.0}/package.nuspec (93%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/{16.9.4 => 17.0.0}/project-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/{16.9.4 => 17.0.0}/readme.md (80%) rename Build/third-party-libraries/packages/nuget.org/{microsoft.testplatform.objectmodel/16.9.4 => microsoft.testplatform.testhost/17.0.0}/remarks.md (100%) rename Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/{16.9.4 => 17.0.0}/repository-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/{microsoft.testplatform.objectmodel/16.9.4 => microsoft.testplatform.testhost/17.0.0}/third-party-notices.txt (100%) rename Build/third-party-libraries/packages/nuget.org/nunit/{3.13.1 => 3.13.2}/index.json (100%) rename Build/third-party-libraries/packages/nuget.org/nunit/{3.13.1 => 3.13.2}/package-LICENSE.txt (100%) rename Build/third-party-libraries/packages/nuget.org/nunit/{3.13.1 => 3.13.2}/package.nuspec (98%) rename Build/third-party-libraries/packages/nuget.org/nunit/{3.13.1 => 3.13.2}/readme.md (94%) rename Build/third-party-libraries/packages/nuget.org/{microsoft.testplatform.testhost/16.9.4 => nunit/3.13.2}/remarks.md (100%) rename Build/third-party-libraries/packages/nuget.org/nunit/{3.13.1 => 3.13.2}/repository-LICENSE.txt (100%) rename Build/third-party-libraries/packages/nuget.org/{microsoft.testplatform.testhost/16.9.4 => nunit/3.13.2}/third-party-notices.txt (100%) delete mode 100644 Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/index.json delete mode 100644 Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/package-LICENSE.txt delete mode 100644 Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/package.nuspec delete mode 100644 Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/nunit3testadapter/4.1.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/nunit3testadapter/4.1.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/nunit3testadapter/4.1.0/readme.md rename Build/third-party-libraries/packages/nuget.org/{nunit/3.13.1 => nunit3testadapter/4.1.0}/remarks.md (100%) rename Build/third-party-libraries/packages/nuget.org/nunit3testadapter/{3.17.0 => 4.1.0}/repository-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/{nunit/3.13.1 => nunit3testadapter/4.1.0}/third-party-notices.txt (100%) delete mode 100644 Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/remarks.md delete mode 100644 Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/third-party-notices.txt rename Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/{1.2.0.333 => 1.2.0.376}/index.json (100%) rename Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/{1.2.0.333 => 1.2.0.376}/package-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/{1.2.0.333 => 1.2.0.376}/package.nuspec (92%) rename Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/{1.2.0.333 => 1.2.0.376}/project-LICENSE (100%) rename Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/{1.2.0.333 => 1.2.0.376}/readme.md (82%) rename Build/third-party-libraries/packages/nuget.org/{nunit3testadapter/3.17.0 => stylecop.analyzers.unstable/1.2.0.376}/remarks.md (100%) rename Build/third-party-libraries/packages/nuget.org/{nunit3testadapter/3.17.0 => stylecop.analyzers.unstable/1.2.0.376}/third-party-notices.txt (100%) delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.appcontext/4.1.0/index.json delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.appcontext/4.1.0/package.nuspec delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.appcontext/4.1.0/readme.md delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.appcontext/4.1.0/remarks.md delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.appcontext/4.1.0/third-party-notices.txt delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.componentmodel.eventbasedasync/4.3.0/index.json delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.componentmodel.eventbasedasync/4.3.0/package.nuspec delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.componentmodel.eventbasedasync/4.3.0/readme.md delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.componentmodel.eventbasedasync/4.3.0/remarks.md delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.componentmodel.eventbasedasync/4.3.0/third-party-notices.txt delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.threading.thread/4.3.0/index.json delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.threading.thread/4.3.0/package.nuspec delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.threading.thread/4.3.0/readme.md delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.threading.thread/4.3.0/remarks.md delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.threading.thread/4.3.0/third-party-notices.txt delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.xml.xpath.xmldocument/4.3.0/index.json delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.xml.xpath.xmldocument/4.3.0/package.nuspec delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.xml.xpath.xmldocument/4.3.0/readme.md delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.xml.xpath.xmldocument/4.3.0/remarks.md delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.xml.xpath.xmldocument/4.3.0/third-party-notices.txt delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.xml.xpath/4.3.0/index.json delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.xml.xpath/4.3.0/package.nuspec delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.xml.xpath/4.3.0/readme.md delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.xml.xpath/4.3.0/remarks.md delete mode 100644 Build/third-party-libraries/packages/nuget.org/system.xml.xpath/4.3.0/third-party-notices.txt 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 80% 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 22274c15..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 @@ -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.78/readme.md b/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.123/readme.md similarity index 54% rename from Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/readme.md rename to Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.123/readme.md index 45c63cff..6a65c08b 100644 --- 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.123/readme.md @@ -1,4 +1,4 @@ -Dapper.StrongName [2.0.78](https://www.nuget.org/packages/Dapper.StrongName/2.0.78) +Dapper.StrongName [2.0.123](https://www.nuget.org/packages/Dapper.StrongName/2.0.123) -------------------- Used by: SqlDatabase internal @@ -8,8 +8,8 @@ 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/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 +- 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 ----------- 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/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/microsoft.codecoverage/16.9.4/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/17.0.0/index.json similarity index 100% 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 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 85% 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 3d8c6e37..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,4 +1,4 @@ -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 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 3dc5dcef..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": [ - "netcoreapp3.1", - "net5.0", - "net6.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 9ade254b..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, net6.0, 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 93% 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 c7528027..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 @@ -16,11 +16,11 @@ "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 79% 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 406e8aba..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,4 +1,4 @@ -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 @@ -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.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 100% 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 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 85% 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 a04c1da8..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,4 +1,4 @@ -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 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 96% 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 0f91d067..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 @@ -16,7 +16,7 @@ "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 80% 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 6aaea0c0..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,4 +1,4 @@ -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 @@ -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.testplatform.objectmodel/16.9.4/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.testplatform.objectmodel/16.9.4/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.testplatform.objectmodel/16.9.4/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.testplatform.objectmodel/16.9.4/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/nunit/3.13.1/index.json b/Build/third-party-libraries/packages/nuget.org/nunit/3.13.2/index.json similarity index 100% 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 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 94% 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 48f0ed9d..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,4 +1,4 @@ -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 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 94029b25..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": [ - "netcoreapp3.1", - "net5.0", - "net6.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 29f78ffc..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, net6.0, 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/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/nunit/3.13.1/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/nunit/3.13.1/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/nunit/3.13.1/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/nunit/3.13.1/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/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 100% 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 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 82% 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 ca0b61ab..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,4 +1,4 @@ -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 diff --git a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/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/nunit3testadapter/3.17.0/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/nunit3testadapter/3.17.0/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/nunit3testadapter/3.17.0/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 e143dd9c..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": [ - "netcoreapp3.1", - "net5.0", - "net6.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 727af7bd..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, net6.0, 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.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 330a9b8c..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": [ - "netcoreapp3.1", - "net5.0", - "net6.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 d57a2f96..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, net6.0, 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.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 330a9b8c..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 @@ -12,12 +12,6 @@ "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 21f2a8d5..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 @@ -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.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 e143dd9c..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": [ - "netcoreapp3.1", - "net5.0", - "net6.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 b4ef6b7a..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, net6.0, 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.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 2c820c9c..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": [ - "netcoreapp3.1", - "net5.0", - "net6.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 710e3f33..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, net6.0, 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 7366d71d..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": [ - "netcoreapp3.1", - "net5.0", - "net6.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 114676c2..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, net6.0, 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 17bb269e..ecf5a807 100644 --- a/Build/third-party-libraries/readme.md +++ b/Build/third-party-libraries/readme.md @@ -6,26 +6,25 @@ 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|38| -|[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 66 +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.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/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| @@ -36,18 +35,16 @@ Packages 66 |[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| @@ -77,11 +74,8 @@ Packages 66 |[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 From e0be3dd42f61c5fe215936a8202dd983a55850ac Mon Sep 17 00:00:00 2001 From: Max Ieremenko Date: Sat, 25 Dec 2021 12:32:53 +0100 Subject: [PATCH 13/15] build beautify logs --- Build/build-tasks.ps1 | 53 +++++++++++++++++++++++++++++++++++-------- 1 file changed, 43 insertions(+), 10 deletions(-) diff --git a/Build/build-tasks.ps1 b/Build/build-tasks.ps1 index 5ca58737..cb3bf3f3 100644 --- a/Build/build-tasks.ps1 +++ b/Build/build-tasks.ps1 @@ -132,7 +132,7 @@ task UnitTest { @{ 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 { @@ -162,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 { @@ -193,11 +201,17 @@ task PsCoreTest { $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 { @@ -209,11 +223,17 @@ task SdkToolTest { $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 { @@ -226,11 +246,18 @@ task NetRuntimeLinuxTest { $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 { @@ -244,9 +271,15 @@ task NetRuntimeWindowsTest { $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 From 4e4d32c7173089bdd979fddebcc5bd2762bed4cb Mon Sep 17 00:00:00 2001 From: Max Ieremenko Date: Sat, 25 Dec 2021 12:47:04 +0100 Subject: [PATCH 14/15] add ps-core tests on - powershell:7.2.0-ubuntu-20.04 - 7.2.1-ubuntu-20.04 - 7.3.0-preview.1-ubuntu-20.04 --- Build/build-tasks.ps1 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Build/build-tasks.ps1 b/Build/build-tasks.ps1 index cb3bf3f3..947a2bb4 100644 --- a/Build/build-tasks.ps1 +++ b/Build/build-tasks.ps1 @@ -196,7 +196,9 @@ 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) { From 71e1b4d7b3e9dc6c6430cf93d0945ee98f257a78 Mon Sep 17 00:00:00 2001 From: Max Ieremenko Date: Sat, 25 Dec 2021 13:12:51 +0100 Subject: [PATCH 15/15] (c) 2022 --- Sources/GlobalAssemblyInfo.cs | 2 +- .../choco/sqldatabase.nuspec | 6 +++--- .../SqlDatabase.Package/nuget/package.nuspec | 2 +- .../SqlDatabase.PowerShell/SqlDatabase.psd1 | Bin 2872 -> 2992 bytes Sources/SqlDatabase/SqlDatabase.csproj | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Sources/GlobalAssemblyInfo.cs b/Sources/GlobalAssemblyInfo.cs index 097c5fc2..62f73a4c 100644 --- a/Sources/GlobalAssemblyInfo.cs +++ b/Sources/GlobalAssemblyInfo.cs @@ -4,7 +4,7 @@ [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)] 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/SqlDatabase.psd1 b/Sources/SqlDatabase.PowerShell/SqlDatabase.psd1 index e69e0746bcf8dc327f1c521381f1503368fa6bae..fc662ee3b6398a702e5183178adcd23f387673fa 100644 GIT binary patch delta 145 zcmdlXwn2PD5+kz_gTiE9M(N27j7i+Q3|tH$3>gfW48@b*GTx5|@dFt08Oj+_8HyN! zfikHKIY6kuPzDw$2CB?w$YUsGumXyu0L6+KvKdN%Vg*3HDT5w^A%hN(l?)Uq0?H~d bn1RK#fh5rE&8L|>Stcv6OKcWlS78AF$9xgfW48;rz42hH9GTz^;!|cJbxrbea1ppcg B3{L<6 diff --git a/Sources/SqlDatabase/SqlDatabase.csproj b/Sources/SqlDatabase/SqlDatabase.csproj index 8e89804f..1354249a 100644 --- a/Sources/SqlDatabase/SqlDatabase.csproj +++ b/Sources/SqlDatabase/SqlDatabase.csproj @@ -24,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