From 48348995cd2fb0391434f67dae211324baa9d9e4 Mon Sep 17 00:00:00 2001 From: Max Ieremenko Date: Fri, 2 Apr 2021 20:19:24 +0200 Subject: [PATCH 01/12] update version to 2.3.0 --- Sources/GlobalAssemblyInfo.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/GlobalAssemblyInfo.cs b/Sources/GlobalAssemblyInfo.cs index ede16238..9e607bee 100644 --- a/Sources/GlobalAssemblyInfo.cs +++ b/Sources/GlobalAssemblyInfo.cs @@ -9,5 +9,5 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] -[assembly: AssemblyVersion("2.2.0.0")] -[assembly: AssemblyFileVersion("2.2.0.0")] +[assembly: AssemblyVersion("2.3.0.0")] +[assembly: AssemblyFileVersion("2.3.0.0")] From 7104d816a0e43d8676f56ff818e053a68e4e1ca6 Mon Sep 17 00:00:00 2001 From: Max Ieremenko Date: Fri, 2 Apr 2021 20:20:21 +0200 Subject: [PATCH 02/12] #9: Handle dataselection in .sql scripts --- .../New/02.Data/01.Person.sql | 5 +- .../New/02.Data/02.PersonAddress.sql | 2 + .../IntegrationTests/Upgrade/2.0_2.1.sql | 2 + .../Scripts/TextScriptOutputTest.cs | 154 ++++++++++++++++++ .../Scripts/TextScriptTest.cs | 63 +++++-- .../TestApi/TextExtensions.cs | 14 ++ Sources/SqlDatabase/Scripts/TextScript.cs | 101 +++++++++++- 7 files changed, 319 insertions(+), 22 deletions(-) create mode 100644 Sources/SqlDatabase.Test/Scripts/TextScriptOutputTest.cs create mode 100644 Sources/SqlDatabase.Test/TestApi/TextExtensions.cs diff --git a/Sources/SqlDatabase.Test/IntegrationTests/New/02.Data/01.Person.sql b/Sources/SqlDatabase.Test/IntegrationTests/New/02.Data/01.Person.sql index 5b1ffbe0..de1f56e7 100644 --- a/Sources/SqlDatabase.Test/IntegrationTests/New/02.Data/01.Person.sql +++ b/Sources/SqlDatabase.Test/IntegrationTests/New/02.Data/01.Person.sql @@ -1,2 +1,5 @@ INSERT INTO demo.Person(Name) -VALUES ('John'), ('Maria') \ No newline at end of file +VALUES ('John'), ('Maria') +GO + +SELECT * FROM demo.Person \ No newline at end of file diff --git a/Sources/SqlDatabase.Test/IntegrationTests/New/02.Data/02.PersonAddress.sql b/Sources/SqlDatabase.Test/IntegrationTests/New/02.Data/02.PersonAddress.sql index 64b073d9..65ca07c7 100644 --- a/Sources/SqlDatabase.Test/IntegrationTests/New/02.Data/02.PersonAddress.sql +++ b/Sources/SqlDatabase.Test/IntegrationTests/New/02.Data/02.PersonAddress.sql @@ -9,3 +9,5 @@ SELECT Person.Id, '{{MariaCity}}' FROM demo.Person Person WHERE Person.Name = 'Maria' GO + +SELECT * FROM demo.PersonAddress \ No newline at end of file diff --git a/Sources/SqlDatabase.Test/IntegrationTests/Upgrade/2.0_2.1.sql b/Sources/SqlDatabase.Test/IntegrationTests/Upgrade/2.0_2.1.sql index 1e0e5257..c1dc2e70 100644 --- a/Sources/SqlDatabase.Test/IntegrationTests/Upgrade/2.0_2.1.sql +++ b/Sources/SqlDatabase.Test/IntegrationTests/Upgrade/2.0_2.1.sql @@ -7,3 +7,5 @@ UPDATE demo.Person SET SecondName = '{{MariaSecondName}}' WHERE Name = 'Maria' GO + +SELECT * FROM demo.Person \ No newline at end of file diff --git a/Sources/SqlDatabase.Test/Scripts/TextScriptOutputTest.cs b/Sources/SqlDatabase.Test/Scripts/TextScriptOutputTest.cs new file mode 100644 index 00000000..ff9f9753 --- /dev/null +++ b/Sources/SqlDatabase.Test/Scripts/TextScriptOutputTest.cs @@ -0,0 +1,154 @@ +using System; +using System.Collections.Generic; +using System.Data.SqlClient; +using Moq; +using NUnit.Framework; +using Shouldly; +using SqlDatabase.TestApi; + +namespace SqlDatabase.Scripts +{ + [TestFixture] + public class TextScriptOutputTest + { + private SqlConnection _connection; + private SqlCommand _command; + private Mock _logger; + private Variables _variables; + private TextScript _sut; + + private IList _logOutput; + + [SetUp] + public void BeforeEachTest() + { + _variables = new Variables(); + + _logOutput = new List(); + _logger = new Mock(MockBehavior.Strict); + _logger + .Setup(l => l.Indent()) + .Returns((IDisposable)null); + _logger + .Setup(l => l.Info(It.IsAny())) + .Callback(m => + { + Console.WriteLine("Info: {0}", m); + _logOutput.Add(m); + }); + + _sut = new TextScript(); + _connection = Query.Open(); + _command = _connection.CreateCommand(); + } + + [TearDown] + public void AfterEachTest() + { + _command?.Dispose(); + _connection?.Dispose(); + } + + [Test] + public void ExecuteEmpty() + { + _sut.ReadSqlContent = "/* do nothing */".AsFuncStream(); + + _sut.Execute(_command, _variables, _logger.Object); + + _logOutput.ShouldBeEmpty(); + } + + [Test] + public void ExecuteDdlWithReader() + { + _sut.ReadSqlContent = @" +create table dbo.TextScriptIntegrationTest(Id int, Name nvarchar(20)) +go +insert into dbo.TextScriptIntegrationTest values(1, 'name 1') +insert into dbo.TextScriptIntegrationTest values(2, 'name 2') +go +select * from dbo.TextScriptIntegrationTest +go +drop table dbo.TextScriptIntegrationTest" + .AsFuncStream(); + + _sut.Execute(_command, _variables, _logger.Object); + + _logOutput.Count.ShouldBe(8); + _logOutput[0].ShouldBe("output: Id; Name"); + _logOutput[1].ShouldBe("row 1"); + _logOutput[2].ShouldBe("Id : 1"); + _logOutput[3].ShouldBe("Name : name 1"); + _logOutput[4].ShouldBe("row 2"); + _logOutput[5].ShouldBe("Id : 2"); + _logOutput[6].ShouldBe("Name : name 2"); + _logOutput[7].ShouldBe("2 rows selected"); + } + + [Test] + public void NoColumnName() + { + _sut.ReadSqlContent = "select 1".AsFuncStream(); + + _sut.Execute(_command, _variables, _logger.Object); + + _logOutput.Count.ShouldBe(4); + _logOutput[0].ShouldBe("output: (no name)"); + _logOutput[1].ShouldBe("row 1"); + _logOutput[2].ShouldBe("(no name) : 1"); + _logOutput[3].ShouldBe("1 row selected"); + } + + [Test] + public void SelectNull() + { + _sut.ReadSqlContent = "select null".AsFuncStream(); + + _sut.Execute(_command, _variables, _logger.Object); + + _logOutput.Count.ShouldBe(4); + _logOutput[0].ShouldBe("output: (no name)"); + _logOutput[1].ShouldBe("row 1"); + _logOutput[2].ShouldBe("(no name) : NULL"); + _logOutput[3].ShouldBe("1 row selected"); + } + + [Test] + public void TwoSelections() + { + _sut.ReadSqlContent = @" +select 1 first +select 2 second" + .AsFuncStream(); + + _sut.Execute(_command, _variables, _logger.Object); + + _logOutput.Count.ShouldBe(9); + + _logOutput[0].ShouldBe("output: first"); + _logOutput[1].ShouldBe("row 1"); + _logOutput[2].ShouldBe("first : 1"); + _logOutput[3].ShouldBe("1 row selected"); + + _logOutput[4].ShouldBe(string.Empty); + + _logOutput[5].ShouldBe("output: second"); + _logOutput[6].ShouldBe("row 1"); + _logOutput[7].ShouldBe("second : 2"); + _logOutput[8].ShouldBe("1 row selected"); + } + + [Test] + public void SelectZeroRowsNull() + { + _sut.ReadSqlContent = "select top 0 null value".AsFuncStream(); + + _sut.Execute(_command, _variables, _logger.Object); + + _logOutput.Count.ShouldBe(2); + _logOutput[0].ShouldBe("output: value"); + _logOutput[1].ShouldBe("0 rows selected"); + } + } +} diff --git a/Sources/SqlDatabase.Test/Scripts/TextScriptTest.cs b/Sources/SqlDatabase.Test/Scripts/TextScriptTest.cs index 37622138..edb5d424 100644 --- a/Sources/SqlDatabase.Test/Scripts/TextScriptTest.cs +++ b/Sources/SqlDatabase.Test/Scripts/TextScriptTest.cs @@ -7,6 +7,7 @@ using Moq; using NUnit.Framework; using Shouldly; +using SqlDatabase.TestApi; namespace SqlDatabase.Scripts { @@ -40,12 +41,11 @@ public void BeforeEachTest() _executedScripts = new List(); _command = new Mock(MockBehavior.Strict); _command.SetupProperty(c => c.CommandText); - _command - .Setup(c => c.ExecuteNonQuery()) - .Callback(() => _executedScripts.Add(_command.Object.CommandText)) - .Returns(0); _executedReader = new Mock(MockBehavior.Strict); + _executedReader + .Setup(r => r.Dispose()); + _command .Setup(c => c.ExecuteReader()) .Callback(() => _executedScripts.Add(_command.Object.CommandText)) @@ -58,30 +58,55 @@ public void BeforeEachTest() [Test] public void ExecuteShowVariableReplacement() { - _sut.ReadSqlContent = () => new MemoryStream(Encoding.Default.GetBytes("{{var1}} {{var1}}")); + _sut.ReadSqlContent = "{{var1}} {{var1}}".AsFuncStream(); + + _executedReader + .Setup(r => r.GetSchemaTable()) + .Returns((DataTable)null); + _executedReader + .Setup(r => r.Read()) + .Returns(false); + _executedReader + .Setup(r => r.NextResult()) + .Returns(false); _sut.Execute(_command.Object, _variables, _logger.Object); - Assert.AreEqual(1, _executedScripts.Count); - Assert.AreEqual("[some value] [some value]", _executedScripts[0]); + _executedScripts.Count.ShouldBe(1); + _executedScripts[0].ShouldBe("[some value] [some value]"); + + _logOutput.FirstOrDefault(i => i.Contains("var1") && i.Contains("[some value]")).ShouldNotBeNull(); - Assert.IsNotNull(_logOutput.Where(i => i.Contains("var1") && i.Contains("[some value]"))); + _executedReader.VerifyAll(); } [Test] public void Execute() { - _sut.ReadSqlContent = () => new MemoryStream(Encoding.Default.GetBytes(@" + _sut.ReadSqlContent = @" {{var1}} go text2 -go")); +go" + .AsFuncStream(); + + _executedReader + .Setup(r => r.GetSchemaTable()) + .Returns((DataTable)null); + _executedReader + .Setup(r => r.Read()) + .Returns(false); + _executedReader + .Setup(r => r.NextResult()) + .Returns(false); _sut.Execute(_command.Object, _variables, _logger.Object); - Assert.AreEqual(2, _executedScripts.Count); - Assert.AreEqual("[some value]", _executedScripts[0]); - Assert.AreEqual("text2", _executedScripts[1]); + _executedScripts.Count.ShouldBe(2); + _executedScripts[0].ShouldBe("[some value]"); + _executedScripts[1].ShouldBe("text2"); + + _executedReader.VerifyAll(); } [Test] @@ -95,14 +120,13 @@ public void ExecuteWhatIf() _sut.Execute(null, _variables, _logger.Object); - Assert.AreEqual(0, _executedScripts.Count); + _executedScripts.ShouldBeEmpty(); } [Test] public void ExecuteReader() { - _sut.ReadSqlContent = () => new MemoryStream(Encoding.Default.GetBytes("select {{var1}}")); - _executedReader.Setup(r => r.Dispose()); + _sut.ReadSqlContent = "select {{var1}}".AsFuncStream(); var actual = _sut.ExecuteReader(_command.Object, _variables, _logger.Object).ToList(); @@ -111,16 +135,19 @@ public void ExecuteReader() actual.Count.ShouldBe(1); actual[0].ShouldBe(_executedReader.Object); + + _executedReader.VerifyAll(); } [Test] public void GetDependencies() { - _sut.ReadSqlContent = () => new MemoryStream(Encoding.Default.GetBytes(@" + _sut.ReadSqlContent = @" -- module dependency: a 1.0 go -- module dependency: b 1.0 -go")); +go" + .AsFuncStream(); var actual = _sut.GetDependencies(); diff --git a/Sources/SqlDatabase.Test/TestApi/TextExtensions.cs b/Sources/SqlDatabase.Test/TestApi/TextExtensions.cs new file mode 100644 index 00000000..ea42b40c --- /dev/null +++ b/Sources/SqlDatabase.Test/TestApi/TextExtensions.cs @@ -0,0 +1,14 @@ +using System; +using System.IO; +using System.Text; + +namespace SqlDatabase.TestApi +{ + internal static class TextExtensions + { + public static Func AsFuncStream(this string text) + { + return () => new MemoryStream(Encoding.Default.GetBytes(text)); + } + } +} diff --git a/Sources/SqlDatabase/Scripts/TextScript.cs b/Sources/SqlDatabase/Scripts/TextScript.cs index d8b2e139..c2fbc9d8 100644 --- a/Sources/SqlDatabase/Scripts/TextScript.cs +++ b/Sources/SqlDatabase/Scripts/TextScript.cs @@ -1,6 +1,7 @@ using System; using System.Collections.Generic; using System.Data; +using System.Globalization; using System.IO; using System.Linq; @@ -16,12 +17,36 @@ public void Execute(IDbCommand command, IVariables variables, ILogger logger) { var batches = ResolveBatches(variables, logger); - if (command != null) + if (command == null) { foreach (var batch in batches) { - command.CommandText = batch; - command.ExecuteNonQuery(); + // what-if: just read to the end + } + + return; + } + + foreach (var batch in batches) + { + command.CommandText = batch; + using (var reader = command.ExecuteReader()) + { + var identOutput = false; + do + { + var columns = GetReaderColumns(reader); + if (columns == null) + { + ReadEmpty(reader); + } + else + { + ReadWithOutput(reader, columns, logger, identOutput); + identOutput = true; + } + } + while (reader.NextResult()); } } } @@ -56,6 +81,76 @@ public IList GetDependencies() return SqlBatchParser.ExtractDependencies(new StringReader(batch), DisplayName).ToArray(); } + private static string[] GetReaderColumns(IDataReader reader) + { + using (var metadata = reader.GetSchemaTable()) + { + return metadata + ?.Rows + .Cast() + .OrderBy(i => (int)i["ColumnOrdinal"]) + .Select(i => (string)i["ColumnName"]) + .ToArray(); + } + } + + private static void ReadEmpty(IDataReader reader) + { + while (reader.Read()) + { + } + } + + private static void ReadWithOutput(IDataReader reader, string[] columns, ILogger logger, bool identOutput) + { + if (identOutput) + { + logger.Info(string.Empty); + } + + var maxNameLength = 0; + for (var i = 0; i < columns.Length; i++) + { + var columnName = columns[i]; + if (string.IsNullOrEmpty(columnName)) + { + columnName = "(no name)"; + } + + columns[i] = columnName; + maxNameLength = Math.Max(maxNameLength, columnName.Length); + } + + logger.Info("output: " + string.Join("; ", columns)); + + for (var i = 0; i < columns.Length; i++) + { + var name = columns[i]; + var spaces = maxNameLength - name.Length + 1; + columns[i] = name + new string(' ', spaces) + ": "; + } + + var rowsCount = 0; + while (reader.Read()) + { + rowsCount++; + + logger.Info("row " + rowsCount.ToString(CultureInfo.CurrentCulture)); + using (logger.Indent()) + { + for (var i = 0; i < columns.Length; i++) + { + var value = reader.IsDBNull(i) ? "NULL" : Convert.ToString(reader.GetValue(i), CultureInfo.CurrentCulture); + logger.Info(columns[i] + value); + } + } + } + + logger.Info("{0} row{1} selected".FormatWith( + rowsCount.ToString(CultureInfo.CurrentCulture), + rowsCount == 1 ? null : "s")); + } + private IEnumerable ResolveBatches(IVariables variables, ILogger logger) { var scriptParser = new SqlScriptVariableParser(variables); From e1f3cd8967e69d3caea9e646f99f5ede9ab3827f Mon Sep 17 00:00:00 2001 From: Max Ieremenko Date: Sat, 3 Apr 2021 16:48:13 +0200 Subject: [PATCH 03/12] #10: Log file option --- .../CreateCmdLetTest.cs | 4 + .../ExecuteCmdLetTest.cs | 4 + .../ExportCmdLetTest.cs | 4 + .../UpgradeCmdLetTest.cs | 4 + .../SqlDatabaseCmdlet.cs | 6 +- .../GenericCommandLineBuilderTest.cs | 4 + .../IntegrationTests/ProgramTest.cs | 35 +++--- .../SqlDatabase.Test/IntegrationTests/Test.sh | 15 ++- .../IntegrationTests/TestGlobalTool.sh | 15 ++- .../Log/CombinedLoggerTest.cs | 100 ++++++++++++++++ .../SqlDatabase.Test/Log/FileLoggerTest.cs | 112 ++++++++++++++++++ Sources/SqlDatabase/Configuration/Arg.cs | 1 + .../CommandLine.create.net452.txt | 3 + .../Configuration/CommandLine.create.txt | 3 + .../CommandLine.execute.net452.txt | 3 + .../Configuration/CommandLine.execute.txt | 3 + .../CommandLine.export.net452.txt | 3 + .../Configuration/CommandLine.export.txt | 3 + .../CommandLine.upgrade.net452.txt | 3 + .../Configuration/CommandLine.upgrade.txt | 3 + .../Configuration/CommandLineParser.cs | 29 ++++- .../Configuration/GenericCommandLine.cs | 2 + .../GenericCommandLineBuilder.cs | 11 ++ Sources/SqlDatabase/Log/CombinedLogger.cs | 70 +++++++++++ Sources/SqlDatabase/Log/FileLogger.cs | 63 ++++++++++ Sources/SqlDatabase/Program.cs | 41 +++++++ 26 files changed, 512 insertions(+), 32 deletions(-) create mode 100644 Sources/SqlDatabase.Test/Log/CombinedLoggerTest.cs create mode 100644 Sources/SqlDatabase.Test/Log/FileLoggerTest.cs create mode 100644 Sources/SqlDatabase/Log/CombinedLogger.cs create mode 100644 Sources/SqlDatabase/Log/FileLogger.cs diff --git a/Sources/SqlDatabase.PowerShell.Test/CreateCmdLetTest.cs b/Sources/SqlDatabase.PowerShell.Test/CreateCmdLetTest.cs index 716d8da4..1b5cfb29 100644 --- a/Sources/SqlDatabase.PowerShell.Test/CreateCmdLetTest.cs +++ b/Sources/SqlDatabase.PowerShell.Test/CreateCmdLetTest.cs @@ -23,6 +23,7 @@ public void BuildCommandLine(string commandName) c.Parameters.Add(nameof(CreateCmdLet.Configuration), "app.config"); c.Parameters.Add(nameof(CreateCmdLet.Var), new[] { "x=1", "y=2" }); c.Parameters.Add(nameof(CreateCmdLet.WhatIf)); + c.Parameters.Add(nameof(CreateCmdLet.Log), "log.txt"); }); commandLines.Length.ShouldBe(1); @@ -40,6 +41,9 @@ public void BuildCommandLine(string commandName) Path.IsPathRooted(commandLine.ConfigurationFile).ShouldBeTrue(); Path.GetFileName(commandLine.ConfigurationFile).ShouldBe("app.config"); + Path.IsPathRooted(commandLine.LogFileName).ShouldBeTrue(); + Path.GetFileName(commandLine.LogFileName).ShouldBe("log.txt"); + commandLine.WhatIf.ShouldBeTrue(); commandLine.Variables.Keys.ShouldBe(new[] { "x", "y" }); diff --git a/Sources/SqlDatabase.PowerShell.Test/ExecuteCmdLetTest.cs b/Sources/SqlDatabase.PowerShell.Test/ExecuteCmdLetTest.cs index bc3bdea5..b184452d 100644 --- a/Sources/SqlDatabase.PowerShell.Test/ExecuteCmdLetTest.cs +++ b/Sources/SqlDatabase.PowerShell.Test/ExecuteCmdLetTest.cs @@ -25,6 +25,7 @@ public void BuildCommandLine(string commandName) c.Parameters.Add(nameof(ExecuteCmdLet.Configuration), "app.config"); c.Parameters.Add(nameof(ExecuteCmdLet.Var), new[] { "x=1", "y=2" }); c.Parameters.Add(nameof(ExecuteCmdLet.WhatIf)); + c.Parameters.Add(nameof(CreateCmdLet.Log), "log.txt"); }); commandLines.Length.ShouldBe(1); @@ -45,6 +46,9 @@ public void BuildCommandLine(string commandName) Path.IsPathRooted(commandLine.ConfigurationFile).ShouldBeTrue(); Path.GetFileName(commandLine.ConfigurationFile).ShouldBe("app.config"); + Path.IsPathRooted(commandLine.LogFileName).ShouldBeTrue(); + Path.GetFileName(commandLine.LogFileName).ShouldBe("log.txt"); + commandLine.WhatIf.ShouldBeTrue(); commandLine.Variables.Keys.ShouldBe(new[] { "x", "y" }); diff --git a/Sources/SqlDatabase.PowerShell.Test/ExportCmdLetTest.cs b/Sources/SqlDatabase.PowerShell.Test/ExportCmdLetTest.cs index 2ca17d61..73aa5047 100644 --- a/Sources/SqlDatabase.PowerShell.Test/ExportCmdLetTest.cs +++ b/Sources/SqlDatabase.PowerShell.Test/ExportCmdLetTest.cs @@ -23,6 +23,7 @@ public void BuildCommandLine() c.Parameters.Add(nameof(ExportCmdLet.ToTable), "to table"); c.Parameters.Add(nameof(ExportCmdLet.Configuration), "app.config"); c.Parameters.Add(nameof(ExportCmdLet.Var), new[] { "x=1", "y=2" }); + c.Parameters.Add(nameof(CreateCmdLet.Log), "log.txt"); }); commandLines.Length.ShouldBe(1); @@ -44,6 +45,9 @@ public void BuildCommandLine() Path.IsPathRooted(commandLine.ConfigurationFile).ShouldBeTrue(); Path.GetFileName(commandLine.ConfigurationFile).ShouldBe("app.config"); + Path.IsPathRooted(commandLine.LogFileName).ShouldBeTrue(); + Path.GetFileName(commandLine.LogFileName).ShouldBe("log.txt"); + commandLine.Variables.Keys.ShouldBe(new[] { "x", "y" }); commandLine.Variables["x"].ShouldBe("1"); commandLine.Variables["y"].ShouldBe("2"); diff --git a/Sources/SqlDatabase.PowerShell.Test/UpgradeCmdLetTest.cs b/Sources/SqlDatabase.PowerShell.Test/UpgradeCmdLetTest.cs index bb0320ec..77a1818e 100644 --- a/Sources/SqlDatabase.PowerShell.Test/UpgradeCmdLetTest.cs +++ b/Sources/SqlDatabase.PowerShell.Test/UpgradeCmdLetTest.cs @@ -25,6 +25,7 @@ public void BuildCommandLine(string commandName) c.Parameters.Add(nameof(UpgradeCmdLet.Var), new[] { "x=1", "y=2" }); c.Parameters.Add(nameof(UpgradeCmdLet.WhatIf)); c.Parameters.Add(nameof(UpgradeCmdLet.FolderAsModuleName)); + c.Parameters.Add(nameof(CreateCmdLet.Log), "log.txt"); }); commandLines.Length.ShouldBe(1); @@ -44,6 +45,9 @@ public void BuildCommandLine(string commandName) Path.IsPathRooted(commandLine.ConfigurationFile).ShouldBeTrue(); Path.GetFileName(commandLine.ConfigurationFile).ShouldBe("app.config"); + Path.IsPathRooted(commandLine.LogFileName).ShouldBeTrue(); + Path.GetFileName(commandLine.LogFileName).ShouldBe("log.txt"); + commandLine.WhatIf.ShouldBeTrue(); commandLine.FolderAsModuleName.ShouldBeTrue(); diff --git a/Sources/SqlDatabase.PowerShell/SqlDatabaseCmdlet.cs b/Sources/SqlDatabase.PowerShell/SqlDatabaseCmdlet.cs index 7d313871..6b440726 100644 --- a/Sources/SqlDatabase.PowerShell/SqlDatabaseCmdlet.cs +++ b/Sources/SqlDatabase.PowerShell/SqlDatabaseCmdlet.cs @@ -21,6 +21,9 @@ protected SqlDatabaseCmdLet(string command) [Alias("v")] public string[] Var { get; set; } + [Parameter(HelpMessage = "Optional path to log file.")] + public string Log { get; set; } + // only for tests internal static ISqlDatabaseProgram Program { get; set; } @@ -40,7 +43,8 @@ protected sealed override void ProcessRecord() { var cmd = new GenericCommandLineBuilder() .SetCommand(_command) - .SetConnection(Database); + .SetConnection(Database) + .SetLogFileName(this.RootPath(Log)); if (Var != null && Var.Length > 0) { diff --git a/Sources/SqlDatabase.Test/Configuration/GenericCommandLineBuilderTest.cs b/Sources/SqlDatabase.Test/Configuration/GenericCommandLineBuilderTest.cs index e25f0739..41278a45 100644 --- a/Sources/SqlDatabase.Test/Configuration/GenericCommandLineBuilderTest.cs +++ b/Sources/SqlDatabase.Test/Configuration/GenericCommandLineBuilderTest.cs @@ -29,6 +29,7 @@ public void EscapedCommandLine() .SetWhatIf(true) .SetFolderAsModuleName(true) .SetPreFormatOutputLogs(true) + .SetLogFileName("log file") .BuildArray(true); foreach (var arg in escapedArgs) @@ -37,8 +38,11 @@ public void EscapedCommandLine() } CommandLineParser.PreFormatOutputLogs(escapedArgs).ShouldBeTrue(); + CommandLineParser.GetLogFileName(escapedArgs).ShouldBe("log file"); var actual = new CommandLineParser().Parse(escapedArgs); + actual.Args.Count.ShouldBe(9); + actual.Args[0].IsPair.ShouldBe(false); actual.Args[0].Value.ShouldBe("some command"); diff --git a/Sources/SqlDatabase.Test/IntegrationTests/ProgramTest.cs b/Sources/SqlDatabase.Test/IntegrationTests/ProgramTest.cs index d0eae70f..ba476cb9 100644 --- a/Sources/SqlDatabase.Test/IntegrationTests/ProgramTest.cs +++ b/Sources/SqlDatabase.Test/IntegrationTests/ProgramTest.cs @@ -3,7 +3,6 @@ using System.IO; using System.Linq; using Dapper; -using Moq; using NUnit.Framework; using Shouldly; using SqlDatabase.Configuration; @@ -18,9 +17,9 @@ public class ProgramTest { private readonly string _connectionString = new SqlConnectionStringBuilder(Query.ConnectionString) { InitialCatalog = "SqlDatabaseIT" }.ToString(); - private Mock _log; private string _scriptsLocation; private AppConfiguration _configuration; + private TempFile _logFile; [SetUp] public void BeforeEachTest() @@ -35,19 +34,17 @@ public void BeforeEachTest() _configuration = new AppConfiguration(); - _log = new Mock(MockBehavior.Strict); - _log - .Setup(l => l.Error(It.IsAny())) - .Callback(m => - { - Console.WriteLine("Error: {0}", m); - }); - _log - .Setup(l => l.Info(It.IsAny())) - .Callback(m => - { - Console.WriteLine("Info: {0}", m); - }); + _logFile = new TempFile(".log"); + } + + [TearDown] + public void AfterEachTest() + { + FileAssert.Exists(_logFile.Location); + var fileContent = File.ReadAllLines(_logFile.Location); + _logFile.Dispose(); + + fileContent.ShouldNotBeEmpty(); } [Test] @@ -61,6 +58,7 @@ public void CreateDatabase() .SetScripts(Path.Combine(_scriptsLocation, "new")) .SetVariable("JohnCity", "London") .SetVariable("MariaCity", "Paris") + .SetLogFileName(_logFile.Location) .BuildArray(false); Assert.AreEqual(0, Program.Main(args)); @@ -104,6 +102,7 @@ public void UpgradeDatabase() .SetScripts(Path.Combine(_scriptsLocation, "upgrade")) .SetVariable("JohnSecondName", "Smitt") .SetVariable("MariaSecondName", "X") + .SetLogFileName(_logFile.Location) .BuildArray(false); Assert.AreEqual(0, Program.Main(args)); @@ -142,7 +141,8 @@ public void UpgradeDatabaseModularity() .SetCommand(CommandLineFactory.CommandUpgrade) .SetConnection(_connectionString) .SetScripts(Path.Combine(_scriptsLocation, "UpgradeModularity")) - .SetConfigurationFile(Path.Combine(_scriptsLocation, "UpgradeModularity", "SqlDatabase.exe.config")); + .SetConfigurationFile(Path.Combine(_scriptsLocation, "UpgradeModularity", "SqlDatabase.exe.config")) + .SetLogFileName(_logFile.Location); Program.Main(args.BuildArray(false)).ShouldBe(0); @@ -268,7 +268,8 @@ private void InvokeExecuteCommand(Action builder) { var cmd = new GenericCommandLineBuilder() .SetCommand(CommandLineFactory.CommandExecute) - .SetConnection(_connectionString); + .SetConnection(_connectionString) + .SetLogFileName(_logFile.Location); builder(cmd); var args = cmd.BuildArray(false); diff --git a/Sources/SqlDatabase.Test/IntegrationTests/Test.sh b/Sources/SqlDatabase.Test/IntegrationTests/Test.sh index e43d0d70..88a9e1fb 100644 --- a/Sources/SqlDatabase.Test/IntegrationTests/Test.sh +++ b/Sources/SqlDatabase.Test/IntegrationTests/Test.sh @@ -4,28 +4,33 @@ dotnet SqlDatabase.dll create \ "-database=$connectionString" \ -from=$test/New \ -varJohnCity=London \ - -varMariaCity=Paris + -varMariaCity=Paris \ + -log=/create.log echo "----- update database ---" dotnet SqlDatabase.dll upgrade \ "-database=$connectionString" \ -from=$test/Upgrade \ -varJohnSecondName=Smitt \ - -varMariaSecondName=X + -varMariaSecondName=X \ + -log=/upgrade.log echo "----- update database (modularity) ---" dotnet SqlDatabase.dll upgrade \ "-database=$connectionString" \ -from=$test/UpgradeModularity \ - -configuration=$test/UpgradeModularity/SqlDatabase.exe.config + -configuration=$test/UpgradeModularity/SqlDatabase.exe.config \ + -log=/upgrade.log echo "----- export data ---" dotnet SqlDatabase.dll export \ "-database=$connectionString" \ -from=$test/Export/export.sql \ - -toTable=dbo.ExportedData1 + -toTable=dbo.ExportedData1 \ + -log=/export.log echo "----- execute script ---" dotnet SqlDatabase.dll execute \ "-database=$connectionString" \ - -from=$test/execute/drop.database.sql + -from=$test/execute/drop.database.sql \ + -log=/execute.log diff --git a/Sources/SqlDatabase.Test/IntegrationTests/TestGlobalTool.sh b/Sources/SqlDatabase.Test/IntegrationTests/TestGlobalTool.sh index afefb4a2..6fd84632 100644 --- a/Sources/SqlDatabase.Test/IntegrationTests/TestGlobalTool.sh +++ b/Sources/SqlDatabase.Test/IntegrationTests/TestGlobalTool.sh @@ -7,28 +7,33 @@ SqlDatabase create \ "-database=$connectionString" \ -from=$test/New \ -varJohnCity=London \ - -varMariaCity=Paris + -varMariaCity=Paris \ + -log=/create.log echo "----- update database ---" SqlDatabase upgrade \ "-database=$connectionString" \ -from=$test/Upgrade \ -varJohnSecondName=Smitt \ - -varMariaSecondName=X + -varMariaSecondName=X \ + -log=/upgrade.log echo "----- update database (modularity) ---" SqlDatabase upgrade \ "-database=$connectionString" \ -from=$test/UpgradeModularity \ - -configuration=$test/UpgradeModularity/SqlDatabase.exe.config + -configuration=$test/UpgradeModularity/SqlDatabase.exe.config \ + -log=/upgrade.log echo "----- export data ---" SqlDatabase export \ "-database=$connectionString" \ -from=$test/Export/export.sql \ - -toTable=dbo.ExportedData1 + -toTable=dbo.ExportedData1 \ + -log=/export.log echo "----- execute script ---" SqlDatabase execute \ "-database=$connectionString" \ - -from=$test/execute/drop.database.sql + -from=$test/execute/drop.database.sql \ + -log=/execute.log diff --git a/Sources/SqlDatabase.Test/Log/CombinedLoggerTest.cs b/Sources/SqlDatabase.Test/Log/CombinedLoggerTest.cs new file mode 100644 index 00000000..4f5f92b4 --- /dev/null +++ b/Sources/SqlDatabase.Test/Log/CombinedLoggerTest.cs @@ -0,0 +1,100 @@ +using System; +using Moq; +using NUnit.Framework; +using Shouldly; + +namespace SqlDatabase.Log +{ + [TestFixture] + public class CombinedLoggerTest + { + private CombinedLogger _sut; + private Mock _logger1; + private Mock _logger2; + + public interface IDisposableLogger : ILogger, IDisposable + { + } + + [SetUp] + public void BeforeEachTest() + { + _logger1 = new Mock(MockBehavior.Strict); + _logger2 = new Mock(MockBehavior.Strict); + _sut = new CombinedLogger(_logger1.Object, true, _logger2.Object, true); + } + + [Test] + public void Info() + { + _logger1.Setup(l => l.Info("some message")); + _logger2.Setup(l => l.Info("some message")); + + _sut.Info("some message"); + + _logger1.VerifyAll(); + _logger2.VerifyAll(); + } + + [Test] + public void Error() + { + _logger1.Setup(l => l.Error("some message")); + _logger2.Setup(l => l.Error("some message")); + + _sut.Error("some message"); + + _logger1.VerifyAll(); + _logger2.VerifyAll(); + } + + [Test] + public void Indent() + { + var indent1 = new Mock(MockBehavior.Strict); + var indent2 = new Mock(MockBehavior.Strict); + + _logger1 + .Setup(l => l.Indent()) + .Returns(indent1.Object); + _logger2 + .Setup(l => l.Indent()) + .Returns(indent2.Object); + + var actual = _sut.Indent(); + + actual.ShouldNotBeNull(); + _logger1.VerifyAll(); + _logger2.VerifyAll(); + + indent1.Setup(i => i.Dispose()); + indent2.Setup(i => i.Dispose()); + + actual.Dispose(); + + indent1.VerifyAll(); + indent2.VerifyAll(); + } + + [Test] + public void DisposeOwned() + { + _logger1.Setup(l => l.Dispose()); + _logger2.Setup(l => l.Dispose()); + + _sut.Dispose(); + + _logger1.VerifyAll(); + _logger2.VerifyAll(); + } + + [Test] + public void DisposeNotOwned() + { + _sut.OwnLogger1 = false; + _sut.OwnLogger2 = false; + + _sut.Dispose(); + } + } +} diff --git a/Sources/SqlDatabase.Test/Log/FileLoggerTest.cs b/Sources/SqlDatabase.Test/Log/FileLoggerTest.cs new file mode 100644 index 00000000..4687df89 --- /dev/null +++ b/Sources/SqlDatabase.Test/Log/FileLoggerTest.cs @@ -0,0 +1,112 @@ +using System; +using System.IO; +using NUnit.Framework; +using Shouldly; +using SqlDatabase.TestApi; + +namespace SqlDatabase.Log +{ + [TestFixture] + public class FileLoggerTest + { + private TempFile _file; + + [SetUp] + public void BeforeEachTest() + { + _file = new TempFile(".log"); + } + + [TearDown] + public void AfterEachTest() + { + _file?.Dispose(); + } + + [Test] + public void Info() + { + using (var sut = new FileLogger(_file.Location)) + { + sut.Info("some message"); + } + + var actual = File.ReadAllText(_file.Location); + + Console.WriteLine(actual); + actual.ShouldContain(" INFO "); + actual.ShouldContain(" some message"); + } + + [Test] + public void Error() + { + using (var sut = new FileLogger(_file.Location)) + { + sut.Error("some message"); + } + + var actual = File.ReadAllText(_file.Location); + + Console.WriteLine(actual); + actual.ShouldContain(" ERROR "); + actual.ShouldContain(" some message"); + } + + [Test] + public void Append() + { + File.WriteAllLines(_file.Location, new[] { "do not remove" }); + + using (var sut = new FileLogger(_file.Location)) + { + sut.Info("some message"); + sut.Error("some error"); + } + + var actual = File.ReadAllText(_file.Location); + + Console.WriteLine(actual); + actual.ShouldContain("do not remove"); + actual.ShouldContain(" INFO "); + actual.ShouldContain(" some message"); + actual.ShouldContain(" ERROR "); + actual.ShouldContain(" some error"); + } + + [Test] + public void FileIsAvailableForRead() + { + string actual; + using (var sut = new FileLogger(_file.Location)) + { + sut.Info("some message"); + sut.Flush(); + + using (var stream = new FileStream(_file.Location, FileMode.Open, FileAccess.Read, FileShare.ReadWrite)) + using (var reader = new StreamReader(stream)) + { + actual = reader.ReadToEnd(); + } + } + + Console.WriteLine(actual); + actual.ShouldContain(" INFO "); + actual.ShouldContain(" some message"); + } + + [Test] + public void WriteNull() + { + using (var sut = new FileLogger(_file.Location)) + { + sut.Info(null); + } + + var actual = File.ReadAllText(_file.Location); + + Console.WriteLine(actual); + actual.ShouldContain(" INFO "); + } + } +} diff --git a/Sources/SqlDatabase/Configuration/Arg.cs b/Sources/SqlDatabase/Configuration/Arg.cs index e945bdde..d4fee045 100644 --- a/Sources/SqlDatabase/Configuration/Arg.cs +++ b/Sources/SqlDatabase/Configuration/Arg.cs @@ -22,6 +22,7 @@ internal readonly struct Arg internal const string HelpShort = "h"; internal const string PreFormatOutputLogs = "preFormatOutputLogs"; + internal const string Log = "log"; public Arg(string key, string value) { diff --git a/Sources/SqlDatabase/Configuration/CommandLine.create.net452.txt b/Sources/SqlDatabase/Configuration/CommandLine.create.net452.txt index abb35eba..6587255e 100644 --- a/Sources/SqlDatabase/Configuration/CommandLine.create.net452.txt +++ b/Sources/SqlDatabase/Configuration/CommandLine.create.net452.txt @@ -19,6 +19,9 @@ Create a database -configuration: a path to application configuration file. Default is current SqlDatabase.exe.config. -configuration=C:\MyDatabase\sql-database.config + -log: optional path to log file. + -log=C:\Temp\sql-database.log + -whatIf: shows what would happen if the command runs. The command is not run. exit codes: diff --git a/Sources/SqlDatabase/Configuration/CommandLine.create.txt b/Sources/SqlDatabase/Configuration/CommandLine.create.txt index a0f9f345..3a50bcef 100644 --- a/Sources/SqlDatabase/Configuration/CommandLine.create.txt +++ b/Sources/SqlDatabase/Configuration/CommandLine.create.txt @@ -19,6 +19,9 @@ Create a database -configuration: a path to application configuration file. Default is current SqlDatabase.exe.config. -configuration=C:\MyDatabase\sql-database.config + -log: optional path to log file. + -log=C:\Temp\sql-database.log + -usePowerShell: a path to installation of PowerShell Core. PowerShell Core is required in case of running .ps1 scripts. -usePowerShell=C:\Program Files\PowerShell\7 diff --git a/Sources/SqlDatabase/Configuration/CommandLine.execute.net452.txt b/Sources/SqlDatabase/Configuration/CommandLine.execute.net452.txt index f470e541..1fc28e47 100644 --- a/Sources/SqlDatabase/Configuration/CommandLine.execute.net452.txt +++ b/Sources/SqlDatabase/Configuration/CommandLine.execute.net452.txt @@ -26,6 +26,9 @@ Execute script(s) (file) -configuration: path to application configuration file. Default is current SqlDatabase.exe.config. -configuration=C:\MyDatabase\sql-database.config + -log: optional path to log file. + -log=C:\Temp\sql-database.log + -whatIf: shows what would happen if the command runs. The command is not run. exit codes: diff --git a/Sources/SqlDatabase/Configuration/CommandLine.execute.txt b/Sources/SqlDatabase/Configuration/CommandLine.execute.txt index bf53c04c..1eaea4bb 100644 --- a/Sources/SqlDatabase/Configuration/CommandLine.execute.txt +++ b/Sources/SqlDatabase/Configuration/CommandLine.execute.txt @@ -26,6 +26,9 @@ Execute script(s) (file) -configuration: path to application configuration file. Default is current SqlDatabase.exe.config. -configuration=C:\MyDatabase\sql-database.config + -log: optional path to log file. + -log=C:\Temp\sql-database.log + -usePowerShell: a path to installation of PowerShell Core. PowerShell Core is required in case of running .ps1 scripts. -usePowerShell=C:\Program Files\PowerShell\7 diff --git a/Sources/SqlDatabase/Configuration/CommandLine.export.net452.txt b/Sources/SqlDatabase/Configuration/CommandLine.export.net452.txt index 9867b7c4..0e8e5f0e 100644 --- a/Sources/SqlDatabase/Configuration/CommandLine.export.net452.txt +++ b/Sources/SqlDatabase/Configuration/CommandLine.export.net452.txt @@ -28,6 +28,9 @@ Export data from a database to sql script file -configuration: path to application configuration file. Default is current SqlDatabase.exe.config. -configuration=C:\MyDatabase\sql-database.config + -log: optional path to log file. + -log=C:\Temp\sql-database.log + exit codes: 0 - OK 1 - invalid command line diff --git a/Sources/SqlDatabase/Configuration/CommandLine.export.txt b/Sources/SqlDatabase/Configuration/CommandLine.export.txt index 9867b7c4..0e8e5f0e 100644 --- a/Sources/SqlDatabase/Configuration/CommandLine.export.txt +++ b/Sources/SqlDatabase/Configuration/CommandLine.export.txt @@ -28,6 +28,9 @@ Export data from a database to sql script file -configuration: path to application configuration file. Default is current SqlDatabase.exe.config. -configuration=C:\MyDatabase\sql-database.config + -log: optional path to log file. + -log=C:\Temp\sql-database.log + exit codes: 0 - OK 1 - invalid command line diff --git a/Sources/SqlDatabase/Configuration/CommandLine.upgrade.net452.txt b/Sources/SqlDatabase/Configuration/CommandLine.upgrade.net452.txt index d33eeeda..a1a75da2 100644 --- a/Sources/SqlDatabase/Configuration/CommandLine.upgrade.net452.txt +++ b/Sources/SqlDatabase/Configuration/CommandLine.upgrade.net452.txt @@ -20,6 +20,9 @@ Upgrade an existing database -configuration: path to application configuration file. Default is current SqlDatabase.exe.config. -configuration=C:\MyDatabase\sql-database.config + -log: optional path to log file. + -log=C:\Temp\sql-database.log + -whatIf: shows what would happen if the command runs. The command is not run. exit codes: diff --git a/Sources/SqlDatabase/Configuration/CommandLine.upgrade.txt b/Sources/SqlDatabase/Configuration/CommandLine.upgrade.txt index 0de17d64..796affd6 100644 --- a/Sources/SqlDatabase/Configuration/CommandLine.upgrade.txt +++ b/Sources/SqlDatabase/Configuration/CommandLine.upgrade.txt @@ -20,6 +20,9 @@ Upgrade an existing database -configuration: path to application configuration file. Default is current SqlDatabase.exe.config. -configuration=C:\MyDatabase\sql-database.config + -log: optional path to log file. + -log=C:\Temp\sql-database.log + -usePowerShell: a path to installation of PowerShell Core. PowerShell Core is required in case of running .ps1 scripts. -usePowerShell=C:\Program Files\PowerShell\7 diff --git a/Sources/SqlDatabase/Configuration/CommandLineParser.cs b/Sources/SqlDatabase/Configuration/CommandLineParser.cs index 67921f5a..77765a83 100644 --- a/Sources/SqlDatabase/Configuration/CommandLineParser.cs +++ b/Sources/SqlDatabase/Configuration/CommandLineParser.cs @@ -8,9 +8,9 @@ internal sealed class CommandLineParser { public static bool PreFormatOutputLogs(IList args) { - foreach (var arg in args) + for (var i = 0; i < args.Count; i++) { - if (ParseArg(arg, out var value) + if (ParseArg(args[i], out var value) && IsPreFormatOutputLogs(value)) { return string.IsNullOrEmpty(value.Value) || bool.Parse(value.Value); @@ -20,6 +20,20 @@ public static bool PreFormatOutputLogs(IList args) return false; } + public static string GetLogFileName(IList args) + { + for (var i = 0; i < args.Count; i++) + { + if (ParseArg(args[i], out var value) + && IsLog(value)) + { + return value.Value; + } + } + + return null; + } + public CommandLine Parse(params string[] args) { var result = new List(args.Length); @@ -31,7 +45,7 @@ public CommandLine Parse(params string[] args) throw new InvalidCommandLineException("Invalid option [{0}].".FormatWith(arg)); } - if (!IsPreFormatOutputLogs(value)) + if (!IsPreFormatOutputLogs(value) && !IsLog(value)) { result.Add(value); } @@ -42,7 +56,7 @@ public CommandLine Parse(params string[] args) internal static bool ParseArg(string input, out Arg arg) { - arg = default(Arg); + arg = default; if (string.IsNullOrEmpty(input)) { @@ -131,5 +145,12 @@ private static bool IsPreFormatOutputLogs(Arg arg) { return arg.IsPair && Arg.PreFormatOutputLogs.Equals(arg.Key, StringComparison.OrdinalIgnoreCase); } + + private static bool IsLog(Arg arg) + { + return arg.IsPair + && Arg.Log.Equals(arg.Key, StringComparison.OrdinalIgnoreCase) + && !string.IsNullOrWhiteSpace(arg.Value); + } } } diff --git a/Sources/SqlDatabase/Configuration/GenericCommandLine.cs b/Sources/SqlDatabase/Configuration/GenericCommandLine.cs index 6601bc62..5f8a87a1 100644 --- a/Sources/SqlDatabase/Configuration/GenericCommandLine.cs +++ b/Sources/SqlDatabase/Configuration/GenericCommandLine.cs @@ -28,5 +28,7 @@ public sealed class GenericCommandLine public bool WhatIf { get; set; } public bool FolderAsModuleName { get; set; } + + public string LogFileName { get; set; } } } \ No newline at end of file diff --git a/Sources/SqlDatabase/Configuration/GenericCommandLineBuilder.cs b/Sources/SqlDatabase/Configuration/GenericCommandLineBuilder.cs index de2285ca..328250cc 100644 --- a/Sources/SqlDatabase/Configuration/GenericCommandLineBuilder.cs +++ b/Sources/SqlDatabase/Configuration/GenericCommandLineBuilder.cs @@ -115,6 +115,12 @@ public GenericCommandLineBuilder SetFolderAsModuleName(bool value) return this; } + public GenericCommandLineBuilder SetLogFileName(string fileName) + { + Line.LogFileName = fileName; + return this; + } + public GenericCommandLine Build() { return Line; @@ -180,6 +186,11 @@ public string[] BuildArray(bool escaped) result.Add(CombineArg(Arg.FolderAsModuleName, cmd.FolderAsModuleName.ToString(), false)); } + if (!string.IsNullOrEmpty(cmd.LogFileName)) + { + result.Add(CombineArg(Arg.Log, cmd.LogFileName, escaped)); + } + return result.ToArray(); } diff --git a/Sources/SqlDatabase/Log/CombinedLogger.cs b/Sources/SqlDatabase/Log/CombinedLogger.cs new file mode 100644 index 00000000..056cb400 --- /dev/null +++ b/Sources/SqlDatabase/Log/CombinedLogger.cs @@ -0,0 +1,70 @@ +using System; + +namespace SqlDatabase.Log +{ + internal sealed class CombinedLogger : ILogger, IDisposable + { + private readonly ILogger _logger1; + private readonly ILogger _logger2; + + public CombinedLogger(ILogger logger1, bool ownLogger1, ILogger logger2, bool ownLogger2) + { + _logger1 = logger1; + _logger2 = logger2; + OwnLogger1 = ownLogger1; + OwnLogger2 = ownLogger2; + } + + public bool OwnLogger1 { get; set; } + + public bool OwnLogger2 { get; set; } + + public void Error(string message) + { + _logger1?.Error(message); + _logger2?.Error(message); + } + + public void Info(string message) + { + _logger1?.Info(message); + _logger2?.Info(message); + } + + public IDisposable Indent() + { + return new IndentDisposable(_logger1?.Indent(), _logger2?.Indent()); + } + + public void Dispose() + { + if (OwnLogger1) + { + (_logger1 as IDisposable)?.Dispose(); + } + + if (OwnLogger2) + { + (_logger2 as IDisposable)?.Dispose(); + } + } + + private sealed class IndentDisposable : IDisposable + { + private readonly IDisposable _ident1; + private readonly IDisposable _ident2; + + public IndentDisposable(IDisposable ident1, IDisposable ident2) + { + _ident1 = ident1; + _ident2 = ident2; + } + + public void Dispose() + { + _ident1?.Dispose(); + _ident2?.Dispose(); + } + } + } +} diff --git a/Sources/SqlDatabase/Log/FileLogger.cs b/Sources/SqlDatabase/Log/FileLogger.cs new file mode 100644 index 00000000..c4be8349 --- /dev/null +++ b/Sources/SqlDatabase/Log/FileLogger.cs @@ -0,0 +1,63 @@ +using System; +using System.Globalization; +using System.IO; + +namespace SqlDatabase.Log +{ + internal sealed class FileLogger : LoggerBase, IDisposable + { + private readonly FileStream _file; + private readonly StreamWriter _writer; + + public FileLogger(string fileName) + { + var directory = Path.GetDirectoryName(fileName); + if (!string.IsNullOrEmpty(directory) && !Directory.Exists(directory)) + { + Directory.CreateDirectory(directory); + } + + _file = new FileStream(fileName, FileMode.Append, FileAccess.Write, FileShare.Read); + try + { + _file.Seek(0, SeekOrigin.End); + _writer = new StreamWriter(_file); + + if (_file.Length > 0) + { + _writer.WriteLine(); + _writer.WriteLine(); + } + } + catch + { + Dispose(); + throw; + } + } + + public void Dispose() + { + _writer?.Dispose(); + _file?.Dispose(); + } + + internal void Flush() + { + _writer.Flush(); + } + + protected override void WriteError(string message) => WriteLine("ERROR", message); + + protected override void WriteInfo(string message) => WriteLine("INFO", message); + + private void WriteLine(string type, string message) + { + _writer.Write(DateTime.Now.ToString("dd.MM.yyyy HH:mm:ss.fffff", CultureInfo.InvariantCulture)); + _writer.Write(" "); + _writer.Write(type); + _writer.Write(" "); + _writer.WriteLine(message); + } + } +} diff --git a/Sources/SqlDatabase/Program.cs b/Sources/SqlDatabase/Program.cs index 5a05e971..ecc8175d 100644 --- a/Sources/SqlDatabase/Program.cs +++ b/Sources/SqlDatabase/Program.cs @@ -15,6 +15,23 @@ public static int Main(string[] args) } internal static int Run(ILogger logger, string[] args) + { + if (!TryWrapWithUsersLogger(logger, args, out var userLogger)) + { + return ExitCode.InvalidCommandLine; + } + + try + { + return MainCore(userLogger ?? logger, args); + } + finally + { + userLogger?.Dispose(); + } + } + + private static int MainCore(ILogger logger, string[] args) { var factory = ResolveFactory(args, logger); if (factory == null) @@ -95,6 +112,30 @@ private static ILogger CreateLogger(string[] args) LoggerFactory.CreateDefault(); } + private static bool TryWrapWithUsersLogger(ILogger logger, string[] args, out CombinedLogger combined) + { + combined = null; + var fileName = CommandLineParser.GetLogFileName(args); + if (string.IsNullOrEmpty(fileName)) + { + return true; + } + + ILogger fileLogger; + try + { + fileLogger = new FileLogger(fileName); + } + catch (Exception ex) + { + logger.Error("Fail to create file log.", ex); + return false; + } + + combined = new CombinedLogger(logger, false, fileLogger, true); + return true; + } + private static string GetHelpFileName(string commandName) { #if NET452 From bb13e6653242b13d94e830cca906d869dea6b176 Mon Sep 17 00:00:00 2001 From: Max Ieremenko Date: Sat, 3 Apr 2021 16:48:23 +0200 Subject: [PATCH 04/12] clean-up --- Build/notes.txt | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 Build/notes.txt diff --git a/Build/notes.txt b/Build/notes.txt deleted file mode 100644 index cd421312..00000000 --- a/Build/notes.txt +++ /dev/null @@ -1,3 +0,0 @@ -init -cleanup -build \ No newline at end of file From 270c4ac5caae357e591e9f81071538cdb6156252 Mon Sep 17 00:00:00 2001 From: Max Ieremenko Date: Sun, 4 Apr 2021 13:47:43 +0200 Subject: [PATCH 05/12] #10: update docs --- Examples/CreateDatabaseFolder/README.md | 1 + Examples/ExecuteScriptsFolder/README.md | 1 + Examples/ExportData/README.md | 1 + Examples/MigrationStepsFolder/README.md | 1 + 4 files changed, 4 insertions(+) diff --git a/Examples/CreateDatabaseFolder/README.md b/Examples/CreateDatabaseFolder/README.md index a2634d09..e2e59695 100644 --- a/Examples/CreateDatabaseFolder/README.md +++ b/Examples/CreateDatabaseFolder/README.md @@ -24,6 +24,7 @@ CLI |-database|set connection string to target database| |-from|a path to a folder or zip archive with sql scripts or path to a sql script file. Repeat -from to setup several sources.| |-configuration|a path to application configuration file. Default is current [SqlDatabase.exe.config](../ConfigurationFile)| +|-log|optional path to log file| |-var|set a variable in format "=var[name of variable]=[value of variable]"| |-whatIf|shows what would happen if the command runs. The command is not run| diff --git a/Examples/ExecuteScriptsFolder/README.md b/Examples/ExecuteScriptsFolder/README.md index 3353764d..f438bfe1 100644 --- a/Examples/ExecuteScriptsFolder/README.md +++ b/Examples/ExecuteScriptsFolder/README.md @@ -26,6 +26,7 @@ CLI |-from|a path to a folder or zip archive with sql scripts or path to a sql script file. Repeat -from to setup several sources.| |-fromSql|an sql script text. Repeat -fromSql to setup several scripts.| |-configuration|a path to application configuration file. Default is current [SqlDatabase.exe.config](../ConfigurationFile)| +|-log|optional path to log file| |-var|set a variable in format "=var[name of variable]=[value of variable]"| |-whatIf|shows what would happen if the command runs. The command is not run| diff --git a/Examples/ExportData/README.md b/Examples/ExportData/README.md index e9e154f3..25c788b1 100644 --- a/Examples/ExportData/README.md +++ b/Examples/ExportData/README.md @@ -59,6 +59,7 @@ CLI |-toTable|setup "INSERT INTO" table name. Default is dbo.SqlDatabaseExport.| |-toFile|write sql scripts into a file. By default write into standard output (console/information stream).| |-configuration|a path to application configuration file. Default is current [SqlDatabase.exe.config](../ConfigurationFile)| +|-log|optional path to log file| |-var|set a variable in format "=var[name of variable]=[value of variable]"| #### -from diff --git a/Examples/MigrationStepsFolder/README.md b/Examples/MigrationStepsFolder/README.md index a71e05e4..6da55e8a 100644 --- a/Examples/MigrationStepsFolder/README.md +++ b/Examples/MigrationStepsFolder/README.md @@ -27,6 +27,7 @@ CLI |-from|a path to a folder or zip archive with migration steps. Repeat -from to setup several sources.| |-transaction|set transaction mode (none, perStep). Option [none] is default, means no transactions. Option [perStep] means to use one transaction per each migration step| |-configuration|a path to application configuration file. Default is current [SqlDatabase.exe.config](../ConfigurationFile)| +|-log|optional path to log file| |-var|set a variable in format "=var[name of variable]=[value of variable]"| |-whatIf|shows what would happen if the command runs. The command is not run| From 473c250935e28fb1978a9cf603352125bfede850 Mon Sep 17 00:00:00 2001 From: Max Ieremenko Date: Sun, 4 Apr 2021 14:14:10 +0200 Subject: [PATCH 06/12] update docs --- Examples/CreateDatabaseFolder/README.md | 38 ++++++++++--- Examples/ExecuteScriptsFolder/README.md | 73 ++++++++++++++++++------- Examples/MigrationStepsFolder/README.md | 59 +++++++++++++++----- 3 files changed, 130 insertions(+), 40 deletions(-) diff --git a/Examples/CreateDatabaseFolder/README.md b/Examples/CreateDatabaseFolder/README.md index e2e59695..c6966782 100644 --- a/Examples/CreateDatabaseFolder/README.md +++ b/Examples/CreateDatabaseFolder/README.md @@ -105,12 +105,12 @@ Predefined variables |:--|:----------| |DatabaseName|the target database name| - Sql script example ================== +File name 01_database/02_Create.sql + ```sql --- 01_database/02_Create.sql USE master GO @@ -139,9 +139,36 @@ ALTER DATABASE [MyDatabase] SET ALLOW_SNAPSHOT_ISOLATION ON GO ``` +.ps1 script example +============================= + +File name 01_database/02_Create.ps1, see details [here](../PowerShellScript). + +```powershell +param ( + $Command, + $Variables +) + +Write-Information "start execution" + +$Command.CommandText = ("CREATE DATABASE [{0}]" -f $Variables.DatabaseName) +$Command.ExecuteNonQuery() + +$Command.CommandText = ("ALTER DATABASE [{0}] SET RECOVERY SIMPLE WITH NO_WAIT" -f $Variables.DatabaseName) +$Command.ExecuteNonQuery() + +$Command.CommandText = ("ALTER DATABASE [{0}] SET ALLOW_SNAPSHOT_ISOLATION ON" -f $Variables.DatabaseName) +$Command.ExecuteNonQuery() + +Write-Information "finish execution" +``` + Assembly script example ======================= +File name 01_database/02_Create.dll, see details [here](../CSharpMirationStep). + ```C# namespace { @@ -149,22 +176,19 @@ namespace { public void Execute(IDbCommand command, IReadOnlyDictionary variables) { - // write a message to an migration log Console.WriteLine("start execution"); - // execute a query + command.Connection.ChangeDatabase("master") + command.CommandText = string.Format("CREATE DATABASE [{0}]", variables["DatabaseName"]); command.ExecuteNonQuery(); - // execute a query command.CommandText = string.Format("ALTER DATABASE [{0}] SET RECOVERY SIMPLE WITH NO_WAIT", variables["DatabaseName"]); command.ExecuteNonQuery(); - // execute a query command.CommandText = string.Format("ALTER DATABASE [{0}] SET ALLOW_SNAPSHOT_ISOLATION ON", variables["DatabaseName"]); command.ExecuteNonQuery(); - // write a message to a log Console.WriteLine("finish execution"); } } diff --git a/Examples/ExecuteScriptsFolder/README.md b/Examples/ExecuteScriptsFolder/README.md index f438bfe1..b890288e 100644 --- a/Examples/ExecuteScriptsFolder/README.md +++ b/Examples/ExecuteScriptsFolder/README.md @@ -107,27 +107,63 @@ Predefined variables |:--|:----------| |DatabaseName|the target database name| - Sql script example ============================= + +File name 02_demo.Department.sql + ```sql --- 2.0_2.1.sql -PRINT 'create table Demo' +PRINT 'create table demo.Department' GO -CREATE TABLE dbo.Demo +CREATE TABLE demo.Department ( - Id INT NOT NULL + Id INT NOT NULL IDENTITY(1, 1) + ,Name NVARCHAR(300) NOT NULL ) GO -ALTER TABLE dbo.Demo ADD CONSTRAINT PK_Demo PRIMARY KEY CLUSTERED (Id) +ALTER TABLE demo.Department ADD CONSTRAINT PK_Department PRIMARY KEY CLUSTERED (Id) +GO + +CREATE NONCLUSTERED INDEX IX_Department_Name ON demo.Department (Name) GO ``` +.ps1 script example +============================= + +File name 02_demo.Department.ps1, see details [here](../PowerShellScript). + +```powershell +param ( + $Command, + $Variables +) + +Write-Information "create table demo.Department" + +$Command.CommandText = @" +CREATE TABLE demo.Department +( + Id INT NOT NULL IDENTITY(1, 1) + ,Name NVARCHAR(300) NOT NULL +) +"@ +$Command.ExecuteNonQuery() + +$Command.CommandText = "ALTER TABLE demo.Department ADD CONSTRAINT PK_Department PRIMARY KEY CLUSTERED (Id)" +$Command.ExecuteNonQuery() + +$Command.CommandText = "CREATE NONCLUSTERED INDEX IX_Department_Name ON demo.Department (Name)" +$Command.ExecuteNonQuery() +``` + Assembly script example ======================= +File name 02_demo.Department.dll, see details [here](../CSharpMirationStep). + ```C# namespace { @@ -135,23 +171,22 @@ namespace { public void Execute(IDbCommand command, IReadOnlyDictionary variables) { - // write a message to an migration log - Console.WriteLine("start execution"); + Console.WriteLine("create table demo.Department"); - // execute a query - command.CommandText = "create table Demo"); + command.CommandText = @" +CREATE TABLE demo.Department +( + Id INT NOT NULL IDENTITY(1, 1) + ,Name NVARCHAR(300) NOT NULL +) + "; command.ExecuteNonQuery(); - - // execute a query - command.CommandText = 'CREATE TABLE dbo.Demo ( Id INT NOT NULL )'; + + command.CommandText = 'ALTER TABLE demo.Department ADD CONSTRAINT PK_Department PRIMARY KEY CLUSTERED (Id)'; command.ExecuteNonQuery(); - - // execute a query - command.CommandText = 'ALTER TABLE dbo.Demo ADD CONSTRAINT PK_Demo PRIMARY KEY CLUSTERED (Id)'; + + command.CommandText = 'CREATE NONCLUSTERED INDEX IX_Department_Name ON demo.Department (Name)'; command.ExecuteNonQuery(); - - // write a message to a log - Console.WriteLine("finish execution"); } } } diff --git a/Examples/MigrationStepsFolder/README.md b/Examples/MigrationStepsFolder/README.md index 6da55e8a..1f2a19f0 100644 --- a/Examples/MigrationStepsFolder/README.md +++ b/Examples/MigrationStepsFolder/README.md @@ -96,11 +96,12 @@ Predefined variables |TargetVersion|the database version after execution of current migration step| |ModuleName|the module name of current migration step, empty string in case of straight forward upgrade| - Migration .sql step example ============================= + +File name 2.0_2.1.sql + ```sql --- 2.0_2.1.sql PRINT 'create table Demo' GO @@ -110,13 +111,46 @@ CREATE TABLE dbo.Demo ) GO +PRINT 'create primary key PK_Demo' +GO + ALTER TABLE dbo.Demo ADD CONSTRAINT PK_Demo PRIMARY KEY CLUSTERED (Id) GO ``` +Migration .ps1 step example +============================= + +File name 2.0_2.1.ps1, see details [here](../PowerShellScript). + +```powershell +param ( + $Command, + $Variables +) + +Write-Information "create table Demo" + +$Command.CommandText = @" +CREATE TABLE dbo.Demo +( + Id INT NOT NULL +) +"@ +$Command.ExecuteNonQuery() + +Write-Information "create primary key PK_Demo" + +$Command.CommandText = "ALTER TABLE dbo.Demo ADD CONSTRAINT PK_Demo PRIMARY KEY CLUSTERED (Id)" +$Command.ExecuteNonQuery() + +``` + Migration .dll step example ======================= +File name 2.1_2.2.dll, see details [here](../CSharpMirationStep). + ```C# namespace { @@ -124,23 +158,20 @@ namespace { public void Execute(IDbCommand command, IReadOnlyDictionary variables) { - // write a message to an migration log - Console.WriteLine("start execution"); + Console.WriteLine("create table Demo"); - // execute a query - command.CommandText = "create table Demo"); + command.CommandText = @" +CREATE TABLE dbo.Demo +( + Id INT NOT NULL +) + "; command.ExecuteNonQuery(); + + Console.WriteLine("create primary key PK_Demo"); - // execute a query command.CommandText = 'CREATE TABLE dbo.Demo ( Id INT NOT NULL )'; command.ExecuteNonQuery(); - - // execute a query - command.CommandText = 'ALTER TABLE dbo.Demo ADD CONSTRAINT PK_Demo PRIMARY KEY CLUSTERED (Id)'; - command.ExecuteNonQuery(); - - // write a message to a log - Console.WriteLine("finish execution"); } } } From 8a06a4eed4a3ab2101d6d657d95d26f803e56af4 Mon Sep 17 00:00:00 2001 From: Max Ieremenko Date: Sun, 4 Apr 2021 14:31:08 +0200 Subject: [PATCH 07/12] fix typo --- Examples/CreateDatabaseFolder/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Examples/CreateDatabaseFolder/README.md b/Examples/CreateDatabaseFolder/README.md index c6966782..444aedc5 100644 --- a/Examples/CreateDatabaseFolder/README.md +++ b/Examples/CreateDatabaseFolder/README.md @@ -152,6 +152,8 @@ param ( Write-Information "start execution" +$Command.Connection.ChangeDatabase("master") + $Command.CommandText = ("CREATE DATABASE [{0}]" -f $Variables.DatabaseName) $Command.ExecuteNonQuery() @@ -178,7 +180,7 @@ namespace { Console.WriteLine("start execution"); - command.Connection.ChangeDatabase("master") + command.Connection.ChangeDatabase("master"); command.CommandText = string.Format("CREATE DATABASE [{0}]", variables["DatabaseName"]); command.ExecuteNonQuery(); From 091e1016e10822bcd1f28cb212d91e6397ae50e5 Mon Sep 17 00:00:00 2001 From: Max Ieremenko Date: Sun, 4 Apr 2021 14:31:51 +0200 Subject: [PATCH 08/12] Domain agent release console redirection --- .../Scripts/AssemblyInternal/Net452/DomainAgent.cs | 5 +++++ .../Scripts/AssemblyInternal/Net452/Net452SubDomain.cs | 2 ++ 2 files changed, 7 insertions(+) diff --git a/Sources/SqlDatabase/Scripts/AssemblyInternal/Net452/DomainAgent.cs b/Sources/SqlDatabase/Scripts/AssemblyInternal/Net452/DomainAgent.cs index ab865d40..1e28f979 100644 --- a/Sources/SqlDatabase/Scripts/AssemblyInternal/Net452/DomainAgent.cs +++ b/Sources/SqlDatabase/Scripts/AssemblyInternal/Net452/DomainAgent.cs @@ -53,6 +53,11 @@ public bool Execute(IDbCommand command, IReadOnlyDictionary vari return EntryPoint.Execute(command, variables); } + public void BeforeUnload() + { + _consoleRedirect?.Dispose(); + } + private Assembly OnAssemblyResolve(object sender, ResolveEventArgs args) { var sqlDataBase = GetType().Assembly; diff --git a/Sources/SqlDatabase/Scripts/AssemblyInternal/Net452/Net452SubDomain.cs b/Sources/SqlDatabase/Scripts/AssemblyInternal/Net452/Net452SubDomain.cs index 1dfbbfae..5009005a 100644 --- a/Sources/SqlDatabase/Scripts/AssemblyInternal/Net452/Net452SubDomain.cs +++ b/Sources/SqlDatabase/Scripts/AssemblyInternal/Net452/Net452SubDomain.cs @@ -42,6 +42,8 @@ public void Initialize() public void Unload() { + _appAgent?.BeforeUnload(); + if (_app != null) { AppDomain.Unload(_app); From 7bdb64b6605146b6e4a1fb04f02ab7d3be7f0886 Mon Sep 17 00:00:00 2001 From: Max Ieremenko Date: Sun, 4 Apr 2021 14:42:42 +0200 Subject: [PATCH 09/12] command execute: fix command.Transaction --- .../SqlDatabase.Test/Scripts/DatabaseTest.cs | 73 +++++++++++++++++++ Sources/SqlDatabase/Scripts/Database.cs | 1 + 2 files changed, 74 insertions(+) diff --git a/Sources/SqlDatabase.Test/Scripts/DatabaseTest.cs b/Sources/SqlDatabase.Test/Scripts/DatabaseTest.cs index e9cc6a95..b590161a 100644 --- a/Sources/SqlDatabase.Test/Scripts/DatabaseTest.cs +++ b/Sources/SqlDatabase.Test/Scripts/DatabaseTest.cs @@ -121,6 +121,7 @@ public void ExecuteUpgradeTransactionPerStepValidateCommand() }); _sut.Execute(script.Object, string.Empty, new Version("1.0"), new Version("1.0")); + script.VerifyAll(); } @@ -256,6 +257,78 @@ public void SqlOutputIntoLog() script.VerifyAll(); } + [Test] + public void ExecuteNoTransactionValidateCommand() + { + var script = new Mock(MockBehavior.Strict); + script + .Setup(s => s.Execute(It.IsNotNull(), It.IsNotNull(), It.IsNotNull())) + .Callback((cmd, _, s) => + { + cmd.CommandTimeout.ShouldBe(0); + cmd.Transaction.ShouldBeNull(); + cmd.CommandType.ShouldBe(CommandType.Text); + cmd.Connection.ShouldNotBeNull(); + cmd.Connection.State.ShouldBe(ConnectionState.Open); + + cmd.CommandText = "select DB_NAME()"; + cmd.ExecuteScalar().ShouldBeOfType().ShouldBe(Query.DatabaseName, StringCompareShould.IgnoreCase); + }); + + _sut.Execute(script.Object); + + script.VerifyAll(); + } + + [Test] + public void ExecuteTransactionPerStepValidateCommand() + { + var script = new Mock(MockBehavior.Strict); + script + .Setup(s => s.Execute(It.IsNotNull(), It.IsNotNull(), It.IsNotNull())) + .Callback((cmd, _, s) => + { + cmd.CommandTimeout.ShouldBe(0); + cmd.Transaction.ShouldNotBeNull(); + cmd.CommandType.ShouldBe(CommandType.Text); + cmd.Connection.ShouldNotBeNull(); + cmd.Connection.State.ShouldBe(ConnectionState.Open); + + cmd.CommandText = "select DB_NAME()"; + cmd.ExecuteScalar().ShouldBeOfType().ShouldBe(Query.DatabaseName, StringCompareShould.IgnoreCase); + }); + + _sut.Transaction = TransactionMode.PerStep; + _sut.Execute(script.Object); + + script.VerifyAll(); + } + + [Test] + public void ExecuteTransactionPerStepRollbackOnError() + { + var script = new Mock(MockBehavior.Strict); + script + .Setup(s => s.Execute(It.IsNotNull(), It.IsNotNull(), It.IsNotNull())) + .Callback((cmd, _, s) => + { + cmd.CommandText = "create table dbo.t1( Id INT )"; + cmd.ExecuteNonQuery(); + + throw new InvalidOperationException(); + }); + + _sut.Transaction = TransactionMode.PerStep; + Assert.Throws(() => _sut.Execute(script.Object)); + + script.VerifyAll(); + + using (var c = Query.Open()) + { + Assert.IsNull(c.ExecuteScalar("select OBJECT_ID('dbo.t1')")); + } + } + [Test] public void ExecuteSetTargetDatabase() { diff --git a/Sources/SqlDatabase/Scripts/Database.cs b/Sources/SqlDatabase/Scripts/Database.cs index eefe5512..101a15d0 100644 --- a/Sources/SqlDatabase/Scripts/Database.cs +++ b/Sources/SqlDatabase/Scripts/Database.cs @@ -229,6 +229,7 @@ private void InvokeExecute(IScript script) { using (var command = connection.CreateCommand()) { + command.Transaction = transaction; command.CommandTimeout = 0; script.Execute(command, Variables, Log); } From 75393f02d36e5f1e63644b8216803934db6ce800 Mon Sep 17 00:00:00 2001 From: Max Ieremenko Date: Sun, 4 Apr 2021 14:52:11 +0200 Subject: [PATCH 10/12] update dependencies - Microsoft.NET.Test.Sdk 16.9.1 => 16.9.4 - Newtonsoft.Json 12.0.3 => 13.0.1 - StyleCop.Analyzers.Unstable 1.2.0.321 => 1.2.0.333 --- Sources/Directory.Build.props | 2 +- .../SqlDatabase.PowerShell.Test.csproj | 2 +- Sources/SqlDatabase.Test/SqlDatabase.Test.csproj | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Sources/Directory.Build.props b/Sources/Directory.Build.props index 272cf166..4f7746fd 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 bf44d5ed..68d25c6f 100644 --- a/Sources/SqlDatabase.PowerShell.Test/SqlDatabase.PowerShell.Test.csproj +++ b/Sources/SqlDatabase.PowerShell.Test/SqlDatabase.PowerShell.Test.csproj @@ -10,7 +10,7 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/Sources/SqlDatabase.Test/SqlDatabase.Test.csproj b/Sources/SqlDatabase.Test/SqlDatabase.Test.csproj index e86af5f7..16f5aa86 100644 --- a/Sources/SqlDatabase.Test/SqlDatabase.Test.csproj +++ b/Sources/SqlDatabase.Test/SqlDatabase.Test.csproj @@ -9,9 +9,9 @@ - + - + From 18a6e328a54be7db05f8cef1380859681f4b7c0e Mon Sep 17 00:00:00 2001 From: Max Ieremenko Date: Sun, 4 Apr 2021 16:09:41 +0200 Subject: [PATCH 11/12] build, pack: generate ThirdPartyNotices.txt --- .gitignore | 1 - Build/README.md | 1 + Build/build-tasks.ps1 | 26 +- Build/build-tasks.third-party.ps1 | 48 ++ .../configuration/appsettings.json | 69 ++ .../nuget.org-readme-template.txt | 39 + .../configuration/readme-template.txt | 31 + .../third-party-notices-template.txt | 20 + .../licenses/apache-2.0/index.json | 9 + .../licenses/apache-2.0/license.txt | 73 ++ .../licenses/bsd-2-clause/index.json | 9 + .../licenses/bsd-2-clause/license.txt | 9 + .../licenses/bsd-3-clause/index.json | 9 + .../licenses/bsd-3-clause/license.txt | 11 + .../licenses/mit/index.json | 9 + .../licenses/mit/license.txt | 9 + .../licenses/ms-net-library/index.json | 9 + .../licenses/ms-net-library/license.html | 744 ++++++++++++++++++ .../nuget.org/castle.core/4.4.0/index.json | 64 ++ .../castle.core/4.4.0/package-LICENSE | 13 + .../castle.core/4.4.0/package.nuspec | 49 ++ .../nuget.org/castle.core/4.4.0/readme.md | 35 + .../nuget.org/castle.core/4.4.0/remarks.md | 0 .../castle.core/4.4.0/repository-LICENSE | 13 + .../castle.core/4.4.0/third-party-notices.txt | 0 .../dapper.strongname/2.0.78/index.json | 38 + .../dapper.strongname/2.0.78/package.nuspec | 26 + .../2.0.78/project-License.txt | 1 + .../dapper.strongname/2.0.78/readme.md | 27 + .../dapper.strongname/2.0.78/remarks.md | 0 .../2.0.78/repository-License.txt | 1 + .../2.0.78/third-party-notices.txt | 0 .../nuget.org/diffengine/6.4.9/index.json | 44 ++ .../nuget.org/diffengine/6.4.9/package.nuspec | 34 + .../diffengine/6.4.9/project-license.txt | 21 + .../nuget.org/diffengine/6.4.9/readme.md | 30 + .../nuget.org/diffengine/6.4.9/remarks.md | 0 .../diffengine/6.4.9/repository-license.txt | 21 + .../diffengine/6.4.9/third-party-notices.txt | 0 .../nuget.org/emptyfiles/2.3.3/index.json | 38 + .../nuget.org/emptyfiles/2.3.3/package.nuspec | 21 + .../emptyfiles/2.3.3/project-license.txt | 21 + .../nuget.org/emptyfiles/2.3.3/readme.md | 27 + .../nuget.org/emptyfiles/2.3.3/remarks.md | 0 .../emptyfiles/2.3.3/repository-license.txt | 21 + .../emptyfiles/2.3.3/third-party-notices.txt | 0 .../microsoft.codecoverage/16.9.4/index.json | 38 + .../16.9.4/package-LICENSE_NET.txt | 65 ++ .../16.9.4/package.nuspec | 24 + .../16.9.4/project-LICENSE | 19 + .../microsoft.codecoverage/16.9.4/readme.md | 27 + .../microsoft.codecoverage/16.9.4/remarks.md | 0 .../16.9.4/repository-LICENSE | 19 + .../16.9.4/third-party-notices.txt | 0 .../1.0.0/index.json | 40 + .../1.0.0/package.nuspec | 26 + .../1.0.0/readme.md | 30 + .../1.0.0/remarks.md | 0 .../1.0.0/third-party-notices.txt | 0 .../microsoft.net.test.sdk/16.9.4/index.json | 48 ++ .../16.9.4/package-LICENSE_NET.txt | 65 ++ .../16.9.4/package.nuspec | 40 + .../16.9.4/project-LICENSE | 19 + .../microsoft.net.test.sdk/16.9.4/readme.md | 31 + .../microsoft.net.test.sdk/16.9.4/remarks.md | 0 .../16.9.4/repository-LICENSE | 19 + .../16.9.4/third-party-notices.txt | 0 .../microsoft.netcore.app/2.2.0/index.json | 34 + .../2.2.0/package-LICENSE.txt | 22 + .../2.2.0/package.nuspec | 28 + .../microsoft.netcore.app/2.2.0/readme.md | 28 + .../microsoft.netcore.app/2.2.0/remarks.md | 0 .../2.2.0/third-party-notices.txt | 0 .../16.9.4/index.json | 48 ++ .../16.9.4/package-LICENSE_NET.txt | 65 ++ .../16.9.4/package.nuspec | 71 ++ .../16.9.4/project-LICENSE | 19 + .../16.9.4/readme.md | 31 + .../16.9.4/remarks.md | 0 .../16.9.4/repository-LICENSE | 19 + .../16.9.4/third-party-notices.txt | 0 .../16.9.4/index.json | 48 ++ .../16.9.4/package-LICENSE_NET.txt | 65 ++ .../16.9.4/package.nuspec | 43 + .../16.9.4/project-LICENSE | 19 + .../16.9.4/readme.md | 31 + .../16.9.4/remarks.md | 0 .../16.9.4/repository-LICENSE | 19 + .../16.9.4/third-party-notices.txt | 0 .../microsoft.win32.registry/4.5.0/index.json | 43 + .../4.5.0/package-LICENSE.txt | 23 + .../4.5.0/package.nuspec | 91 +++ .../microsoft.win32.registry/4.5.0/readme.md | 40 + .../microsoft.win32.registry/4.5.0/remarks.md | 0 .../4.5.0/third-party-notices.txt | 0 .../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 | 33 + .../7.0.5/package-LICENSE.txt | 21 + .../7.0.5/package.nuspec | 23 + .../7.0.5/project-LICENSE.txt | 21 + .../microsoft.wsman.runtime/7.0.5/readme.md | 26 + .../microsoft.wsman.runtime/7.0.5/remarks.md | 0 .../7.0.5/third-party-notices.txt | 0 .../microsoft.wsman.runtime/7.1.2/index.json | 33 + .../7.1.2/package.nuspec | 24 + .../7.1.2/project-LICENSE.txt | 21 + .../microsoft.wsman.runtime/7.1.2/readme.md | 26 + .../microsoft.wsman.runtime/7.1.2/remarks.md | 0 .../7.1.2/third-party-notices.txt | 0 .../packages/nuget.org/moq/4.16.1/index.json | 44 ++ .../nuget.org/moq/4.16.1/package-License.txt | 29 + .../nuget.org/moq/4.16.1/package.nuspec | 33 + .../nuget.org/moq/4.16.1/project-License.txt | 29 + .../packages/nuget.org/moq/4.16.1/readme.md | 32 + .../packages/nuget.org/moq/4.16.1/remarks.md | 0 .../moq/4.16.1/repository-License.txt | 29 + .../moq/4.16.1/third-party-notices.txt | 0 .../netstandard.library/2.0.3/index.json | 33 + .../2.0.3/package-LICENSE.txt | 23 + .../netstandard.library/2.0.3/package.nuspec | 399 ++++++++++ .../netstandard.library/2.0.3/readme.md | 28 + .../netstandard.library/2.0.3/remarks.md | 0 .../2.0.3/third-party-notices.txt | 0 .../newtonsoft.json/13.0.1/index.json | 38 + .../newtonsoft.json/13.0.1/package-LICENSE.md | 20 + .../newtonsoft.json/13.0.1/package.nuspec | 39 + .../newtonsoft.json/13.0.1/readme.md | 27 + .../newtonsoft.json/13.0.1/remarks.md | 0 .../13.0.1/repository-LICENSE.md | 20 + .../13.0.1/third-party-notices.txt | 0 .../nuget.frameworks/5.0.0/index.json | 38 + .../nuget.frameworks/5.0.0/package.nuspec | 24 + .../nuget.frameworks/5.0.0/readme.md | 27 + .../nuget.frameworks/5.0.0/remarks.md | 0 .../5.0.0/repository-LICENSE.txt | 15 + .../5.0.0/third-party-notices.txt | 0 .../nuget.org/nunit/3.13.1/index.json | 38 + .../nunit/3.13.1/package-LICENSE.txt | 20 + .../nuget.org/nunit/3.13.1/package.nuspec | 37 + .../packages/nuget.org/nunit/3.13.1/readme.md | 33 + .../nuget.org/nunit/3.13.1/remarks.md | 0 .../nunit/3.13.1/repository-LICENSE.txt | 20 + .../nunit/3.13.1/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/3.17.0/remarks.md | 0 .../3.17.0/repository-LICENSE | 22 + .../3.17.0/third-party-notices.txt | 0 .../5.1.0/index.json | 34 + .../5.1.0/package-LICENSE.txt | 21 + .../5.1.0/package.nuspec | 19 + .../5.1.0/project-LICENSE.txt | 21 + .../5.1.0/readme.md | 26 + .../5.1.0/remarks.md | 0 .../5.1.0/third-party-notices.txt | 0 .../nuget.org/shouldly/4.0.3/index.json | 48 ++ .../nuget.org/shouldly/4.0.3/package.nuspec | 25 + .../shouldly/4.0.3/project-LICENSE.txt | 24 + .../nuget.org/shouldly/4.0.3/readme.md | 31 + .../nuget.org/shouldly/4.0.3/remarks.md | 0 .../shouldly/4.0.3/repository-LICENSE.txt | 24 + .../shouldly/4.0.3/third-party-notices.txt | 0 .../1.2.0.333/index.json | 34 + .../1.2.0.333/package-LICENSE | 21 + .../1.2.0.333/package.nuspec | 19 + .../1.2.0.333/project-LICENSE | 21 + .../1.2.0.333/readme.md | 26 + .../1.2.0.333/remarks.md | 0 .../1.2.0.333/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 .../nuget.org/system.buffers/4.4.0/index.json | 33 + .../system.buffers/4.4.0/package-LICENSE.txt | 23 + .../system.buffers/4.4.0/package.nuspec | 37 + .../nuget.org/system.buffers/4.4.0/readme.md | 32 + .../nuget.org/system.buffers/4.4.0/remarks.md | 0 .../4.4.0/third-party-notices.txt | 0 .../nuget.org/system.buffers/4.5.1/index.json | 32 + .../system.buffers/4.5.1/package-LICENSE.txt | 23 + .../system.buffers/4.5.1/package.nuspec | 45 ++ .../nuget.org/system.buffers/4.5.1/readme.md | 32 + .../nuget.org/system.buffers/4.5.1/remarks.md | 0 .../4.5.1/third-party-notices.txt | 0 .../4.3.0/index.json | 38 + .../4.3.0/package.nuspec | 53 ++ .../4.3.0/readme.md | 43 + .../4.3.0/remarks.md | 0 .../4.3.0/third-party-notices.txt | 0 .../4.3.0/index.json | 42 + .../4.3.0/package.nuspec | 53 ++ .../4.3.0/readme.md | 43 + .../4.3.0/remarks.md | 0 .../4.3.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 | 38 + .../4.3.0/package.nuspec | 47 ++ .../4.3.0/readme.md | 37 + .../4.3.0/remarks.md | 0 .../4.3.0/third-party-notices.txt | 0 .../4.3.0/index.json | 62 ++ .../4.3.0/package.nuspec | 92 +++ .../4.3.0/readme.md | 49 ++ .../4.3.0/remarks.md | 0 .../4.3.0/third-party-notices.txt | 0 .../system.componentmodel/4.3.0/index.json | 32 + .../4.3.0/package.nuspec | 52 ++ .../system.componentmodel/4.3.0/readme.md | 35 + .../system.componentmodel/4.3.0/remarks.md | 0 .../4.3.0/third-party-notices.txt | 0 .../4.5.0/index.json | 43 + .../4.5.0/package-LICENSE.txt | 23 + .../4.5.0/package.nuspec | 59 ++ .../4.5.0/readme.md | 37 + .../4.5.0/remarks.md | 0 .../4.5.0/third-party-notices.txt | 0 .../system.data.sqlclient/4.5.1/index.json | 47 ++ .../4.5.1/package-LICENSE.txt | 23 + .../4.5.1/package.nuspec | 112 +++ .../system.data.sqlclient/4.5.1/readme.md | 45 ++ .../system.data.sqlclient/4.5.1/remarks.md | 0 .../4.5.1/third-party-notices.txt | 0 .../4.5.0/index.json | 33 + .../4.5.0/package-LICENSE.txt | 23 + .../4.5.0/package.nuspec | 55 ++ .../4.5.0/readme.md | 33 + .../4.5.0/remarks.md | 0 .../4.5.0/third-party-notices.txt | 0 .../system.dynamic.runtime/4.3.0/index.json | 54 ++ .../4.3.0/package.nuspec | 84 ++ .../system.dynamic.runtime/4.3.0/readme.md | 47 ++ .../system.dynamic.runtime/4.3.0/remarks.md | 0 .../4.3.0/third-party-notices.txt | 0 .../4.3.0/index.json | 32 + .../4.3.0/package.nuspec | 44 ++ .../4.3.0/readme.md | 37 + .../4.3.0/remarks.md | 0 .../4.3.0/third-party-notices.txt | 0 .../system.linq.expressions/4.3.0/index.json | 50 ++ .../4.3.0/package.nuspec | 90 +++ .../system.linq.expressions/4.3.0/readme.md | 41 + .../system.linq.expressions/4.3.0/remarks.md | 0 .../4.3.0/third-party-notices.txt | 0 .../nuget.org/system.linq/4.3.0/index.json | 32 + .../system.linq/4.3.0/package.nuspec | 64 ++ .../nuget.org/system.linq/4.3.0/readme.md | 35 + .../nuget.org/system.linq/4.3.0/remarks.md | 0 .../system.linq/4.3.0/third-party-notices.txt | 0 .../nuget.org/system.memory/4.5.1/index.json | 47 ++ .../system.memory/4.5.1/package-LICENSE.txt | 23 + .../system.memory/4.5.1/package.nuspec | 95 +++ .../nuget.org/system.memory/4.5.1/readme.md | 44 ++ .../nuget.org/system.memory/4.5.1/remarks.md | 0 .../4.5.1/third-party-notices.txt | 0 .../nuget.org/system.memory/4.5.4/index.json | 46 ++ .../system.memory/4.5.4/package-LICENSE.txt | 23 + .../system.memory/4.5.4/package.nuspec | 105 +++ .../nuget.org/system.memory/4.5.4/readme.md | 44 ++ .../nuget.org/system.memory/4.5.4/remarks.md | 0 .../4.5.4/third-party-notices.txt | 0 .../system.numerics.vectors/4.4.0/index.json | 33 + .../4.4.0/package-LICENSE.txt | 23 + .../4.4.0/package.nuspec | 50 ++ .../system.numerics.vectors/4.4.0/readme.md | 39 + .../system.numerics.vectors/4.4.0/remarks.md | 0 .../4.4.0/third-party-notices.txt | 0 .../system.numerics.vectors/4.5.0/index.json | 32 + .../4.5.0/package-LICENSE.txt | 23 + .../4.5.0/package.nuspec | 56 ++ .../system.numerics.vectors/4.5.0/readme.md | 39 + .../system.numerics.vectors/4.5.0/remarks.md | 0 .../4.5.0/third-party-notices.txt | 0 .../system.objectmodel/4.3.0/index.json | 38 + .../system.objectmodel/4.3.0/package.nuspec | 65 ++ .../system.objectmodel/4.3.0/readme.md | 43 + .../system.objectmodel/4.3.0/remarks.md | 0 .../4.3.0/third-party-notices.txt | 0 .../1.6.0/index.json | 32 + .../1.6.0/package-LICENSE.txt | 23 + .../1.6.0/package.nuspec | 51 ++ .../1.6.0/readme.md | 36 + .../1.6.0/remarks.md | 0 .../1.6.0/third-party-notices.txt | 0 .../4.3.0/index.json | 32 + .../4.3.0/package.nuspec | 58 ++ .../4.3.0/readme.md | 32 + .../4.3.0/remarks.md | 0 .../4.3.0/third-party-notices.txt | 0 .../4.5.0/index.json | 33 + .../4.5.0/package-LICENSE.txt | 23 + .../4.5.0/package.nuspec | 37 + .../4.5.0/readme.md | 32 + .../4.5.0/remarks.md | 0 .../4.5.0/third-party-notices.txt | 0 .../4.5.3/index.json | 32 + .../4.5.3/package-LICENSE.txt | 23 + .../4.5.3/package.nuspec | 40 + .../4.5.3/readme.md | 32 + .../4.5.3/remarks.md | 0 .../4.5.3/third-party-notices.txt | 0 .../4.3.0/index.json | 38 + .../4.3.0/package.nuspec | 52 ++ .../4.3.0/readme.md | 35 + .../4.3.0/remarks.md | 0 .../4.3.0/third-party-notices.txt | 0 .../system.runtime.loader/4.3.0/index.json | 33 + .../4.3.0/package.nuspec | 37 + .../system.runtime.loader/4.3.0/readme.md | 31 + .../system.runtime.loader/4.3.0/remarks.md | 0 .../4.3.0/third-party-notices.txt | 0 .../4.5.0/index.json | 39 + .../4.5.0/package-LICENSE.txt | 23 + .../4.5.0/package.nuspec | 53 ++ .../4.5.0/readme.md | 39 + .../4.5.0/remarks.md | 0 .../4.5.0/third-party-notices.txt | 0 .../4.5.0/index.json | 33 + .../4.5.0/package-LICENSE.txt | 23 + .../4.5.0/package.nuspec | 49 ++ .../4.5.0/readme.md | 33 + .../4.5.0/remarks.md | 0 .../4.5.0/third-party-notices.txt | 0 .../4.5.0/index.json | 39 + .../4.5.0/package-LICENSE.txt | 23 + .../4.5.0/package.nuspec | 39 + .../4.5.0/readme.md | 31 + .../4.5.0/remarks.md | 0 .../4.5.0/third-party-notices.txt | 0 .../4.5.0/index.json | 33 + .../4.5.0/package-LICENSE.txt | 23 + .../4.5.0/package.nuspec | 62 ++ .../4.5.0/readme.md | 39 + .../4.5.0/remarks.md | 0 .../4.5.0/third-party-notices.txt | 0 .../4.5.0/index.json | 39 + .../4.5.0/package-LICENSE.txt | 23 + .../4.5.0/package.nuspec | 47 ++ .../4.5.0/readme.md | 35 + .../4.5.0/remarks.md | 0 .../4.5.0/third-party-notices.txt | 0 .../4.3.0/index.json | 32 + .../4.3.0/package.nuspec | 72 ++ .../4.3.0/readme.md | 36 + .../4.3.0/remarks.md | 0 .../4.3.0/third-party-notices.txt | 0 .../4.5.4/index.json | 38 + .../4.5.4/package-LICENSE.txt | 23 + .../4.5.4/package.nuspec | 62 ++ .../4.5.4/readme.md | 34 + .../4.5.4/remarks.md | 0 .../4.5.4/third-party-notices.txt | 0 .../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 .../system.threading/4.3.0/index.json | 32 + .../system.threading/4.3.0/package.nuspec | 59 ++ .../system.threading/4.3.0/readme.md | 38 + .../system.threading/4.3.0/remarks.md | 0 .../4.3.0/third-party-notices.txt | 0 .../system.xml.readerwriter/4.3.0/index.json | 42 + .../4.3.0/package.nuspec | 90 +++ .../system.xml.readerwriter/4.3.0/readme.md | 43 + .../system.xml.readerwriter/4.3.0/remarks.md | 0 .../4.3.0/third-party-notices.txt | 0 .../system.xml.xmldocument/4.3.0/index.json | 42 + .../4.3.0/package.nuspec | 57 ++ .../system.xml.xmldocument/4.3.0/readme.md | 44 ++ .../system.xml.xmldocument/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 | 83 ++ .../SqlDatabase.Package/nuget/package.nuspec | 2 + Sources/SqlDatabase/SqlDatabase.csproj | 3 +- 398 files changed, 10888 insertions(+), 10 deletions(-) create mode 100644 Build/build-tasks.third-party.ps1 create mode 100644 Build/third-party-libraries/configuration/appsettings.json create mode 100644 Build/third-party-libraries/configuration/nuget.org-readme-template.txt create mode 100644 Build/third-party-libraries/configuration/readme-template.txt create mode 100644 Build/third-party-libraries/configuration/third-party-notices-template.txt create mode 100644 Build/third-party-libraries/licenses/apache-2.0/index.json create mode 100644 Build/third-party-libraries/licenses/apache-2.0/license.txt create mode 100644 Build/third-party-libraries/licenses/bsd-2-clause/index.json create mode 100644 Build/third-party-libraries/licenses/bsd-2-clause/license.txt create mode 100644 Build/third-party-libraries/licenses/bsd-3-clause/index.json create mode 100644 Build/third-party-libraries/licenses/bsd-3-clause/license.txt create mode 100644 Build/third-party-libraries/licenses/mit/index.json create mode 100644 Build/third-party-libraries/licenses/mit/license.txt create mode 100644 Build/third-party-libraries/licenses/ms-net-library/index.json create mode 100644 Build/third-party-libraries/licenses/ms-net-library/license.html create mode 100644 Build/third-party-libraries/packages/nuget.org/castle.core/4.4.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/castle.core/4.4.0/package-LICENSE create mode 100644 Build/third-party-libraries/packages/nuget.org/castle.core/4.4.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/castle.core/4.4.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/castle.core/4.4.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/castle.core/4.4.0/repository-LICENSE create mode 100644 Build/third-party-libraries/packages/nuget.org/castle.core/4.4.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/project-License.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/repository-License.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/diffengine/6.4.9/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/diffengine/6.4.9/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/diffengine/6.4.9/project-license.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/diffengine/6.4.9/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/diffengine/6.4.9/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/diffengine/6.4.9/repository-license.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/diffengine/6.4.9/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/emptyfiles/2.3.3/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/emptyfiles/2.3.3/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/emptyfiles/2.3.3/project-license.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/emptyfiles/2.3.3/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/emptyfiles/2.3.3/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/emptyfiles/2.3.3/repository-license.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/emptyfiles/2.3.3/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/package-LICENSE_NET.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/project-LICENSE create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/repository-LICENSE create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.dotnet.internalabstractions/1.0.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.dotnet.internalabstractions/1.0.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.dotnet.internalabstractions/1.0.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.dotnet.internalabstractions/1.0.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.dotnet.internalabstractions/1.0.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/package-LICENSE_NET.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/project-LICENSE create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/repository-LICENSE create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.2.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.2.0/package-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.2.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.2.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.2.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.2.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/package-LICENSE_NET.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/project-LICENSE create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/repository-LICENSE create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/package-LICENSE_NET.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/project-LICENSE create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/repository-LICENSE create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.5.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.5.0/package-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.5.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.5.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.5.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.5.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/package-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/project-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.0.5/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.0.5/package-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.0.5/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.0.5/project-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.0.5/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.0.5/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.0.5/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.1.2/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.1.2/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.1.2/project-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.1.2/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.1.2/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.1.2/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/moq/4.16.1/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/moq/4.16.1/package-License.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/moq/4.16.1/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/moq/4.16.1/project-License.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/moq/4.16.1/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/moq/4.16.1/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/moq/4.16.1/repository-License.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/moq/4.16.1/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/netstandard.library/2.0.3/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/netstandard.library/2.0.3/package-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/netstandard.library/2.0.3/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/netstandard.library/2.0.3/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/netstandard.library/2.0.3/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/netstandard.library/2.0.3/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/package-LICENSE.md create mode 100644 Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/repository-LICENSE.md create mode 100644 Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/nuget.frameworks/5.0.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/nuget.frameworks/5.0.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/nuget.frameworks/5.0.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/nuget.frameworks/5.0.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/nuget.frameworks/5.0.0/repository-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/nuget.frameworks/5.0.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/nunit/3.13.1/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/nunit/3.13.1/package-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/nunit/3.13.1/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/nunit/3.13.1/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/nunit/3.13.1/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/nunit/3.13.1/repository-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/nunit/3.13.1/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/package-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/package.nuspec create 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/3.17.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/repository-LICENSE create mode 100644 Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.0/package-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.0/project-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/shouldly/4.0.3/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/shouldly/4.0.3/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/shouldly/4.0.3/project-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/shouldly/4.0.3/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/shouldly/4.0.3/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/shouldly/4.0.3/repository-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/shouldly/4.0.3/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/package-LICENSE create mode 100644 Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/project-LICENSE create mode 100644 Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.appcontext/4.1.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.appcontext/4.1.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.appcontext/4.1.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.appcontext/4.1.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.appcontext/4.1.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.buffers/4.4.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.buffers/4.4.0/package-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.buffers/4.4.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.buffers/4.4.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.buffers/4.4.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.buffers/4.4.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/package-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.collections.nongeneric/4.3.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.collections.nongeneric/4.3.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.collections.nongeneric/4.3.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.collections.nongeneric/4.3.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.collections.nongeneric/4.3.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.collections.specialized/4.3.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.collections.specialized/4.3.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.collections.specialized/4.3.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.collections.specialized/4.3.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.collections.specialized/4.3.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.componentmodel.eventbasedasync/4.3.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.componentmodel.eventbasedasync/4.3.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.componentmodel.eventbasedasync/4.3.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.componentmodel.eventbasedasync/4.3.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.componentmodel.eventbasedasync/4.3.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.componentmodel.primitives/4.3.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.componentmodel.primitives/4.3.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.componentmodel.primitives/4.3.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.componentmodel.primitives/4.3.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.componentmodel.primitives/4.3.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.componentmodel.typeconverter/4.3.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.componentmodel.typeconverter/4.3.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.componentmodel.typeconverter/4.3.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.componentmodel.typeconverter/4.3.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.componentmodel.typeconverter/4.3.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.componentmodel/4.3.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.componentmodel/4.3.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.componentmodel/4.3.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.componentmodel/4.3.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.componentmodel/4.3.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.configuration.configurationmanager/4.5.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.configuration.configurationmanager/4.5.0/package-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.configuration.configurationmanager/4.5.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.configuration.configurationmanager/4.5.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.configuration.configurationmanager/4.5.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.configuration.configurationmanager/4.5.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.5.1/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.5.1/package-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.5.1/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.5.1/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.5.1/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.5.1/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.5.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.5.0/package-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.5.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.5.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.5.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.5.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.dynamic.runtime/4.3.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.dynamic.runtime/4.3.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.dynamic.runtime/4.3.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.dynamic.runtime/4.3.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.dynamic.runtime/4.3.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.io.filesystem.primitives/4.3.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.io.filesystem.primitives/4.3.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.io.filesystem.primitives/4.3.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.io.filesystem.primitives/4.3.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.io.filesystem.primitives/4.3.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.linq.expressions/4.3.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.linq.expressions/4.3.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.linq.expressions/4.3.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.linq.expressions/4.3.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.linq.expressions/4.3.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.linq/4.3.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.linq/4.3.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.linq/4.3.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.linq/4.3.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.linq/4.3.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.memory/4.5.1/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.memory/4.5.1/package-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.memory/4.5.1/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.memory/4.5.1/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.memory/4.5.1/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.memory/4.5.1/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/package-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/package-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/package-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.objectmodel/4.3.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.objectmodel/4.3.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.objectmodel/4.3.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.objectmodel/4.3.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.objectmodel/4.3.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/package-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.reflection.typeextensions/4.3.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.reflection.typeextensions/4.3.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.reflection.typeextensions/4.3.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.reflection.typeextensions/4.3.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.reflection.typeextensions/4.3.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.0/package-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3/package-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.runtime.interopservices.runtimeinformation/4.3.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.runtime.interopservices.runtimeinformation/4.3.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.runtime.interopservices.runtimeinformation/4.3.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.runtime.interopservices.runtimeinformation/4.3.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.runtime.interopservices.runtimeinformation/4.3.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.runtime.loader/4.3.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.runtime.loader/4.3.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.runtime.loader/4.3.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.runtime.loader/4.3.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.runtime.loader/4.3.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.5.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.5.0/package-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.5.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.5.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.5.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.5.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.security.cryptography.protecteddata/4.5.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.security.cryptography.protecteddata/4.5.0/package-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.security.cryptography.protecteddata/4.5.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.security.cryptography.protecteddata/4.5.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.security.cryptography.protecteddata/4.5.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.security.cryptography.protecteddata/4.5.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.security.permissions/4.5.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.security.permissions/4.5.0/package-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.security.permissions/4.5.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.security.permissions/4.5.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.security.permissions/4.5.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.security.permissions/4.5.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.5.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.5.0/package-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.5.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.5.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.5.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.5.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.5.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.5.0/package-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.5.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.5.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.5.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.5.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.text.regularexpressions/4.3.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.text.regularexpressions/4.3.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.text.regularexpressions/4.3.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.text.regularexpressions/4.3.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.text.regularexpressions/4.3.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/package-LICENSE.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.threading.thread/4.3.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.threading.thread/4.3.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.threading.thread/4.3.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.threading.thread/4.3.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.threading.thread/4.3.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.threading/4.3.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.threading/4.3.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.threading/4.3.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.threading/4.3.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.threading/4.3.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.xml.readerwriter/4.3.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.xml.readerwriter/4.3.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.xml.readerwriter/4.3.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.xml.readerwriter/4.3.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.xml.readerwriter/4.3.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.xml.xmldocument/4.3.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.xml.xmldocument/4.3.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.xml.xmldocument/4.3.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.xml.xmldocument/4.3.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.xml.xmldocument/4.3.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.xml.xpath.xmldocument/4.3.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.xml.xpath.xmldocument/4.3.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.xml.xpath.xmldocument/4.3.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.xml.xpath.xmldocument/4.3.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.xml.xpath.xmldocument/4.3.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/packages/nuget.org/system.xml.xpath/4.3.0/index.json create mode 100644 Build/third-party-libraries/packages/nuget.org/system.xml.xpath/4.3.0/package.nuspec create mode 100644 Build/third-party-libraries/packages/nuget.org/system.xml.xpath/4.3.0/readme.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.xml.xpath/4.3.0/remarks.md create mode 100644 Build/third-party-libraries/packages/nuget.org/system.xml.xpath/4.3.0/third-party-notices.txt create mode 100644 Build/third-party-libraries/readme.md diff --git a/.gitignore b/.gitignore index 9c723c10..de2aa5c1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,6 @@ obj/ bin/ .vs/ -packages/ build.out/ launchSettings.json diff --git a/Build/README.md b/Build/README.md index 449a1824..50bb1494 100644 --- a/Build/README.md +++ b/Build/README.md @@ -5,6 +5,7 @@ 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 +- ThirdPartyLibraries https://www.nuget.org/packages/ThirdPartyLibraries.GlobalTool/ - .net framework 4.7.2+ sdk - .net core 2.2 sdk - .net core 3.1 sdk diff --git a/Build/build-tasks.ps1 b/Build/build-tasks.ps1 index 531efe43..1fdb042b 100644 --- a/Build/build-tasks.ps1 +++ b/Build/build-tasks.ps1 @@ -1,10 +1,10 @@ -task Default Initialize, Clean, Build, Pack, UnitTest, InitializeIntegrationTest, IntegrationTest +task Default Initialize, Clean, Build, ThirdPartyNotices, Pack, UnitTest, InitializeIntegrationTest, IntegrationTest task Pack PackGlobalTool, PackPoweShellModule, PackNuget452, PackManualDownload . .\build-scripts.ps1 task Initialize { - $sources = Join-Path $PSScriptRoot "..\Sources" + $sources = [System.IO.Path]::GetFullPath((Join-Path $PSScriptRoot "..\Sources")) $bin = [System.IO.Path]::GetFullPath((Join-Path $PSScriptRoot "..\bin")) $artifacts = Join-Path $bin "artifacts" @@ -37,6 +37,10 @@ task Build { exec { dotnet build $solutionFile -t:Rebuild -p:Configuration=Release } } +task ThirdPartyNotices { + Invoke-Build -File build-tasks.third-party.ps1 -Task "ThirdParty" -settings $settings +} + task PackGlobalTool { $projectFile = Join-Path $settings.sources "SqlDatabase\SqlDatabase.csproj" @@ -62,8 +66,13 @@ task PackPoweShellModule { $psdFile = Join-Path $dest "SqlDatabase.psd1" ((Get-Content -Path $psdFile -Raw) -replace '{{ModuleVersion}}', $settings.version) | Set-Content -Path $psdFile - # copy to powershell + # copy license Copy-Item -Path (Join-Path $settings.sources "..\LICENSE.md") -Destination $dest + + # copy ThirdPartyNotices + Copy-Item -Path (Join-Path $settings.bin "ThirdPartyNotices.txt") -Destination $dest + + # copy net452 $net45Dest = Join-Path $dest "net452" $net45Source = Join-Path $settings.bin "SqlDatabase\net452" New-Item -Path $net45Dest -ItemType Directory | Out-Null @@ -94,11 +103,12 @@ task PackNuget452 PackPoweShellModule, { task PackManualDownload PackGlobalTool, PackPoweShellModule, { $out = $settings.artifacts $lic = Join-Path $settings.sources "..\LICENSE.md" + $thirdParty = Join-Path $settings.bin "ThirdPartyNotices.txt" $packageVersion = $settings.version - + $destination = Join-Path $out "SqlDatabase.$packageVersion-net452.zip" $source = Join-Path $settings.bin "SqlDatabase\net452\*" - Compress-Archive -Path $source, $lic -DestinationPath $destination + Compress-Archive -Path $source, $lic, $thirdParty -DestinationPath $destination $destination = Join-Path $out "SqlDatabase.$packageVersion-PowerShell.zip" $source = Join-Path $settings.artifactsPowerShell "*" @@ -108,15 +118,15 @@ task PackManualDownload PackGlobalTool, PackPoweShellModule, { $exe = Join-Path $settings.bin "SqlDatabase\netcoreapp3.1\publish\SqlDatabase.exe" $destination = Join-Path $out "SqlDatabase.$packageVersion-netcore22.zip" $source = Join-Path $settings.bin "SqlDatabase\netcoreapp2.2\publish\*" - Compress-Archive -Path $source, $exe, $lic -DestinationPath $destination + 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 -DestinationPath $destination + Compress-Archive -Path $source, $lic, $thirdParty -DestinationPath $destination $destination = Join-Path $out "SqlDatabase.$packageVersion-net50.zip" $source = Join-Path $settings.bin "SqlDatabase\net5.0\publish\*" - Compress-Archive -Path $source, $lic -DestinationPath $destination + Compress-Archive -Path $source, $lic, $thirdParty -DestinationPath $destination } task UnitTest { diff --git a/Build/build-tasks.third-party.ps1 b/Build/build-tasks.third-party.ps1 new file mode 100644 index 00000000..ad3f751c --- /dev/null +++ b/Build/build-tasks.third-party.ps1 @@ -0,0 +1,48 @@ +param( + $settings +) + +function Write-ThirdPartyNotices($appName, $sources, $repository, $out) { + $source = $sources | ForEach-Object {"-source", $_} + $outTemp = Join-Path $out "Temp" + + Exec { + ThirdPartyLibraries update ` + -appName $appName ` + $source ` + -repository $repository + } + + Exec { + ThirdPartyLibraries validate ` + -appName $appName ` + $source ` + -repository $repository + } + + Exec { + ThirdPartyLibraries generate ` + -appName $appName ` + -repository $repository ` + -to $outTemp + } + + Move-Item (Join-Path $outTemp "ThirdPartyNotices.txt") $out -Force + Remove-Item -Path $outTemp -Recurse -Force +} + +task ThirdParty { + $sourceDir = $settings.sources + $thirdPartyRepository = [System.IO.Path]::GetFullPath((Join-Path $PSScriptRoot "third-party-libraries")) + $binDir = $settings.bin + + $sources = @( + (Join-Path $sourceDir "SqlDatabase"), + (Join-Path $sourceDir "SqlDatabase.Test"), + (Join-Path $sourceDir "SqlDatabase.PowerShell"), + (Join-Path $sourceDir "SqlDatabase.PowerShell.Test"), + (Join-Path $sourceDir "SqlDatabase.Test") + ) + + Write-ThirdPartyNotices "SqlDatabase" $sources $thirdPartyRepository $binDir +} \ No newline at end of file diff --git a/Build/third-party-libraries/configuration/appsettings.json b/Build/third-party-libraries/configuration/appsettings.json new file mode 100644 index 00000000..d1a5c7b9 --- /dev/null +++ b/Build/third-party-libraries/configuration/appsettings.json @@ -0,0 +1,69 @@ +{ + "nuget.org": { + "allowToUseLocalCache": true, + "downloadPackageIntoRepository": false, + "ignorePackages": { + "byName": [], + "byProjectName": [] + }, + "internalPackages": { + "byName": [ "StyleCop\\.Analyzers" ], + "byProjectName": [ "\\.Test$" ] + } + }, + "npmjs.com": { + "downloadPackageIntoRepository": false, + "ignorePackages": { + "byName": [ "Abc.*" ], + "byFolderName": [ "\\.Demo$" ] + } + }, + "github.com": { + "personalAccessToken": "" + }, + "staticLicenseUrls": { + "byCode": [ + { + "code": "ms-net-library", + "fullName": "MICROSOFT .NET LIBRARY", + "downloadUrl": "https://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm" + }, + { + "code": "ms-clr-types-sql-server-2012", + "fullName": "MICROSOFT SYSTEM CLR TYPES FOR MICROSOFT SQL SERVER 2012", + "downloadUrl": "https://www.microsoft.com/web/webpi/eula/Microsoft_SQL_Server_2012_Microsoft_CLR_ENG.htm" + } + ], + "byUrl": [ + { + "code": "MIT", + "urls": [ "https://github.com/dotnet/corefx/blob/master/LICENSE.TXT" ] + }, + { + "code": "Apache-2.0", + "urls": [ + "http://www.apache.org/licenses/LICENSE-2.0", + "http://www.apache.org/licenses/LICENSE-2.0.html", + "http://www.apache.org/licenses/LICENSE-2.0.txt" + ] + }, + { + "code": "ms-clr-types-sql-server-2012", + "urls": [ + "https://www.microsoft.com/web/webpi/eula/SysClrTypes_SQLServer.htm", + "https://www.microsoft.com/web/webpi/eula/Microsoft_SQL_Server_2012_Microsoft_CLR_ENG.htm", + "http://go.microsoft.com/fwlink/?LinkId=331280" + ] + }, + { + "code": "ms-net-library", + "urls": [ + "https://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm", + "https://www.microsoft.com/en-us/web/webpi/eula/net_library_eula_ENU.htm", + "http://go.microsoft.com/fwlink/?LinkId=329770", + "http://go.microsoft.com/fwlink/?LinkId=529443" + ] + } + ] + } +} \ No newline at end of file diff --git a/Build/third-party-libraries/configuration/nuget.org-readme-template.txt b/Build/third-party-libraries/configuration/nuget.org-readme-template.txt new file mode 100644 index 00000000..dfb16168 --- /dev/null +++ b/Build/third-party-libraries/configuration/nuget.org-readme-template.txt @@ -0,0 +1,39 @@ +{{Name}} [{{Version}}]({{HRef}}) +-------------------- + +Used by: {{UsedBy}} + +Target frameworks: {{TargetFrameworks}} + +License: {{LicenseMarkdownExpression}} {% if LicenseDescription %}, {{LicenseDescription}}{% endif %} + +{%- for license in Licenses -%} +- {{license.Subject}} license: [{{license.Code}}]({{license.HRef}}) {% if license.Description %}, {{license.Description}}{% endif %} +{%- endfor -%} + +Description +----------- +{{Description}} + +Remarks +----------- +{{Remarks}} + +{%- if ThirdPartyNotices -%} +Third party notices +----------- +{{ThirdPartyNotices}} +{%- endif -%} + +Dependencies {{DependenciesCount}} +----------- + +{%- if DependenciesCount > 0 -%} +|Name|Version| +|----------|:----| +{%- for dependency in Dependencies -%} +|[{{dependency.Name}}]({{dependency.LocalHRef}})|{{dependency.Version}}| +{%- endfor -%} +{%- endif -%} + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/configuration/readme-template.txt b/Build/third-party-libraries/configuration/readme-template.txt new file mode 100644 index 00000000..e764d448 --- /dev/null +++ b/Build/third-party-libraries/configuration/readme-template.txt @@ -0,0 +1,31 @@ +Licenses +-------- + +|Code|Requires approval|Requires third party notices|Packages count| +|----------|:----|:----|:----| +{% for license in Licenses -%} +|[{{license.Code}}]({{license.LocalHRef}})|{% if license.RequiresApproval%}yes{% else %}no{% endif %}|{% if license.RequiresThirdPartyNotices%}yes{% else %}no{% endif %}|{{license.PackagesCount}}| +{% endfor -%} + +{%- if TodoPackagesCount > 0 -%} +TODO {{TodoPackagesCount}} +-------- + +|Name|Version|Source|License|Used by| +|----------|:----|:----|:----|:----| +{%- for package in TodoPackages -%} +|[{{package.Name}}]({{package.LocalHRef}})|{{package.Version}}|[{{package.Source}}]({{package.SourceHRef}})|{{package.LicenseMarkdownExpression}}|{{package.UsedBy}}| +{%- endfor -%} +{%- endif -%} + + +Packages {{PackagesCount}} +-------- + +|Name|Version|Source|License|Used by| +|----------|:----|:----|:----|:----| +{%- for package in Packages -%} +|[{{package.Name}}]({{package.LocalHRef}})|{{package.Version}}|[{{package.Source}}]({{package.SourceHRef}})|{{package.LicenseMarkdownExpression}}|{{package.UsedBy}}| +{%- endfor -%} + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/configuration/third-party-notices-template.txt b/Build/third-party-libraries/configuration/third-party-notices-template.txt new file mode 100644 index 00000000..16ae942f --- /dev/null +++ b/Build/third-party-libraries/configuration/third-party-notices-template.txt @@ -0,0 +1,20 @@ +SqlDatabase +************ + +THIRD-PARTY SOFTWARE NOTICES AND INFORMATION + +{% for package in Packages -%} +{{package.Name}} ({{package.HRef}}) +{%- if package.Author -%} + Authors: {{package.Author}} +{%- endif -%} +{%- if package.Copyright -%} + Copyright: {{package.Copyright}} +{%- endif -%} + License: {{package.License.FullName}}, full text can be found at{% for i in package.License.HRefs %} {{i}}{% endfor %} or in{% for i in package.License.FileNames %} {{i}}{% endfor %} +{%- if package.ThirdPartyNotices -%} + +{{package.ThirdPartyNotices}} +{%- endif -%} + +{% endfor -%} diff --git a/Build/third-party-libraries/licenses/apache-2.0/index.json b/Build/third-party-libraries/licenses/apache-2.0/index.json new file mode 100644 index 00000000..5a59cf6c --- /dev/null +++ b/Build/third-party-libraries/licenses/apache-2.0/index.json @@ -0,0 +1,9 @@ +{ + "Code": "Apache-2.0", + "FullName": "Apache License 2.0", + "RequiresApproval": false, + "RequiresThirdPartyNotices": false, + "HRef": "https://spdx.org/licenses/Apache-2.0", + "FileName": "license.txt", + "Dependencies": [] +} \ No newline at end of file diff --git a/Build/third-party-libraries/licenses/apache-2.0/license.txt b/Build/third-party-libraries/licenses/apache-2.0/license.txt new file mode 100644 index 00000000..137069b8 --- /dev/null +++ b/Build/third-party-libraries/licenses/apache-2.0/license.txt @@ -0,0 +1,73 @@ +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + + (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. + + You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + +To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. diff --git a/Build/third-party-libraries/licenses/bsd-2-clause/index.json b/Build/third-party-libraries/licenses/bsd-2-clause/index.json new file mode 100644 index 00000000..9c81112a --- /dev/null +++ b/Build/third-party-libraries/licenses/bsd-2-clause/index.json @@ -0,0 +1,9 @@ +{ + "Code": "BSD-2-Clause", + "FullName": "BSD 2-Clause \"Simplified\" License", + "RequiresApproval": false, + "RequiresThirdPartyNotices": false, + "HRef": "https://spdx.org/licenses/BSD-2-Clause", + "FileName": "license.txt", + "Dependencies": [] +} \ No newline at end of file diff --git a/Build/third-party-libraries/licenses/bsd-2-clause/license.txt b/Build/third-party-libraries/licenses/bsd-2-clause/license.txt new file mode 100644 index 00000000..b0e20f53 --- /dev/null +++ b/Build/third-party-libraries/licenses/bsd-2-clause/license.txt @@ -0,0 +1,9 @@ +Copyright (c) All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/Build/third-party-libraries/licenses/bsd-3-clause/index.json b/Build/third-party-libraries/licenses/bsd-3-clause/index.json new file mode 100644 index 00000000..d9d573a1 --- /dev/null +++ b/Build/third-party-libraries/licenses/bsd-3-clause/index.json @@ -0,0 +1,9 @@ +{ + "Code": "BSD-3-Clause", + "FullName": "BSD 3-Clause \"New\" or \"Revised\" License", + "RequiresApproval": false, + "RequiresThirdPartyNotices": false, + "HRef": "https://spdx.org/licenses/BSD-3-Clause", + "FileName": "license.txt", + "Dependencies": [] +} \ No newline at end of file diff --git a/Build/third-party-libraries/licenses/bsd-3-clause/license.txt b/Build/third-party-libraries/licenses/bsd-3-clause/license.txt new file mode 100644 index 00000000..4a660be8 --- /dev/null +++ b/Build/third-party-libraries/licenses/bsd-3-clause/license.txt @@ -0,0 +1,11 @@ +Copyright (c) . All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + + 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/Build/third-party-libraries/licenses/mit/index.json b/Build/third-party-libraries/licenses/mit/index.json new file mode 100644 index 00000000..37d07352 --- /dev/null +++ b/Build/third-party-libraries/licenses/mit/index.json @@ -0,0 +1,9 @@ +{ + "Code": "MIT", + "FullName": "MIT License", + "RequiresApproval": false, + "RequiresThirdPartyNotices": false, + "HRef": "https://spdx.org/licenses/MIT", + "FileName": "license.txt", + "Dependencies": [] +} \ No newline at end of file diff --git a/Build/third-party-libraries/licenses/mit/license.txt b/Build/third-party-libraries/licenses/mit/license.txt new file mode 100644 index 00000000..2071b23b --- /dev/null +++ b/Build/third-party-libraries/licenses/mit/license.txt @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) + +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/licenses/ms-net-library/index.json b/Build/third-party-libraries/licenses/ms-net-library/index.json new file mode 100644 index 00000000..ae7b7288 --- /dev/null +++ b/Build/third-party-libraries/licenses/ms-net-library/index.json @@ -0,0 +1,9 @@ +{ + "Code": "ms-net-library", + "FullName": "MICROSOFT .NET LIBRARY", + "RequiresApproval": false, + "RequiresThirdPartyNotices": false, + "HRef": "https://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm", + "FileName": "license.html", + "Dependencies": [] +} \ No newline at end of file diff --git a/Build/third-party-libraries/licenses/ms-net-library/license.html b/Build/third-party-libraries/licenses/ms-net-library/license.html new file mode 100644 index 00000000..b7060aeb --- /dev/null +++ b/Build/third-party-libraries/licenses/ms-net-library/license.html @@ -0,0 +1,744 @@ + + + + + + + + + + + +
+ +

MICROSOFT SOFTWARE LICENSE +TERMS

+ +
+ +

MICROSOFT .NET +LIBRARY

+ +
+ +

These +license terms are an agreement between you and Microsoft Corporation (or based +on where you live, one of its affiliates). They apply to the software named +above. The terms also apply to any Microsoft services or updates for the +software, except to the extent those have different terms.

+ +
+ +

If +you comply with these license terms, you have the rights below.

+ +
+ +

1.    INSTALLATION AND USE RIGHTS.

+ +

You may +install and use any number of copies of the software to develop and test your applications.  +

+ +

2.    +THIRD PARTY COMPONENTS. The software may include third party components with +separate legal notices or governed by other agreements, as may be described in +the ThirdPartyNotices file(s) accompanying the software.

+ +

3.    +ADDITIONAL LICENSING +REQUIREMENTS AND/OR USE RIGHTS.

+ +

a.     +DISTRIBUTABLE +CODE.  The software is +comprised of Distributable Code. Distributable Code is code that you are +permitted to distribute in applications you develop if you comply with the +terms below.

+ +

i.      Right to Use and Distribute.

+ +

        +You may copy and distribute the object code form of the software.

+ +

        +Third Party Distribution. You may permit distributors of your applications +to copy and distribute the Distributable Code as part of those applications.

+ +

ii.     Distribution Requirements. For any +Distributable Code you distribute, you must

+ +

        +use the Distributable Code in your applications and not as a +standalone distribution;

+ +

        +require distributors and external end users to agree to terms that +protect it at least as much as this agreement; and

+ +

        +indemnify, defend, and hold harmless Microsoft from any claims, +including attorneys fees, related to the distribution or use of your applications, +except to the extent that any claim is based solely on the unmodified Distributable +Code.

+ +

iii.   Distribution Restrictions. You may not

+ +

        +use Microsofts trademarks in your applications names or in a way +that suggests your applications come from or are endorsed by Microsoft; or

+ +

        +modify or distribute the source code of any Distributable Code so +that any part of it becomes subject to an Excluded License. An Excluded +License is one that requires, as a condition of use, modification or +distribution of code, that (i) it be disclosed or distributed in source code +form; or (ii) others have the right to modify it.

+ +

4.    +DATA.

+ +

a.     +Data Collection. The software may collect +information about you and your use of the software, and send that to Microsoft. +Microsoft may use this information to provide services and improve our products +and services. You may opt-out of many of these scenarios, but not all, as +described in the software documentation. There are also some features in the software that may enable you and +Microsoft to collect data from users of your applications. If you use +these features, you must comply with applicable law, including providing +appropriate notices to users of your applications together with Microsofts +privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data +collection and its use from the software documentation and our privacy +statement. Your use of the software operates as your consent to these +practices.

+ +

b.    +Processing of Personal Data. To the extent Microsoft is a +processor or subprocessor of personal data in connection with the software, +Microsoft makes the commitments in the European Union General Data Protection +Regulation Terms of the Online Services Terms to all customers effective May +25, 2018, at https://docs.microsoft.com/en-us/legal/gdpr.

+ +

5.    +Scope of +License. The software is licensed, not sold. This agreement +only gives you some rights to use the software. Microsoft reserves all other +rights. Unless applicable law gives you more rights despite this limitation, +you may use the software only as expressly permitted in this agreement. In +doing so, you must comply with any technical limitations in the software that +only allow you to use it in certain ways. You may not

+ +

        +work around any technical +limitations in the software;

+ +

        +reverse engineer, decompile or +disassemble the software, or otherwise attempt to derive the source code for +the software, except and to the extent required by third party licensing terms +governing use of certain open source components that may be included in the +software;

+ +

        +remove, minimize, block or modify +any notices of Microsoft or its suppliers in the software;

+ +

        +use the software in any way that +is against the law; or

+ +

        +share, publish, rent or lease the +software, provide the software as a stand-alone offering for others to use, or +transfer the software or this agreement to any third party.

+ +

6.    +Export +Restrictions. You must comply with all domestic and international +export laws and regulations that apply to the software, which include +restrictions on destinations, end users, and end use. For further information +on export restrictions, visit www.microsoft.com/exporting.

+ +

7.    +SUPPORT +SERVICES. Because this software is as is, we may not provide +support services for it.

+ +

8.    +Entire +Agreement. This +agreement, and the terms for supplements, updates, Internet-based services and +support services that you use, are the entire agreement for the software and +support services.

+ +

9.    Applicable Law. If you acquired the software in the United States, Washington law +applies to interpretation of and claims for breach of this agreement, and the +laws of the state where you live apply to all other claims. If you acquired the +software in any other country, its laws apply.

+ +

10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You +may have other rights, including consumer rights, under the laws of your state +or country. Separate and apart from your relationship with Microsoft, you may +also have rights with respect to the party from which you acquired the +software. This agreement does not change those other rights if the laws of your +state or country do not permit it to do so. For example, if you acquired the +software in one of the below regions, or mandatory country law applies, then +the following provisions apply to you:

+ +

a)    Australia. You have statutory guarantees under the Australian Consumer +Law and nothing in this agreement is intended to affect those rights.

+ +

b)    Canada. If you acquired this software in Canada, you may stop +receiving updates by turning off the automatic update feature, disconnecting +your device from the Internet (if and when you re-connect to the Internet, +however, the software will resume checking for and installing updates), or uninstalling +the software. The product documentation, if any, may also specify how to turn +off updates for your specific device or software.

+ +

c)    Germany and Austria.

+ +

(i) Warranty. The software will perform +substantially as described in any Microsoft materials that accompany it. +However, Microsoft gives no contractual guarantee in relation to the software.

+ +

(ii) Limitation of Liability. In case of +intentional conduct, gross negligence, claims based on the Product Liability +Act, as well as in case of death or personal or physical injury, Microsoft is +liable according to the statutory law.

+ +

Subject to the foregoing clause (ii), Microsoft will only +be liable for slight negligence if Microsoft is in breach of such material +contractual obligations, the fulfillment of which facilitate the due +performance of this agreement, the breach of which would endanger the purpose +of this agreement and the compliance with which a party may constantly trust in +(so-called "cardinal obligations"). In other cases of slight negligence, +Microsoft will not be liable for slight negligence

+ +

11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED AS-IS. YOU BEAR THE RISK +OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. +TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NON-INFRINGEMENT.

+ +

12. +Limitation +on and Exclusion of Remedies and Damages. YOU +CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. +$5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST +PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.

+ +

This limitation applies to (a) +anything related to the software, services, content (including code) on third +party Internet sites, or third party applications; and (b) claims for breach of +contract, breach of warranty, guarantee or condition, strict liability, +negligence, or other tort to the extent permitted by applicable law.

+ +

It +also applies even if Microsoft knew or should have known about the possibility +of the damages. The above limitation or exclusion may not apply to you because +your state or country may not allow the exclusion or limitation of incidental, +consequential or other damages.

+ +

 

+ +
+ + + + 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 new file mode 100644 index 00000000..efb43d11 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/castle.core/4.4.0/index.json @@ -0,0 +1,64 @@ +{ + "License": { + "Code": "Apache-2.0", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ], + "Dependencies": [ + { + "Name": "System.Collections.Specialized", + "Version": "4.3.0" + }, + { + "Name": "System.ComponentModel", + "Version": "4.3.0" + }, + { + "Name": "System.ComponentModel.TypeConverter", + "Version": "4.3.0" + }, + { + "Name": "System.Dynamic.Runtime", + "Version": "4.3.0" + }, + { + "Name": "System.Reflection.TypeExtensions", + "Version": "4.3.0" + }, + { + "Name": "System.Xml.XmlDocument", + "Version": "4.3.0" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "Apache-2.0", + "HRef": "http://www.apache.org/licenses/LICENSE-2.0.html", + "Description": null + }, + { + "Subject": "repository", + "Code": null, + "HRef": "https://github.com/castleproject/Core", + "Description": "License should be verified on https://github.com/castleproject/Core" + }, + { + "Subject": "project", + "Code": null, + "HRef": "http://www.castleproject.org/", + "Description": "License should be verified on http://www.castleproject.org/" + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/castle.core/4.4.0/package-LICENSE b/Build/third-party-libraries/packages/nuget.org/castle.core/4.4.0/package-LICENSE new file mode 100644 index 00000000..ebb9ac9f --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/castle.core/4.4.0/package-LICENSE @@ -0,0 +1,13 @@ +Copyright 2004-2016 Castle Project - http://www.castleproject.org/ + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/castle.core/4.4.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/castle.core/4.4.0/package.nuspec new file mode 100644 index 00000000..8162c5ed --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/castle.core/4.4.0/package.nuspec @@ -0,0 +1,49 @@ + + + + Castle.Core + 4.4.0 + Castle Project Contributors + Castle Project Contributors + false + http://www.apache.org/licenses/LICENSE-2.0.html + http://www.castleproject.org/ + http://www.castleproject.org/img/castle-logo.png + Castle Core, including DynamicProxy, Logging Abstractions and DictionaryAdapter + Copyright (c) 2004-2019 Castle Project - http://www.castleproject.org/ + castle dynamicproxy dynamic proxy dynamicproxy2 dictionaryadapter emailsender + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file 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 new file mode 100644 index 00000000..8a6bead6 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/castle.core/4.4.0/readme.md @@ -0,0 +1,35 @@ +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.2, netcoreapp3.1 + +License: [Apache-2.0](../../../../licenses/apache-2.0) + +- package license: [Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0.html) +- repository license: [Unknown](https://github.com/castleproject/Core) , License should be verified on https://github.com/castleproject/Core +- project license: [Unknown](http://www.castleproject.org/) , License should be verified on http://www.castleproject.org/ + +Description +----------- +Castle Core, including DynamicProxy, Logging Abstractions and DictionaryAdapter + +Remarks +----------- +no remarks + + +Dependencies 6 +----------- + +|Name|Version| +|----------|:----| +|[System.Collections.Specialized](../../../../packages/nuget.org/system.collections.specialized/4.3.0)|4.3.0| +|[System.ComponentModel](../../../../packages/nuget.org/system.componentmodel/4.3.0)|4.3.0| +|[System.ComponentModel.TypeConverter](../../../../packages/nuget.org/system.componentmodel.typeconverter/4.3.0)|4.3.0| +|[System.Dynamic.Runtime](../../../../packages/nuget.org/system.dynamic.runtime/4.3.0)|4.3.0| +|[System.Reflection.TypeExtensions](../../../../packages/nuget.org/system.reflection.typeextensions/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/castle.core/4.4.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/castle.core/4.4.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/castle.core/4.4.0/repository-LICENSE b/Build/third-party-libraries/packages/nuget.org/castle.core/4.4.0/repository-LICENSE new file mode 100644 index 00000000..c8680e41 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/castle.core/4.4.0/repository-LICENSE @@ -0,0 +1,13 @@ +Copyright 2004-2021 Castle Project - http://www.castleproject.org/ + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/castle.core/4.4.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/castle.core/4.4.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..66ce807f --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/index.json @@ -0,0 +1,38 @@ +{ + "License": { + "Code": "Apache-2.0", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "Apache-2.0", + "HRef": "https://licenses.nuget.org/Apache-2.0", + "Description": null + }, + { + "Subject": "repository", + "Code": null, + "HRef": "https://github.com/StackExchange/Dapper", + "Description": "License should be verified on https://github.com/StackExchange/Dapper" + }, + { + "Subject": "project", + "Code": null, + "HRef": "https://github.com/StackExchange/Dapper", + "Description": "License should be verified on https://github.com/StackExchange/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.78/package.nuspec new file mode 100644 index 00000000..f1ca8a3a --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/package.nuspec @@ -0,0 +1,26 @@ + + + + Dapper.StrongName + 2.0.78 + 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 + A high performance Micro-ORM supporting SQL Server, MySQL, Sqlite, SqlCE, Firebird etc.. + https://stackexchange.github.io/Dapper/ + 2019 Stack Exchange, Inc. + orm sql micro-orm + + + + + + + + + + \ No newline at end of file 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 new file mode 100644 index 00000000..0f333522 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/project-License.txt @@ -0,0 +1 @@ +http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/readme.md b/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/readme.md new file mode 100644 index 00000000..9e6cf9dd --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/readme.md @@ -0,0 +1,27 @@ +Dapper.StrongName [2.0.78](https://www.nuget.org/packages/Dapper.StrongName/2.0.78) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, netcoreapp2.2, netcoreapp3.1 + +License: [Apache-2.0](../../../../licenses/apache-2.0) + +- package license: [Apache-2.0](https://licenses.nuget.org/Apache-2.0) +- repository license: [Unknown](https://github.com/StackExchange/Dapper) , License should be verified on https://github.com/StackExchange/Dapper +- project license: [Unknown](https://github.com/StackExchange/Dapper) , License should be verified on https://github.com/StackExchange/Dapper + +Description +----------- +A high performance Micro-ORM supporting SQL Server, MySQL, Sqlite, SqlCE, Firebird etc.. + +Remarks +----------- +no remarks + + +Dependencies 0 +----------- + + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/remarks.md b/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/remarks.md new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..0f333522 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/repository-License.txt @@ -0,0 +1 @@ +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/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/dapper.strongname/2.0.78/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..03b901fa --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/diffengine/6.4.9/index.json @@ -0,0 +1,44 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ], + "Dependencies": [ + { + "Name": "EmptyFiles", + "Version": "2.3.3" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://licenses.nuget.org/MIT", + "Description": null + }, + { + "Subject": "repository", + "Code": "MIT", + "HRef": "https://github.com/VerifyTests/DiffEngine.git", + "Description": null + }, + { + "Subject": "project", + "Code": "MIT", + "HRef": "https://github.com/VerifyTests/DiffEngine", + "Description": null + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/diffengine/6.4.9/package.nuspec b/Build/third-party-libraries/packages/nuget.org/diffengine/6.4.9/package.nuspec new file mode 100644 index 00000000..0b4ad7ad --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/diffengine/6.4.9/package.nuspec @@ -0,0 +1,34 @@ + + + + DiffEngine + 6.4.9 + https://github.com/VerifyTests/DiffEngine/graphs/contributors + false + MIT + https://licenses.nuget.org/MIT + icon.png + https://github.com/VerifyTests/DiffEngine + Launches diff tools based on file extensions. Designed to be consumed by snapshot testing libraries. + Copyright 2020. All rights reserved + Testing, Snapshot, Diff, Compare + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/diffengine/6.4.9/project-license.txt b/Build/third-party-libraries/packages/nuget.org/diffengine/6.4.9/project-license.txt new file mode 100644 index 00000000..94286c94 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/diffengine/6.4.9/project-license.txt @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) .NET Foundation and Contributors + +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/diffengine/6.4.9/readme.md b/Build/third-party-libraries/packages/nuget.org/diffengine/6.4.9/readme.md new file mode 100644 index 00000000..16dd4066 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/diffengine/6.4.9/readme.md @@ -0,0 +1,30 @@ +DiffEngine [6.4.9](https://www.nuget.org/packages/DiffEngine/6.4.9) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, netcoreapp2.2, netcoreapp3.1 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://licenses.nuget.org/MIT) +- repository license: [MIT](https://github.com/VerifyTests/DiffEngine.git) +- project license: [MIT](https://github.com/VerifyTests/DiffEngine) + +Description +----------- +Launches diff tools based on file extensions. Designed to be consumed by snapshot testing libraries. + +Remarks +----------- +no remarks + + +Dependencies 1 +----------- + +|Name|Version| +|----------|:----| +|[EmptyFiles](../../../../packages/nuget.org/emptyfiles/2.3.3)|2.3.3| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/diffengine/6.4.9/remarks.md b/Build/third-party-libraries/packages/nuget.org/diffengine/6.4.9/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/diffengine/6.4.9/repository-license.txt b/Build/third-party-libraries/packages/nuget.org/diffengine/6.4.9/repository-license.txt new file mode 100644 index 00000000..94286c94 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/diffengine/6.4.9/repository-license.txt @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) .NET Foundation and Contributors + +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/diffengine/6.4.9/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/diffengine/6.4.9/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..05e8c1cb --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/emptyfiles/2.3.3/index.json @@ -0,0 +1,38 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://licenses.nuget.org/MIT", + "Description": null + }, + { + "Subject": "repository", + "Code": "MIT", + "HRef": "https://github.com/SimonCropp/EmptyFiles.git", + "Description": null + }, + { + "Subject": "project", + "Code": "MIT", + "HRef": "https://github.com/SimonCropp/EmptyFiles", + "Description": null + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/emptyfiles/2.3.3/package.nuspec b/Build/third-party-libraries/packages/nuget.org/emptyfiles/2.3.3/package.nuspec new file mode 100644 index 00000000..ff6883c5 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/emptyfiles/2.3.3/package.nuspec @@ -0,0 +1,21 @@ + + + + EmptyFiles + 2.3.3 + https://github.com/SimonCropp/EmptyFiles/graphs/contributors + false + MIT + https://licenses.nuget.org/MIT + icon.png + https://github.com/SimonCropp/EmptyFiles + A collection of minimal binary files. + Copyright 2020. All rights reserved + + + + + + + + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/emptyfiles/2.3.3/project-license.txt b/Build/third-party-libraries/packages/nuget.org/emptyfiles/2.3.3/project-license.txt new file mode 100644 index 00000000..fc223d79 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/emptyfiles/2.3.3/project-license.txt @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018 Simon Cropp + +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/emptyfiles/2.3.3/readme.md b/Build/third-party-libraries/packages/nuget.org/emptyfiles/2.3.3/readme.md new file mode 100644 index 00000000..d5860427 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/emptyfiles/2.3.3/readme.md @@ -0,0 +1,27 @@ +EmptyFiles [2.3.3](https://www.nuget.org/packages/EmptyFiles/2.3.3) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, netcoreapp2.2, netcoreapp3.1 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://licenses.nuget.org/MIT) +- repository license: [MIT](https://github.com/SimonCropp/EmptyFiles.git) +- project license: [MIT](https://github.com/SimonCropp/EmptyFiles) + +Description +----------- +A collection of minimal binary files. + +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/emptyfiles/2.3.3/remarks.md b/Build/third-party-libraries/packages/nuget.org/emptyfiles/2.3.3/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/emptyfiles/2.3.3/repository-license.txt b/Build/third-party-libraries/packages/nuget.org/emptyfiles/2.3.3/repository-license.txt new file mode 100644 index 00000000..fc223d79 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/emptyfiles/2.3.3/repository-license.txt @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018 Simon Cropp + +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/emptyfiles/2.3.3/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/emptyfiles/2.3.3/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..15376626 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/index.json @@ -0,0 +1,38 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": null, + "HRef": null, + "Description": null + }, + { + "Subject": "repository", + "Code": "MIT", + "HRef": "https://github.com/microsoft/vstest", + "Description": null + }, + { + "Subject": "project", + "Code": "MIT", + "HRef": "https://github.com/microsoft/vstest/", + "Description": null + } + ] +} \ No newline at end of file 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/16.9.4/package-LICENSE_NET.txt new file mode 100644 index 00000000..5b03e9dc --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/package-LICENSE_NET.txt @@ -0,0 +1,65 @@ +MICROSOFT SOFTWARE LICENSE TERMS + +MICROSOFT .NET LIBRARY + +These license terms are an agreement between you and Microsoft Corporation (or based on where you live, one of its affiliates). They apply to the software named above. The terms also apply to any Microsoft services or updates for the software, except to the extent those have different terms. + +IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW. + +1. INSTALLATION AND USE RIGHTS. +You may install and use any number of copies of the software to develop and test your applications. + +2. THIRD PARTY COMPONENTS. The software may include third party components with separate legal notices or governed by other agreements, as may be described in the ThirdPartyNotices file(s) accompanying the software. +3. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS. +a. DISTRIBUTABLE CODE. The software is comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. +i. Right to Use and Distribute. +· You may copy and distribute the object code form of the software. + +· Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. + +ii. Distribution Requirements. For any Distributable Code you distribute, you must +· use the Distributable Code in your applications and not as a standalone distribution; + +· require distributors and external end users to agree to terms that protect it at least as much as this agreement; and + +· indemnify, defend, and hold harmless Microsoft from any claims, including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. + +iii. Distribution Restrictions. You may not +· use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or + +· modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An “Excluded License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. + +4. DATA. +a. Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may opt-out of many of these scenarios, but not all, as described in the software documentation. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these practices. +b. Processing of Personal Data. To the extent Microsoft is a processor or subprocessor of personal data in connection with the software, Microsoft makes the commitments in the European Union General Data Protection Regulation Terms of the Online Services Terms to all customers effective May 25, 2018, at https://docs.microsoft.com/en-us/legal/gdpr. +5. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not +· work around any technical limitations in the software; + +· reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; + +· remove, minimize, block or modify any notices of Microsoft or its suppliers in the software; + +· use the software in any way that is against the law; or + +· share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. + +6. EXPORT RESTRICTIONS. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information on export restrictions, visit www.microsoft.com/exporting. +7. SUPPORT SERVICES. Because this software is “as is,” we may not provide support services for it. +8. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. +9. APPLICABLE LAW. If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. +10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. Separate and apart from your relationship with Microsoft, you may also have rights with respect to the party from which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or mandatory country law applies, then the following provisions apply to you: +a) Australia. You have statutory guarantees under the Australian Consumer Law and nothing in this agreement is intended to affect those rights. +b) Canada. If you acquired this software in Canada, you may stop receiving updates by turning off the automatic update feature, disconnecting your device from the Internet (if and when you re-connect to the Internet, however, the software will resume checking for and installing updates), or uninstalling the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. +c) Germany and Austria. +(i) Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. + +(ii) Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. + +Subject to the foregoing clause (ii), Microsoft will only be liable for slight negligence if Microsoft is in breach of such material contractual obligations, the fulfillment of which facilitate the due performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence +11. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. +12. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. +This limitation applies to (a) anything related to the software, services, content (including code) on third party Internet sites, or third party applications; and (b) claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. + +It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your state or country may not allow the exclusion or limitation of incidental, consequential or other damages. + + \ No newline at end of file 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/16.9.4/package.nuspec new file mode 100644 index 00000000..8800cf39 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/package.nuspec @@ -0,0 +1,24 @@ + + + + Microsoft.CodeCoverage + 16.9.4 + Microsoft.CodeCoverage + Microsoft + Microsoft + true + LICENSE_NET.txt + https://aka.ms/deprecateLicenseUrl + Icon.png + https://github.com/microsoft/vstest/ + http://go.microsoft.com/fwlink/?LinkID=288859 + 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 + + + + + + + \ No newline at end of file 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/16.9.4/project-LICENSE new file mode 100644 index 00000000..a31c5558 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/project-LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2020 Microsoft Corporation + +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.codecoverage/16.9.4/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/readme.md new file mode 100644 index 00000000..cac144f4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/readme.md @@ -0,0 +1,27 @@ +Microsoft.CodeCoverage [16.9.4](https://www.nuget.org/packages/Microsoft.CodeCoverage/16.9.4) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, netcoreapp2.2, netcoreapp3.1 + +License: [MIT](../../../../licenses/mit) + +- package license: [Unknown]() +- repository license: [MIT](https://github.com/microsoft/vstest) +- project license: [MIT](https://github.com/microsoft/vstest/) + +Description +----------- +Microsoft.CodeCoverage package brings infra for collecting code coverage from vstest.console.exe and "dotnet test". + +Remarks +----------- +no remarks + + +Dependencies 0 +----------- + + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/remarks.md b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/remarks.md new file mode 100644 index 00000000..e69de29b 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/16.9.4/repository-LICENSE new file mode 100644 index 00000000..a31c5558 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/repository-LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2020 Microsoft Corporation + +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.codecoverage/16.9.4/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.codecoverage/16.9.4/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..173f502b --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.dotnet.internalabstractions/1.0.0/index.json @@ -0,0 +1,40 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ], + "Dependencies": [ + { + "Name": "System.AppContext", + "Version": "4.1.0" + }, + { + "Name": "System.Reflection.TypeExtensions", + "Version": "4.3.0" + }, + { + "Name": "System.Runtime.InteropServices.RuntimeInformation", + "Version": "4.3.0" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": null, + "HRef": null, + "Description": null + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.dotnet.internalabstractions/1.0.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.dotnet.internalabstractions/1.0.0/package.nuspec new file mode 100644 index 00000000..c62609c7 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.dotnet.internalabstractions/1.0.0/package.nuspec @@ -0,0 +1,26 @@ + + + + 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 new file mode 100644 index 00000000..0d8a3195 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.dotnet.internalabstractions/1.0.0/readme.md @@ -0,0 +1,30 @@ +Microsoft.DotNet.InternalAbstractions [1.0.0](https://www.nuget.org/packages/Microsoft.DotNet.InternalAbstractions/1.0.0) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, netcoreapp2.2, 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.dotnet.internalabstractions/1.0.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/microsoft.dotnet.internalabstractions/1.0.0/remarks.md new file mode 100644 index 00000000..e69de29b 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.dotnet.internalabstractions/1.0.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..18c0bf72 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/index.json @@ -0,0 +1,48 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ], + "Dependencies": [ + { + "Name": "Microsoft.CodeCoverage", + "Version": "16.9.4" + }, + { + "Name": "Microsoft.TestPlatform.TestHost", + "Version": "16.9.4" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": null, + "HRef": null, + "Description": null + }, + { + "Subject": "repository", + "Code": "MIT", + "HRef": "https://github.com/microsoft/vstest", + "Description": null + }, + { + "Subject": "project", + "Code": "MIT", + "HRef": "https://github.com/microsoft/vstest/", + "Description": null + } + ] +} \ No newline at end of file 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/16.9.4/package-LICENSE_NET.txt new file mode 100644 index 00000000..5b03e9dc --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/package-LICENSE_NET.txt @@ -0,0 +1,65 @@ +MICROSOFT SOFTWARE LICENSE TERMS + +MICROSOFT .NET LIBRARY + +These license terms are an agreement between you and Microsoft Corporation (or based on where you live, one of its affiliates). They apply to the software named above. The terms also apply to any Microsoft services or updates for the software, except to the extent those have different terms. + +IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW. + +1. INSTALLATION AND USE RIGHTS. +You may install and use any number of copies of the software to develop and test your applications. + +2. THIRD PARTY COMPONENTS. The software may include third party components with separate legal notices or governed by other agreements, as may be described in the ThirdPartyNotices file(s) accompanying the software. +3. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS. +a. DISTRIBUTABLE CODE. The software is comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. +i. Right to Use and Distribute. +· You may copy and distribute the object code form of the software. + +· Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. + +ii. Distribution Requirements. For any Distributable Code you distribute, you must +· use the Distributable Code in your applications and not as a standalone distribution; + +· require distributors and external end users to agree to terms that protect it at least as much as this agreement; and + +· indemnify, defend, and hold harmless Microsoft from any claims, including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. + +iii. Distribution Restrictions. You may not +· use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or + +· modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An “Excluded License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. + +4. DATA. +a. Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may opt-out of many of these scenarios, but not all, as described in the software documentation. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these practices. +b. Processing of Personal Data. To the extent Microsoft is a processor or subprocessor of personal data in connection with the software, Microsoft makes the commitments in the European Union General Data Protection Regulation Terms of the Online Services Terms to all customers effective May 25, 2018, at https://docs.microsoft.com/en-us/legal/gdpr. +5. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not +· work around any technical limitations in the software; + +· reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; + +· remove, minimize, block or modify any notices of Microsoft or its suppliers in the software; + +· use the software in any way that is against the law; or + +· share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. + +6. EXPORT RESTRICTIONS. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information on export restrictions, visit www.microsoft.com/exporting. +7. SUPPORT SERVICES. Because this software is “as is,” we may not provide support services for it. +8. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. +9. APPLICABLE LAW. If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. +10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. Separate and apart from your relationship with Microsoft, you may also have rights with respect to the party from which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or mandatory country law applies, then the following provisions apply to you: +a) Australia. You have statutory guarantees under the Australian Consumer Law and nothing in this agreement is intended to affect those rights. +b) Canada. If you acquired this software in Canada, you may stop receiving updates by turning off the automatic update feature, disconnecting your device from the Internet (if and when you re-connect to the Internet, however, the software will resume checking for and installing updates), or uninstalling the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. +c) Germany and Austria. +(i) Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. + +(ii) Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. + +Subject to the foregoing clause (ii), Microsoft will only be liable for slight negligence if Microsoft is in breach of such material contractual obligations, the fulfillment of which facilitate the due performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence +11. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. +12. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. +This limitation applies to (a) anything related to the software, services, content (including code) on third party Internet sites, or third party applications; and (b) claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. + +It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your state or country may not allow the exclusion or limitation of incidental, consequential or other damages. + + \ No newline at end of file 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/16.9.4/package.nuspec new file mode 100644 index 00000000..d43febd3 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/package.nuspec @@ -0,0 +1,40 @@ + + + + Microsoft.NET.Test.Sdk + 16.9.4 + Microsoft.NET.Test.Sdk + Microsoft + Microsoft + true + LICENSE_NET.txt + https://aka.ms/deprecateLicenseUrl + Icon.png + https://github.com/microsoft/vstest/ + http://go.microsoft.com/fwlink/?LinkID=288859 + The MSbuild targets and properties for building .NET test projects. + © Microsoft Corporation. All rights reserved. + vstest visual-studio unittest testplatform mstest microsoft test testing + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file 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/16.9.4/project-LICENSE new file mode 100644 index 00000000..a31c5558 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/project-LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2020 Microsoft Corporation + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/readme.md new file mode 100644 index 00000000..5ae55f1d --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/readme.md @@ -0,0 +1,31 @@ +Microsoft.NET.Test.Sdk [16.9.4](https://www.nuget.org/packages/Microsoft.NET.Test.Sdk/16.9.4) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, netcoreapp2.2, netcoreapp3.1 + +License: [MIT](../../../../licenses/mit) + +- package license: [Unknown]() +- repository license: [MIT](https://github.com/microsoft/vstest) +- project license: [MIT](https://github.com/microsoft/vstest/) + +Description +----------- +The MSbuild targets and properties for building .NET test projects. + +Remarks +----------- +no remarks + + +Dependencies 2 +----------- + +|Name|Version| +|----------|:----| +|[Microsoft.CodeCoverage](../../../../packages/nuget.org/microsoft.codecoverage/16.9.4)|16.9.4| +|[Microsoft.TestPlatform.TestHost](../../../../packages/nuget.org/microsoft.testplatform.testhost/16.9.4)|16.9.4| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/remarks.md b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/remarks.md new file mode 100644 index 00000000..e69de29b 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/16.9.4/repository-LICENSE new file mode 100644 index 00000000..a31c5558 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/repository-LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2020 Microsoft Corporation + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.net.test.sdk/16.9.4/third-party-notices.txt new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.2.0/index.json b/Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.2.0/index.json new file mode 100644 index 00000000..7f31c8ce --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.2.0/index.json @@ -0,0 +1,34 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": false, + "TargetFrameworks": [ + "netcoreapp2.2", + "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.2.0/package-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.2.0/package-LICENSE.txt new file mode 100644 index 00000000..cd10d697 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.2.0/package-LICENSE.txt @@ -0,0 +1,22 @@ +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.2.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.2.0/package.nuspec new file mode 100644 index 00000000..cced4f0d --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.2.0/package.nuspec @@ -0,0 +1,28 @@ + + + + Microsoft.NETCore.App + 2.2.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. +1249f08feda72b116c7e6e4e9a390671883c797d +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.2.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.2.0/readme.md new file mode 100644 index 00000000..c0f56d0a --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.2.0/readme.md @@ -0,0 +1,28 @@ +Microsoft.NETCore.App [2.2.0](https://www.nuget.org/packages/Microsoft.NETCore.App/2.2.0) +-------------------- + +Used by: SqlDatabase + +Target frameworks: net452, net472, net5.0, netcoreapp2.2, 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. +1249f08feda72b116c7e6e4e9a390671883c797d +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.2.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.2.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.2.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.netcore.app/2.2.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..a17a7bba --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/index.json @@ -0,0 +1,48 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ], + "Dependencies": [ + { + "Name": "NuGet.Frameworks", + "Version": "5.0.0" + }, + { + "Name": "System.Reflection.Metadata", + "Version": "1.6.0" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": null, + "HRef": null, + "Description": null + }, + { + "Subject": "repository", + "Code": "MIT", + "HRef": "https://github.com/microsoft/vstest", + "Description": null + }, + { + "Subject": "project", + "Code": "MIT", + "HRef": "https://github.com/microsoft/vstest/", + "Description": null + } + ] +} \ No newline at end of file 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/16.9.4/package-LICENSE_NET.txt new file mode 100644 index 00000000..5b03e9dc --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/package-LICENSE_NET.txt @@ -0,0 +1,65 @@ +MICROSOFT SOFTWARE LICENSE TERMS + +MICROSOFT .NET LIBRARY + +These license terms are an agreement between you and Microsoft Corporation (or based on where you live, one of its affiliates). They apply to the software named above. The terms also apply to any Microsoft services or updates for the software, except to the extent those have different terms. + +IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW. + +1. INSTALLATION AND USE RIGHTS. +You may install and use any number of copies of the software to develop and test your applications. + +2. THIRD PARTY COMPONENTS. The software may include third party components with separate legal notices or governed by other agreements, as may be described in the ThirdPartyNotices file(s) accompanying the software. +3. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS. +a. DISTRIBUTABLE CODE. The software is comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. +i. Right to Use and Distribute. +· You may copy and distribute the object code form of the software. + +· Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. + +ii. Distribution Requirements. For any Distributable Code you distribute, you must +· use the Distributable Code in your applications and not as a standalone distribution; + +· require distributors and external end users to agree to terms that protect it at least as much as this agreement; and + +· indemnify, defend, and hold harmless Microsoft from any claims, including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. + +iii. Distribution Restrictions. You may not +· use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or + +· modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An “Excluded License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. + +4. DATA. +a. Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may opt-out of many of these scenarios, but not all, as described in the software documentation. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these practices. +b. Processing of Personal Data. To the extent Microsoft is a processor or subprocessor of personal data in connection with the software, Microsoft makes the commitments in the European Union General Data Protection Regulation Terms of the Online Services Terms to all customers effective May 25, 2018, at https://docs.microsoft.com/en-us/legal/gdpr. +5. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not +· work around any technical limitations in the software; + +· reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; + +· remove, minimize, block or modify any notices of Microsoft or its suppliers in the software; + +· use the software in any way that is against the law; or + +· share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. + +6. EXPORT RESTRICTIONS. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information on export restrictions, visit www.microsoft.com/exporting. +7. SUPPORT SERVICES. Because this software is “as is,” we may not provide support services for it. +8. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. +9. APPLICABLE LAW. If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. +10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. Separate and apart from your relationship with Microsoft, you may also have rights with respect to the party from which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or mandatory country law applies, then the following provisions apply to you: +a) Australia. You have statutory guarantees under the Australian Consumer Law and nothing in this agreement is intended to affect those rights. +b) Canada. If you acquired this software in Canada, you may stop receiving updates by turning off the automatic update feature, disconnecting your device from the Internet (if and when you re-connect to the Internet, however, the software will resume checking for and installing updates), or uninstalling the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. +c) Germany and Austria. +(i) Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. + +(ii) Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. + +Subject to the foregoing clause (ii), Microsoft will only be liable for slight negligence if Microsoft is in breach of such material contractual obligations, the fulfillment of which facilitate the due performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence +11. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. +12. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. +This limitation applies to (a) anything related to the software, services, content (including code) on third party Internet sites, or third party applications; and (b) claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. + +It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your state or country may not allow the exclusion or limitation of incidental, consequential or other damages. + + \ No newline at end of file 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/16.9.4/package.nuspec new file mode 100644 index 00000000..cdbad1d8 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/package.nuspec @@ -0,0 +1,71 @@ + + + + Microsoft.TestPlatform.ObjectModel + 16.9.4 + Microsoft.TestPlatform.ObjectModel + Microsoft + Microsoft + true + LICENSE_NET.txt + https://aka.ms/deprecateLicenseUrl + Icon.png + https://github.com/microsoft/vstest/ + http://go.microsoft.com/fwlink/?LinkID=288859 + The Microsoft Test Platform Object Model. + © Microsoft Corporation. All rights reserved. + vstest visual-studio unittest testplatform mstest microsoft test testing + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file 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/16.9.4/project-LICENSE new file mode 100644 index 00000000..a31c5558 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/project-LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2020 Microsoft Corporation + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/readme.md new file mode 100644 index 00000000..3e61ed34 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/readme.md @@ -0,0 +1,31 @@ +Microsoft.TestPlatform.ObjectModel [16.9.4](https://www.nuget.org/packages/Microsoft.TestPlatform.ObjectModel/16.9.4) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, netcoreapp2.2, netcoreapp3.1 + +License: [MIT](../../../../licenses/mit) + +- package license: [Unknown]() +- repository license: [MIT](https://github.com/microsoft/vstest) +- project license: [MIT](https://github.com/microsoft/vstest/) + +Description +----------- +The Microsoft Test Platform Object Model. + +Remarks +----------- +no remarks + + +Dependencies 2 +----------- + +|Name|Version| +|----------|:----| +|[NuGet.Frameworks](../../../../packages/nuget.org/nuget.frameworks/5.0.0)|5.0.0| +|[System.Reflection.Metadata](../../../../packages/nuget.org/system.reflection.metadata/1.6.0)|1.6.0| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/remarks.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/remarks.md new file mode 100644 index 00000000..e69de29b 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/16.9.4/repository-LICENSE new file mode 100644 index 00000000..a31c5558 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/repository-LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2020 Microsoft Corporation + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..d190d80d --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/index.json @@ -0,0 +1,48 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ], + "Dependencies": [ + { + "Name": "Microsoft.TestPlatform.ObjectModel", + "Version": "16.9.4" + }, + { + "Name": "Newtonsoft.Json", + "Version": "13.0.1" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": null, + "HRef": null, + "Description": null + }, + { + "Subject": "repository", + "Code": "MIT", + "HRef": "https://github.com/microsoft/vstest", + "Description": null + }, + { + "Subject": "project", + "Code": "MIT", + "HRef": "https://github.com/microsoft/vstest/", + "Description": null + } + ] +} \ No newline at end of file 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/16.9.4/package-LICENSE_NET.txt new file mode 100644 index 00000000..5b03e9dc --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/package-LICENSE_NET.txt @@ -0,0 +1,65 @@ +MICROSOFT SOFTWARE LICENSE TERMS + +MICROSOFT .NET LIBRARY + +These license terms are an agreement between you and Microsoft Corporation (or based on where you live, one of its affiliates). They apply to the software named above. The terms also apply to any Microsoft services or updates for the software, except to the extent those have different terms. + +IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW. + +1. INSTALLATION AND USE RIGHTS. +You may install and use any number of copies of the software to develop and test your applications. + +2. THIRD PARTY COMPONENTS. The software may include third party components with separate legal notices or governed by other agreements, as may be described in the ThirdPartyNotices file(s) accompanying the software. +3. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS. +a. DISTRIBUTABLE CODE. The software is comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in applications you develop if you comply with the terms below. +i. Right to Use and Distribute. +· You may copy and distribute the object code form of the software. + +· Third Party Distribution. You may permit distributors of your applications to copy and distribute the Distributable Code as part of those applications. + +ii. Distribution Requirements. For any Distributable Code you distribute, you must +· use the Distributable Code in your applications and not as a standalone distribution; + +· require distributors and external end users to agree to terms that protect it at least as much as this agreement; and + +· indemnify, defend, and hold harmless Microsoft from any claims, including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified Distributable Code. + +iii. Distribution Restrictions. You may not +· use Microsoft’s trademarks in your applications’ names or in a way that suggests your applications come from or are endorsed by Microsoft; or + +· modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An “Excluded License” is one that requires, as a condition of use, modification or distribution of code, that (i) it be disclosed or distributed in source code form; or (ii) others have the right to modify it. + +4. DATA. +a. Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may opt-out of many of these scenarios, but not all, as described in the software documentation. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications together with Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and its use from the software documentation and our privacy statement. Your use of the software operates as your consent to these practices. +b. Processing of Personal Data. To the extent Microsoft is a processor or subprocessor of personal data in connection with the software, Microsoft makes the commitments in the European Union General Data Protection Regulation Terms of the Online Services Terms to all customers effective May 25, 2018, at https://docs.microsoft.com/en-us/legal/gdpr. +5. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not +· work around any technical limitations in the software; + +· reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software; + +· remove, minimize, block or modify any notices of Microsoft or its suppliers in the software; + +· use the software in any way that is against the law; or + +· share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party. + +6. EXPORT RESTRICTIONS. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information on export restrictions, visit www.microsoft.com/exporting. +7. SUPPORT SERVICES. Because this software is “as is,” we may not provide support services for it. +8. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. +9. APPLICABLE LAW. If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. +10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. Separate and apart from your relationship with Microsoft, you may also have rights with respect to the party from which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or mandatory country law applies, then the following provisions apply to you: +a) Australia. You have statutory guarantees under the Australian Consumer Law and nothing in this agreement is intended to affect those rights. +b) Canada. If you acquired this software in Canada, you may stop receiving updates by turning off the automatic update feature, disconnecting your device from the Internet (if and when you re-connect to the Internet, however, the software will resume checking for and installing updates), or uninstalling the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. +c) Germany and Austria. +(i) Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software. + +(ii) Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law. + +Subject to the foregoing clause (ii), Microsoft will only be liable for slight negligence if Microsoft is in breach of such material contractual obligations, the fulfillment of which facilitate the due performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence +11. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. +12. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. +This limitation applies to (a) anything related to the software, services, content (including code) on third party Internet sites, or third party applications; and (b) claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. + +It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your state or country may not allow the exclusion or limitation of incidental, consequential or other damages. + + \ No newline at end of file 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/16.9.4/package.nuspec new file mode 100644 index 00000000..61e5bd7d --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/package.nuspec @@ -0,0 +1,43 @@ + + + + Microsoft.TestPlatform.TestHost + 16.9.4 + Microsoft.TestPlatform.TestHost + Microsoft + Microsoft + true + LICENSE_NET.txt + https://aka.ms/deprecateLicenseUrl + Icon.png + https://github.com/microsoft/vstest/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Testplatform host executes the test using specified adapter. + © Microsoft Corporation. All rights reserved. + vstest visual-studio unittest testplatform mstest microsoft test testing + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file 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/16.9.4/project-LICENSE new file mode 100644 index 00000000..a31c5558 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/project-LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2020 Microsoft Corporation + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/readme.md new file mode 100644 index 00000000..01c0e607 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/readme.md @@ -0,0 +1,31 @@ +Microsoft.TestPlatform.TestHost [16.9.4](https://www.nuget.org/packages/Microsoft.TestPlatform.TestHost/16.9.4) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, netcoreapp2.2, netcoreapp3.1 + +License: [MIT](../../../../licenses/mit) + +- package license: [Unknown]() +- repository license: [MIT](https://github.com/microsoft/vstest) +- project license: [MIT](https://github.com/microsoft/vstest/) + +Description +----------- +Testplatform host executes the test using specified adapter. + +Remarks +----------- +no remarks + + +Dependencies 2 +----------- + +|Name|Version| +|----------|:----| +|[Microsoft.TestPlatform.ObjectModel](../../../../packages/nuget.org/microsoft.testplatform.objectmodel/16.9.4)|16.9.4| +|[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.testhost/16.9.4/remarks.md b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/remarks.md new file mode 100644 index 00000000..e69de29b 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/16.9.4/repository-LICENSE new file mode 100644 index 00000000..a31c5558 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/repository-LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2020 Microsoft Corporation + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.testplatform.testhost/16.9.4/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..ed93092e --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.5.0/index.json @@ -0,0 +1,43 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": false, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net452", + "netstandard2.0" + ], + "Dependencies": [ + { + "Name": "System.Security.AccessControl", + "Version": "4.5.0" + }, + { + "Name": "System.Security.Principal.Windows", + "Version": "4.5.0" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://github.com/dotnet/corefx/blob/master/LICENSE.TXT", + "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/microsoft.win32.registry/4.5.0/package-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.5.0/package-LICENSE.txt new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.5.0/package-LICENSE.txt @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.5.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.5.0/package.nuspec new file mode 100644 index 00000000..af8b2606 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.5.0/package.nuspec @@ -0,0 +1,91 @@ + + + + Microsoft.Win32.Registry + 4.5.0 + Microsoft.Win32.Registry + Microsoft + microsoft,dotnetframework + false + https://github.com/dotnet/corefx/blob/master/LICENSE.TXT + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides support for accessing and modifying the Windows Registry. + +Commonly Used Types: +Microsoft.Win32.RegistryKey +Microsoft.Win32.Registry +Microsoft.Win32.RegistryValueKind +Microsoft.Win32.RegistryHive +Microsoft.Win32.RegistryView + +30ab651fcb4354552bd4891619a0bdd81e0ebdbf +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/microsoft.win32.registry/4.5.0/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.5.0/readme.md new file mode 100644 index 00000000..087edfad --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.5.0/readme.md @@ -0,0 +1,40 @@ +Microsoft.Win32.Registry [4.5.0](https://www.nuget.org/packages/Microsoft.Win32.Registry/4.5.0) +-------------------- + +Used by: SqlDatabase + +Target frameworks: net452, net5.0, netcoreapp2.2, netcoreapp3.1, netstandard2.0 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://github.com/dotnet/corefx/blob/master/LICENSE.TXT) +- project license: [Unknown](https://dot.net/) , License should be verified on https://dot.net/ + +Description +----------- +Provides support for accessing and modifying the Windows Registry. + +Commonly Used Types: +Microsoft.Win32.RegistryKey +Microsoft.Win32.Registry +Microsoft.Win32.RegistryValueKind +Microsoft.Win32.RegistryHive +Microsoft.Win32.RegistryView + +30ab651fcb4354552bd4891619a0bdd81e0ebdbf +When using NuGet 3.x this package requires at least version 3.4. + +Remarks +----------- +no remarks + + +Dependencies 2 +----------- + +|Name|Version| +|----------|:----| +|[System.Security.AccessControl](../../../../packages/nuget.org/system.security.accesscontrol/4.5.0)|4.5.0| +|[System.Security.Principal.Windows](../../../../packages/nuget.org/system.security.principal.windows/4.5.0)|4.5.0| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.5.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.5.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.5.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.win32.registry/4.5.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..ff915420 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/index.json @@ -0,0 +1,33 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": false, + "TargetFrameworks": [ + "netcoreapp2.2", + "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 new file mode 100644 index 00000000..b2f52a2b --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/package-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/6.2.7/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/package.nuspec new file mode 100644 index 00000000..d3658265 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/package.nuspec @@ -0,0 +1,23 @@ + + + + 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 new file mode 100644 index 00000000..b2f52a2b --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/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/6.2.7/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/readme.md new file mode 100644 index 00000000..6e10ea0f --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/6.2.7/readme.md @@ -0,0 +1,26 @@ +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.2, 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 new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..ff915420 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.0.5/index.json @@ -0,0 +1,33 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": false, + "TargetFrameworks": [ + "netcoreapp2.2", + "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/7.0.5/package-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.0.5/package-LICENSE.txt new file mode 100644 index 00000000..b2f52a2b --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.0.5/package-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.0.5/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.0.5/package.nuspec new file mode 100644 index 00000000..931c7132 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.0.5/package.nuspec @@ -0,0 +1,23 @@ + + + + Microsoft.WSMan.Runtime + 7.0.5 + 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 + 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.0.5/project-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.0.5/project-LICENSE.txt new file mode 100644 index 00000000..b2f52a2b --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.0.5/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.0.5/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.0.5/readme.md new file mode 100644 index 00000000..c512b89a --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.0.5/readme.md @@ -0,0 +1,26 @@ +Microsoft.WSMan.Runtime [7.0.5](https://www.nuget.org/packages/Microsoft.WSMan.Runtime/7.0.5) +-------------------- + +Used by: SqlDatabase + +Target frameworks: net452, net5.0, netcoreapp2.2, 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 +----------- +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.0.5/remarks.md b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.0.5/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.0.5/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.0.5/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..86ccee66 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.1.2/index.json @@ -0,0 +1,33 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": false, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.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.1.2/package.nuspec b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.1.2/package.nuspec new file mode 100644 index 00000000..8c9564b2 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.1.2/package.nuspec @@ -0,0 +1,24 @@ + + + + Microsoft.WSMan.Runtime + 7.1.2 + 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.1.2/project-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.1.2/project-LICENSE.txt new file mode 100644 index 00000000..b2f52a2b --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.1.2/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.1.2/readme.md b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.1.2/readme.md new file mode 100644 index 00000000..c5cb6b3b --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.1.2/readme.md @@ -0,0 +1,26 @@ +Microsoft.WSMan.Runtime [7.1.2](https://www.nuget.org/packages/Microsoft.WSMan.Runtime/7.1.2) +-------------------- + +Used by: SqlDatabase + +Target frameworks: net452, net5.0, netcoreapp2.2, 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.1.2/remarks.md b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.1.2/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.1.2/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/microsoft.wsman.runtime/7.1.2/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 new file mode 100644 index 00000000..ca8f4e93 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/moq/4.16.1/index.json @@ -0,0 +1,44 @@ +{ + "License": { + "Code": "BSD-3-Clause", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ], + "Dependencies": [ + { + "Name": "Castle.Core", + "Version": "4.4.0" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": null, + "HRef": "https://raw.githubusercontent.com/moq/moq4/master/License.txt", + "Description": "License should be verified on https://raw.githubusercontent.com/moq/moq4/master/License.txt" + }, + { + "Subject": "repository", + "Code": null, + "HRef": "https://github.com/moq/moq4", + "Description": "License should be verified on https://github.com/moq/moq4" + }, + { + "Subject": "project", + "Code": null, + "HRef": "https://github.com/moq/moq4", + "Description": "License should be verified on https://github.com/moq/moq4" + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/moq/4.16.1/package-License.txt b/Build/third-party-libraries/packages/nuget.org/moq/4.16.1/package-License.txt new file mode 100644 index 00000000..048dc06e --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/moq/4.16.1/package-License.txt @@ -0,0 +1,29 @@ +BSD 3-Clause License + +Copyright (c) 2007, Clarius Consulting, Manas Technology Solutions, InSTEDD, +and Contributors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the copyright holders nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/Build/third-party-libraries/packages/nuget.org/moq/4.16.1/package.nuspec b/Build/third-party-libraries/packages/nuget.org/moq/4.16.1/package.nuspec new file mode 100644 index 00000000..09cd6f84 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/moq/4.16.1/package.nuspec @@ -0,0 +1,33 @@ + + + + Moq + 4.16.1 + Moq: an enjoyable mocking library + Daniel Cazzulino, kzu + false + https://raw.githubusercontent.com/moq/moq4/master/License.txt + moq.png + https://github.com/moq/moq4 + Moq is the most popular and friendly mocking framework for .NET. + +Built from https://github.com/moq/moq4/tree/fc484fb85 + A changelog is available at https://github.com/moq/moq4/blob/master/CHANGELOG.md. + moq tdd mocking mocks unittesting agile unittest + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/moq/4.16.1/project-License.txt b/Build/third-party-libraries/packages/nuget.org/moq/4.16.1/project-License.txt new file mode 100644 index 00000000..048dc06e --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/moq/4.16.1/project-License.txt @@ -0,0 +1,29 @@ +BSD 3-Clause License + +Copyright (c) 2007, Clarius Consulting, Manas Technology Solutions, InSTEDD, +and Contributors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the copyright holders nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 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 new file mode 100644 index 00000000..2fed2db4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/moq/4.16.1/readme.md @@ -0,0 +1,32 @@ +Moq [4.16.1](https://www.nuget.org/packages/Moq/4.16.1) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, netcoreapp2.2, netcoreapp3.1 + +License: [BSD-3-Clause](../../../../licenses/bsd-3-clause) + +- package license: [Unknown](https://raw.githubusercontent.com/moq/moq4/master/License.txt) , License should be verified on https://raw.githubusercontent.com/moq/moq4/master/License.txt +- repository license: [Unknown](https://github.com/moq/moq4) , License should be verified on https://github.com/moq/moq4 +- project license: [Unknown](https://github.com/moq/moq4) , License should be verified on https://github.com/moq/moq4 + +Description +----------- +Moq is the most popular and friendly mocking framework for .NET. + +Built from https://github.com/moq/moq4/tree/fc484fb85 + +Remarks +----------- +no remarks + + +Dependencies 1 +----------- + +|Name|Version| +|----------|:----| +|[Castle.Core](../../../../packages/nuget.org/castle.core/4.4.0)|4.4.0| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/moq/4.16.1/remarks.md b/Build/third-party-libraries/packages/nuget.org/moq/4.16.1/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/moq/4.16.1/repository-License.txt b/Build/third-party-libraries/packages/nuget.org/moq/4.16.1/repository-License.txt new file mode 100644 index 00000000..048dc06e --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/moq/4.16.1/repository-License.txt @@ -0,0 +1,29 @@ +BSD 3-Clause License + +Copyright (c) 2007, Clarius Consulting, Manas Technology Solutions, InSTEDD, +and Contributors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the copyright holders nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/Build/third-party-libraries/packages/nuget.org/moq/4.16.1/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/moq/4.16.1/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..356aae31 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/netstandard.library/2.0.3/index.json @@ -0,0 +1,33 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": false, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net452", + "netstandard2.0" + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://github.com/dotnet/standard/blob/master/LICENSE.TXT", + "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/netstandard.library/2.0.3/package-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/netstandard.library/2.0.3/package-LICENSE.txt new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/netstandard.library/2.0.3/package-LICENSE.txt @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/netstandard.library/2.0.3/package.nuspec b/Build/third-party-libraries/packages/nuget.org/netstandard.library/2.0.3/package.nuspec new file mode 100644 index 00000000..c6b8c1a9 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/netstandard.library/2.0.3/package.nuspec @@ -0,0 +1,399 @@ + + + + NETStandard.Library + 2.0.3 + NETStandard.Library + Microsoft + microsoft,dotnetframework + false + https://github.com/dotnet/standard/blob/master/LICENSE.TXT + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + A set of standard .NET APIs that are prescribed to be used and supported together. +18a36291e48808fa7ef2d00a764ceb1ec95645a5 +When using NuGet 3.x this package requires at least version 3.4. + https://go.microsoft.com/fwlink/?LinkID=799421 + .NET Foundation and Contributors + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file 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 new file mode 100644 index 00000000..367e0d23 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/netstandard.library/2.0.3/readme.md @@ -0,0 +1,28 @@ +NETStandard.Library [2.0.3](https://www.nuget.org/packages/NETStandard.Library/2.0.3) +-------------------- + +Used by: SqlDatabase + +Target frameworks: net452, net5.0, netcoreapp2.2, netcoreapp3.1, netstandard2.0 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://github.com/dotnet/standard/blob/master/LICENSE.TXT) +- project license: [Unknown](https://dot.net/) , License should be verified on https://dot.net/ + +Description +----------- +A set of standard .NET APIs that are prescribed to be used and supported together. +18a36291e48808fa7ef2d00a764ceb1ec95645a5 +When using NuGet 3.x this package requires at least version 3.4. + +Remarks +----------- +no remarks + + +Dependencies 0 +----------- + + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/netstandard.library/2.0.3/remarks.md b/Build/third-party-libraries/packages/nuget.org/netstandard.library/2.0.3/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/netstandard.library/2.0.3/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/netstandard.library/2.0.3/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..07925c48 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/index.json @@ -0,0 +1,38 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://licenses.nuget.org/MIT", + "Description": null + }, + { + "Subject": "repository", + "Code": "MIT", + "HRef": "https://github.com/JamesNK/Newtonsoft.Json", + "Description": null + }, + { + "Subject": "project", + "Code": null, + "HRef": "https://www.newtonsoft.com/json", + "Description": "License should be verified on https://www.newtonsoft.com/json" + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/package-LICENSE.md b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/package-LICENSE.md new file mode 100644 index 00000000..dfaadbe4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/package-LICENSE.md @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2007 James Newton-King + +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/newtonsoft.json/13.0.1/package.nuspec b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/package.nuspec new file mode 100644 index 00000000..23ab73b3 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/package.nuspec @@ -0,0 +1,39 @@ + + + + Newtonsoft.Json + 13.0.1 + Json.NET + James Newton-King + false + MIT + https://licenses.nuget.org/MIT + packageIcon.png + https://www.newtonsoft.com/json + Json.NET is a popular high-performance JSON framework for .NET + Copyright © James Newton-King 2008 + json + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file 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 new file mode 100644 index 00000000..c971a418 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/readme.md @@ -0,0 +1,27 @@ +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.2, netcoreapp3.1 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://licenses.nuget.org/MIT) +- repository license: [MIT](https://github.com/JamesNK/Newtonsoft.Json) +- project license: [Unknown](https://www.newtonsoft.com/json) , License should be verified on https://www.newtonsoft.com/json + +Description +----------- +Json.NET is a popular high-performance JSON framework for .NET + +Remarks +----------- +no remarks + + +Dependencies 0 +----------- + + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/remarks.md b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/repository-LICENSE.md b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/repository-LICENSE.md new file mode 100644 index 00000000..dfaadbe4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/repository-LICENSE.md @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2007 James Newton-King + +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/newtonsoft.json/13.0.1/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/newtonsoft.json/13.0.1/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..ec3787df --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/nuget.frameworks/5.0.0/index.json @@ -0,0 +1,38 @@ +{ + "License": { + "Code": "Apache-2.0", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "Apache-2.0", + "HRef": "https://licenses.nuget.org/Apache-2.0", + "Description": null + }, + { + "Subject": "repository", + "Code": null, + "HRef": "https://github.com/NuGet/NuGet.Client", + "Description": "License should be verified on https://github.com/NuGet/NuGet.Client" + }, + { + "Subject": "project", + "Code": null, + "HRef": "https://aka.ms/nugetprj", + "Description": "License should be verified on https://aka.ms/nugetprj" + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/nuget.frameworks/5.0.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/nuget.frameworks/5.0.0/package.nuspec new file mode 100644 index 00000000..24e1e4f9 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/nuget.frameworks/5.0.0/package.nuspec @@ -0,0 +1,24 @@ + + + + NuGet.Frameworks + 5.0.0+42a8779499c1d1ed2488c2e6b9e2ee6ff6107766 + Microsoft + Microsoft + true + Apache-2.0 + https://licenses.nuget.org/Apache-2.0 + https://aka.ms/nugetprj + https://raw.githubusercontent.com/NuGet/Media/master/Images/MainLogo/256x256/nuget_256.png + The understanding of target frameworks for NuGet.Packaging. + © Microsoft Corporation. All rights reserved. + nuget + true + + + + + + + + \ No newline at end of file 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 new file mode 100644 index 00000000..fb0c74ed --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/nuget.frameworks/5.0.0/readme.md @@ -0,0 +1,27 @@ +NuGet.Frameworks [5.0.0](https://www.nuget.org/packages/NuGet.Frameworks/5.0.0%2b42a8779499c1d1ed2488c2e6b9e2ee6ff6107766) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, netcoreapp2.2, 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/NuGet/NuGet.Client) , License should be verified on https://github.com/NuGet/NuGet.Client +- project license: [Unknown](https://aka.ms/nugetprj) , License should be verified on https://aka.ms/nugetprj + +Description +----------- +The understanding of target frameworks for NuGet.Packaging. + +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/nuget.frameworks/5.0.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/nuget.frameworks/5.0.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/nuget.frameworks/5.0.0/repository-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/nuget.frameworks/5.0.0/repository-LICENSE.txt new file mode 100644 index 00000000..86930deb --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/nuget.frameworks/5.0.0/repository-LICENSE.txt @@ -0,0 +1,15 @@ +Copyright (c) .NET Foundation and Contributors. + +All rights reserved. + + +Licensed under the Apache License, Version 2.0 (the "License"); you may not use +these files except in compliance with the License. You may obtain a copy of the +License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed +under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR +CONDITIONS OF ANY KIND, either express or implied. See the License for the +specific language governing permissions and limitations under the License. diff --git a/Build/third-party-libraries/packages/nuget.org/nuget.frameworks/5.0.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/nuget.frameworks/5.0.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..dae89141 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/nunit/3.13.1/index.json @@ -0,0 +1,38 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": null, + "HRef": null, + "Description": null + }, + { + "Subject": "repository", + "Code": "MIT", + "HRef": "https://github.com/nunit/nunit", + "Description": null + }, + { + "Subject": "project", + "Code": null, + "HRef": "https://nunit.org/", + "Description": "License should be verified on https://nunit.org/" + } + ] +} \ No newline at end of file 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.1/package-LICENSE.txt new file mode 100644 index 00000000..29f0e2ea --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/nunit/3.13.1/package-LICENSE.txt @@ -0,0 +1,20 @@ +Copyright (c) 2021 Charlie Poole, Rob Prouse + +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/nunit/3.13.1/package.nuspec b/Build/third-party-libraries/packages/nuget.org/nunit/3.13.1/package.nuspec new file mode 100644 index 00000000..933aa749 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/nunit/3.13.1/package.nuspec @@ -0,0 +1,37 @@ + + + + NUnit + 3.13.1 + NUnit + Charlie Poole, Rob Prouse + Charlie Poole, Rob Prouse + false + LICENSE.txt + https://aka.ms/deprecateLicenseUrl + icon.png + https://nunit.org/ + https://cdn.rawgit.com/nunit/resources/master/images/icon/nunit_256.png + NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible. + +This package includes the NUnit 3 framework assembly, which is referenced by your tests. You will need to install version 3 of the nunit3-console program or a third-party runner that supports NUnit 3 in order to execute tests. Runners intended for use with NUnit 2.x will not run NUnit 3 tests correctly. + +Supported platforms: +- .NET Framework 3.5+ +- .NET Standard 2.0+ + NUnit is a unit-testing framework for all .NET languages with a strong TDD focus. + This package includes the NUnit 3 framework assembly, which is referenced by your tests. You will need to install version 3 of the nunit3-console program or a third-party runner that supports NUnit 3 in order to execute tests. Runners intended for use with NUnit 2.x will not run NUnit 3 tests correctly. + Copyright (c) 2021 Charlie Poole, Rob Prouse + en-US + nunit test testing tdd framework fluent assert theory plugin addin + + + + + + + + + + + \ No newline at end of file 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 new file mode 100644 index 00000000..b554aa1b --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/nunit/3.13.1/readme.md @@ -0,0 +1,33 @@ +NUnit [3.13.1](https://www.nuget.org/packages/NUnit/3.13.1) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, netcoreapp2.2, netcoreapp3.1 + +License: [MIT](../../../../licenses/mit) + +- package license: [Unknown]() +- repository license: [MIT](https://github.com/nunit/nunit) +- project license: [Unknown](https://nunit.org/) , License should be verified on https://nunit.org/ + +Description +----------- +NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible. + +This package includes the NUnit 3 framework assembly, which is referenced by your tests. You will need to install version 3 of the nunit3-console program or a third-party runner that supports NUnit 3 in order to execute tests. Runners intended for use with NUnit 2.x will not run NUnit 3 tests correctly. + +Supported platforms: +- .NET Framework 3.5+ +- .NET Standard 2.0+ + +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/nunit/3.13.1/remarks.md new file mode 100644 index 00000000..e69de29b 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.1/repository-LICENSE.txt new file mode 100644 index 00000000..29f0e2ea --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/nunit/3.13.1/repository-LICENSE.txt @@ -0,0 +1,20 @@ +Copyright (c) 2021 Charlie Poole, Rob Prouse + +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/nunit/3.13.1/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/nunit/3.13.1/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..059f316b --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/index.json @@ -0,0 +1,68 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ], + "Dependencies": [ + { + "Name": "Microsoft.DotNet.InternalAbstractions", + "Version": "1.0.0" + }, + { + "Name": "System.ComponentModel.EventBasedAsync", + "Version": "4.3.0" + }, + { + "Name": "System.ComponentModel.TypeConverter", + "Version": "4.3.0" + }, + { + "Name": "System.Runtime.InteropServices.RuntimeInformation", + "Version": "4.3.0" + }, + { + "Name": "System.Threading.Thread", + "Version": "4.3.0" + }, + { + "Name": "System.Xml.XPath.XmlDocument", + "Version": "4.3.0" + }, + { + "Name": "System.Xml.XmlDocument", + "Version": "4.3.0" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": null, + "HRef": null, + "Description": null + }, + { + "Subject": "repository", + "Code": "MIT", + "HRef": "https://github.com/nunit/nunit3-vs-adapter", + "Description": null + }, + { + "Subject": "project", + "Code": null, + "HRef": "https://github.com/nunit/docs/wiki/Visual-Studio-Test-Adapter", + "Description": "License should be verified on https://github.com/nunit/docs/wiki/Visual-Studio-Test-Adapter" + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/package-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/package-LICENSE.txt new file mode 100644 index 00000000..853e5f5a --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/package-LICENSE.txt @@ -0,0 +1,20 @@ +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 new file mode 100644 index 00000000..eb3ea9cc --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/package.nuspec @@ -0,0 +1,40 @@ + + + + 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 new file mode 100644 index 00000000..a4c1ba8c --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/readme.md @@ -0,0 +1,41 @@ +NUnit3TestAdapter [3.17.0](https://www.nuget.org/packages/NUnit3TestAdapter/3.17.0) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, netcoreapp2.2, netcoreapp3.1 + +License: [MIT](../../../../licenses/mit) + +- package license: [Unknown]() +- repository license: [MIT](https://github.com/nunit/nunit3-vs-adapter) +- project license: [Unknown](https://github.com/nunit/docs/wiki/Visual-Studio-Test-Adapter) , License should be verified on https://github.com/nunit/docs/wiki/Visual-Studio-Test-Adapter + +Description +----------- +The NUnit3 TestAdapter for Visual Studio, all versions from 2012 and onwards, and DotNet (incl. .Net core). + + Note that this package ONLY contains the adapter, not the NUnit framework. + For VS 2017 and forward, you should add this package to every test project in your solution. (Earlier versions only require a single adapter package per solution.) + + Note that with this package you should not install the VSIX adapter package. + +Remarks +----------- +no remarks + + +Dependencies 7 +----------- + +|Name|Version| +|----------|:----| +|[Microsoft.DotNet.InternalAbstractions](../../../../packages/nuget.org/microsoft.dotnet.internalabstractions/1.0.0)|1.0.0| +|[System.ComponentModel.EventBasedAsync](../../../../packages/nuget.org/system.componentmodel.eventbasedasync/4.3.0)|4.3.0| +|[System.ComponentModel.TypeConverter](../../../../packages/nuget.org/system.componentmodel.typeconverter/4.3.0)|4.3.0| +|[System.Runtime.InteropServices.RuntimeInformation](../../../../packages/nuget.org/system.runtime.interopservices.runtimeinformation/4.3.0)|4.3.0| +|[System.Threading.Thread](../../../../packages/nuget.org/system.threading.thread/4.3.0)|4.3.0| +|[System.Xml.XPath.XmlDocument](../../../../packages/nuget.org/system.xml.xpath.xmldocument/4.3.0)|4.3.0| +|[System.Xml.XmlDocument](../../../../packages/nuget.org/system.xml.xmldocument/4.3.0)|4.3.0| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/remarks.md new file mode 100644 index 00000000..e69de29b 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/3.17.0/repository-LICENSE new file mode 100644 index 00000000..c3628f78 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/repository-LICENSE @@ -0,0 +1,22 @@ +MIT License + +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/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/nunit3testadapter/3.17.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..91ab4139 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.0/index.json @@ -0,0 +1,34 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": false, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net452", + "netstandard2.0", + "net472" + ] + } + ], + "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/PowerShellStandard", + "Description": null + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.0/package-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.0/package-LICENSE.txt new file mode 100644 index 00000000..b2f52a2b --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.0/package-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/powershellstandard.library/5.1.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.0/package.nuspec new file mode 100644 index 00000000..095a9895 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.0/package.nuspec @@ -0,0 +1,19 @@ + + + + PowerShellStandard.Library + 5.1.0 + Microsoft + Microsoft,PowerShellTeam + false + https://github.com/PowerShell/PowerShell/blob/master/LICENSE.txt + https://github.com/PowerShell/PowerShellStandard + https://github.com/PowerShell/PowerShell/blob/master/assets/Powershell_64.png + Contains the reference assemblies for PowerShell Standard 5 + © Microsoft Corporation. All rights reserved. + PowerShell, reference, netstandard2, netstandard2.0 + + + + + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.0/project-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.0/project-LICENSE.txt new file mode 100644 index 00000000..b2f52a2b --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.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/powershellstandard.library/5.1.0/readme.md b/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.0/readme.md new file mode 100644 index 00000000..61ca46e0 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.0/readme.md @@ -0,0 +1,26 @@ +PowerShellStandard.Library [5.1.0](https://www.nuget.org/packages/PowerShellStandard.Library/5.1.0) +-------------------- + +Used by: SqlDatabase + +Target frameworks: net452, net472, net5.0, netcoreapp2.2, 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/PowerShellStandard) + +Description +----------- +Contains the reference assemblies for PowerShell Standard 5 + +Remarks +----------- +no remarks + + +Dependencies 0 +----------- + + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/powershellstandard.library/5.1.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..befc8666 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/shouldly/4.0.3/index.json @@ -0,0 +1,48 @@ +{ + "License": { + "Code": "BSD-2-Clause", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ], + "Dependencies": [ + { + "Name": "DiffEngine", + "Version": "6.4.9" + }, + { + "Name": "EmptyFiles", + "Version": "2.3.3" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "BSD-2-Clause", + "HRef": "https://licenses.nuget.org/BSD-2-Clause", + "Description": null + }, + { + "Subject": "repository", + "Code": null, + "HRef": "https://github.com/shouldly/shouldly.git", + "Description": "License should be verified on https://github.com/shouldly/shouldly.git" + }, + { + "Subject": "project", + "Code": null, + "HRef": "https://github.com/shouldly/shouldly", + "Description": "License should be verified on https://github.com/shouldly/shouldly" + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/shouldly/4.0.3/package.nuspec b/Build/third-party-libraries/packages/nuget.org/shouldly/4.0.3/package.nuspec new file mode 100644 index 00000000..e21a4e0c --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/shouldly/4.0.3/package.nuspec @@ -0,0 +1,25 @@ + + + + Shouldly + 4.0.3 + Jake Ginnivan, Joseph Woodward, Simon Cropp + false + BSD-2-Clause + https://licenses.nuget.org/BSD-2-Clause + assets/logo_128x128.png + https://github.com/shouldly/shouldly + Shouldly - Assertion framework for .NET. The way asserting *Should* be + https://github.com/shouldly/releases/tag/4.0.3 + test unit testing TDD AAA should testunit rspec assert assertion framework + + + + + + + + + + + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/shouldly/4.0.3/project-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/shouldly/4.0.3/project-LICENSE.txt new file mode 100644 index 00000000..2b31d119 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/shouldly/4.0.3/project-LICENSE.txt @@ -0,0 +1,24 @@ +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + * Neither the names of the copyright holders nor the names of + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF +THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +[ http://www.opensource.org/licenses/bsd-license.php ] \ No newline at end of file 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 new file mode 100644 index 00000000..881dfe1a --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/shouldly/4.0.3/readme.md @@ -0,0 +1,31 @@ +Shouldly [4.0.3](https://www.nuget.org/packages/Shouldly/4.0.3) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, netcoreapp2.2, netcoreapp3.1 + +License: [BSD-2-Clause](../../../../licenses/bsd-2-clause) + +- package license: [BSD-2-Clause](https://licenses.nuget.org/BSD-2-Clause) +- repository license: [Unknown](https://github.com/shouldly/shouldly.git) , License should be verified on https://github.com/shouldly/shouldly.git +- project license: [Unknown](https://github.com/shouldly/shouldly) , License should be verified on https://github.com/shouldly/shouldly + +Description +----------- +Shouldly - Assertion framework for .NET. The way asserting *Should* be + +Remarks +----------- +no remarks + + +Dependencies 2 +----------- + +|Name|Version| +|----------|:----| +|[DiffEngine](../../../../packages/nuget.org/diffengine/6.4.9)|6.4.9| +|[EmptyFiles](../../../../packages/nuget.org/emptyfiles/2.3.3)|2.3.3| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/shouldly/4.0.3/remarks.md b/Build/third-party-libraries/packages/nuget.org/shouldly/4.0.3/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/shouldly/4.0.3/repository-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/shouldly/4.0.3/repository-LICENSE.txt new file mode 100644 index 00000000..2b31d119 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/shouldly/4.0.3/repository-LICENSE.txt @@ -0,0 +1,24 @@ +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + * Neither the names of the copyright holders nor the names of + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF +THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +[ http://www.opensource.org/licenses/bsd-license.php ] \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/shouldly/4.0.3/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/shouldly/4.0.3/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..cd6f444e --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/index.json @@ -0,0 +1,34 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net452", + "netstandard2.0", + "net472" + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://licenses.nuget.org/MIT", + "Description": null + }, + { + "Subject": "project", + "Code": "MIT", + "HRef": "https://github.com/DotNetAnalyzers/StyleCopAnalyzers", + "Description": null + } + ] +} \ No newline at end of file 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.333/package-LICENSE new file mode 100644 index 00000000..5b50c096 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/package-LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) Tunnel Vision Laboratories, LLC + +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/stylecop.analyzers.unstable/1.2.0.333/package.nuspec b/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/package.nuspec new file mode 100644 index 00000000..0e37700e --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/package.nuspec @@ -0,0 +1,19 @@ + + + + StyleCop.Analyzers.Unstable + 1.2.0.333 + StyleCop.Analyzers.Unstable + Sam Harwell et. al. + Sam Harwell + true + false + MIT + 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 + Copyright 2015 Tunnel Vision Laboratories, LLC + StyleCop DotNetAnalyzers Roslyn Diagnostic Analyzer + + \ No newline at end of file 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.333/project-LICENSE new file mode 100644 index 00000000..5b50c096 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/project-LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) Tunnel Vision Laboratories, LLC + +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/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 new file mode 100644 index 00000000..fc568653 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/readme.md @@ -0,0 +1,26 @@ +StyleCop.Analyzers.Unstable [1.2.0.333](https://www.nuget.org/packages/StyleCop.Analyzers.Unstable/1.2.0.333) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net452, net472, net5.0, netcoreapp2.2, netcoreapp3.1, netstandard2.0 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://licenses.nuget.org/MIT) +- project license: [MIT](https://github.com/DotNetAnalyzers/StyleCopAnalyzers) + +Description +----------- +An implementation of StyleCop's rules using Roslyn analyzers and code fixes + +Remarks +----------- +no remarks + + +Dependencies 0 +----------- + + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/remarks.md b/Build/third-party-libraries/packages/nuget.org/stylecop.analyzers.unstable/1.2.0.333/remarks.md new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..0397d25c --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.appcontext/4.1.0/index.json @@ -0,0 +1,32 @@ +{ + "License": { + "Code": "ms-net-library", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "ms-net-library", + "HRef": "http://go.microsoft.com/fwlink/?LinkId=329770", + "Description": null + }, + { + "Subject": "project", + "Code": null, + "HRef": "https://dot.net/", + "Description": "License should be verified on https://dot.net/" + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.appcontext/4.1.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.appcontext/4.1.0/package.nuspec new file mode 100644 index 00000000..3377973d --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.appcontext/4.1.0/package.nuspec @@ -0,0 +1,49 @@ + + + + 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 new file mode 100644 index 00000000..90674f6c --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.appcontext/4.1.0/readme.md @@ -0,0 +1,31 @@ +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.2, 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 new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..4518b6a9 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.4.0/index.json @@ -0,0 +1,33 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": false, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net452", + "netstandard2.0" + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://github.com/dotnet/corefx/blob/master/LICENSE.TXT", + "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.buffers/4.4.0/package-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.4.0/package-LICENSE.txt new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.4.0/package-LICENSE.txt @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.buffers/4.4.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.4.0/package.nuspec new file mode 100644 index 00000000..a4debfc2 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.4.0/package.nuspec @@ -0,0 +1,37 @@ + + + + System.Buffers + 4.4.0 + System.Buffers + Microsoft + microsoft,dotnetframework + false + https://github.com/dotnet/corefx/blob/master/LICENSE.TXT + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides resource pooling of any type for performance-critical applications that allocate and deallocate objects frequently. + +Commonly Used Types: +System.Buffers.ArrayPool<T> + +8321c729934c0f8be754953439b88e6e1c120c24 +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.buffers/4.4.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.4.0/readme.md new file mode 100644 index 00000000..006b67e8 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.4.0/readme.md @@ -0,0 +1,32 @@ +System.Buffers [4.4.0](https://www.nuget.org/packages/System.Buffers/4.4.0) +-------------------- + +Used by: SqlDatabase + +Target frameworks: net452, net5.0, netcoreapp2.2, netcoreapp3.1, netstandard2.0 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://github.com/dotnet/corefx/blob/master/LICENSE.TXT) +- project license: [Unknown](https://dot.net/) , License should be verified on https://dot.net/ + +Description +----------- +Provides resource pooling of any type for performance-critical applications that allocate and deallocate objects frequently. + +Commonly Used Types: +System.Buffers.ArrayPool + +8321c729934c0f8be754953439b88e6e1c120c24 +When using NuGet 3.x this package requires at least version 3.4. + +Remarks +----------- +no remarks + + +Dependencies 0 +----------- + + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.buffers/4.4.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.4.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.buffers/4.4.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.4.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..cf5ff9ee --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/index.json @@ -0,0 +1,32 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://github.com/dotnet/corefx/blob/master/LICENSE.TXT", + "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.buffers/4.5.1/package-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/package-LICENSE.txt new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/package-LICENSE.txt @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/package.nuspec new file mode 100644 index 00000000..fbcedc78 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/package.nuspec @@ -0,0 +1,45 @@ + + + + System.Buffers + 4.5.1 + System.Buffers + Microsoft + microsoft,dotnetframework + false + https://github.com/dotnet/corefx/blob/master/LICENSE.TXT + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides resource pooling of any type for performance-critical applications that allocate and deallocate objects frequently. + +Commonly Used Types: +System.Buffers.ArrayPool<T> + +7601f4f6225089ffb291dc7d58293c7bbf5c5d4f +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.buffers/4.5.1/readme.md b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/readme.md new file mode 100644 index 00000000..144c332f --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/readme.md @@ -0,0 +1,32 @@ +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.2, netcoreapp3.1 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://github.com/dotnet/corefx/blob/master/LICENSE.TXT) +- project license: [Unknown](https://dot.net/) , License should be verified on https://dot.net/ + +Description +----------- +Provides resource pooling of any type for performance-critical applications that allocate and deallocate objects frequently. + +Commonly Used Types: +System.Buffers.ArrayPool + +7601f4f6225089ffb291dc7d58293c7bbf5c5d4f +When using NuGet 3.x this package requires at least version 3.4. + +Remarks +----------- +no remarks + + +Dependencies 0 +----------- + + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.buffers/4.5.1/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..39f87c94 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.collections.nongeneric/4.3.0/index.json @@ -0,0 +1,38 @@ +{ + "License": { + "Code": "ms-net-library", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ], + "Dependencies": [ + { + "Name": "System.Threading", + "Version": "4.3.0" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "ms-net-library", + "HRef": "http://go.microsoft.com/fwlink/?LinkId=329770", + "Description": null + }, + { + "Subject": "project", + "Code": null, + "HRef": "https://dot.net/", + "Description": "License should be verified on https://dot.net/" + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.collections.nongeneric/4.3.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.collections.nongeneric/4.3.0/package.nuspec new file mode 100644 index 00000000..8ccec465 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.collections.nongeneric/4.3.0/package.nuspec @@ -0,0 +1,53 @@ + + + + System.Collections.NonGeneric + 4.3.0 + System.Collections.NonGeneric + Microsoft + microsoft,dotnetframework + true + http://go.microsoft.com/fwlink/?LinkId=329770 + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides classes that define older non-generic collections of objects, such as lists, queues, hash tables and dictionaries. Developers should prefer the generic collections in the System.Collections package. + +Commonly Used Types: +System.Collections.ArrayList +System.Collections.Hashtable +System.Collections.CollectionBase +System.Collections.ReadOnlyCollectionBase +System.Collections.Stack +System.Collections.SortedList +System.Collections.DictionaryBase +System.Collections.Queue +System.Collections.Comparer +System.Collections.CaseInsensitiveComparer + +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.collections.nongeneric/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.collections.nongeneric/4.3.0/readme.md new file mode 100644 index 00000000..4ec215e7 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.collections.nongeneric/4.3.0/readme.md @@ -0,0 +1,43 @@ +System.Collections.NonGeneric [4.3.0](https://www.nuget.org/packages/System.Collections.NonGeneric/4.3.0) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, netcoreapp2.2, 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 classes that define older non-generic collections of objects, such as lists, queues, hash tables and dictionaries. Developers should prefer the generic collections in the System.Collections package. + +Commonly Used Types: +System.Collections.ArrayList +System.Collections.Hashtable +System.Collections.CollectionBase +System.Collections.ReadOnlyCollectionBase +System.Collections.Stack +System.Collections.SortedList +System.Collections.DictionaryBase +System.Collections.Queue +System.Collections.Comparer +System.Collections.CaseInsensitiveComparer + +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.collections.nongeneric/4.3.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.collections.nongeneric/4.3.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.collections.nongeneric/4.3.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.collections.nongeneric/4.3.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..def3298c --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.collections.specialized/4.3.0/index.json @@ -0,0 +1,42 @@ +{ + "License": { + "Code": "ms-net-library", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ], + "Dependencies": [ + { + "Name": "System.Collections.NonGeneric", + "Version": "4.3.0" + }, + { + "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.collections.specialized/4.3.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.collections.specialized/4.3.0/package.nuspec new file mode 100644 index 00000000..96aa86b4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.collections.specialized/4.3.0/package.nuspec @@ -0,0 +1,53 @@ + + + + System.Collections.Specialized + 4.3.0 + System.Collections.Specialized + Microsoft + microsoft,dotnetframework + true + http://go.microsoft.com/fwlink/?LinkId=329770 + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides older specialized non-generic collections; for example, a linked list dictionary, a bit vector, and collections that contain only strings. + +Commonly Used Types: +System.Collections.Specialized.NameValueCollection +System.Collections.Specialized.NameObjectCollectionBase +System.Collections.Specialized.StringCollection +System.Collections.Specialized.IOrderedDictionary +System.Collections.Specialized.HybridDictionary +System.Collections.Specialized.OrderedDictionary +System.Collections.Specialized.ListDictionary +System.Collections.Specialized.StringDictionary +System.Collections.Specialized.BitVector32 + +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.collections.specialized/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.collections.specialized/4.3.0/readme.md new file mode 100644 index 00000000..8327e40a --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.collections.specialized/4.3.0/readme.md @@ -0,0 +1,43 @@ +System.Collections.Specialized [4.3.0](https://www.nuget.org/packages/System.Collections.Specialized/4.3.0) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, netcoreapp2.2, 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 older specialized non-generic collections; for example, a linked list dictionary, a bit vector, and collections that contain only strings. + +Commonly Used Types: +System.Collections.Specialized.NameValueCollection +System.Collections.Specialized.NameObjectCollectionBase +System.Collections.Specialized.StringCollection +System.Collections.Specialized.IOrderedDictionary +System.Collections.Specialized.HybridDictionary +System.Collections.Specialized.OrderedDictionary +System.Collections.Specialized.ListDictionary +System.Collections.Specialized.StringDictionary +System.Collections.Specialized.BitVector32 + +When using NuGet 3.x this package requires at least version 3.4. + +Remarks +----------- +no remarks + + +Dependencies 2 +----------- + +|Name|Version| +|----------|:----| +|[System.Collections.NonGeneric](../../../../packages/nuget.org/system.collections.nongeneric/4.3.0)|4.3.0| +|[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.collections.specialized/4.3.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.collections.specialized/4.3.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.collections.specialized/4.3.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.collections.specialized/4.3.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..39f87c94 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.componentmodel.eventbasedasync/4.3.0/index.json @@ -0,0 +1,38 @@ +{ + "License": { + "Code": "ms-net-library", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ], + "Dependencies": [ + { + "Name": "System.Threading", + "Version": "4.3.0" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "ms-net-library", + "HRef": "http://go.microsoft.com/fwlink/?LinkId=329770", + "Description": null + }, + { + "Subject": "project", + "Code": null, + "HRef": "https://dot.net/", + "Description": "License should be verified on https://dot.net/" + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.componentmodel.eventbasedasync/4.3.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.componentmodel.eventbasedasync/4.3.0/package.nuspec new file mode 100644 index 00000000..2035d370 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.componentmodel.eventbasedasync/4.3.0/package.nuspec @@ -0,0 +1,59 @@ + + + + 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 new file mode 100644 index 00000000..90e2f9fe --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.componentmodel.eventbasedasync/4.3.0/readme.md @@ -0,0 +1,39 @@ +System.ComponentModel.EventBasedAsync [4.3.0](https://www.nuget.org/packages/System.ComponentModel.EventBasedAsync/4.3.0) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, netcoreapp2.2, 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 new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..14c1c1f6 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.componentmodel.primitives/4.3.0/index.json @@ -0,0 +1,38 @@ +{ + "License": { + "Code": "ms-net-library", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ], + "Dependencies": [ + { + "Name": "System.ComponentModel", + "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.primitives/4.3.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.componentmodel.primitives/4.3.0/package.nuspec new file mode 100644 index 00000000..4a9c5627 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.componentmodel.primitives/4.3.0/package.nuspec @@ -0,0 +1,47 @@ + + + + System.ComponentModel.Primitives + 4.3.0 + System.ComponentModel.Primitives + Microsoft + microsoft,dotnetframework + true + http://go.microsoft.com/fwlink/?LinkId=329770 + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides interfaces that are used to implement the run-time and design-time behavior of components. + +Commonly Used Types: +System.ComponentModel.IComponent +System.ComponentModel.IContainer +System.ComponentModel.ISite +System.ComponentModel.ComponentCollection + +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.primitives/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.componentmodel.primitives/4.3.0/readme.md new file mode 100644 index 00000000..3c0b0d2e --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.componentmodel.primitives/4.3.0/readme.md @@ -0,0 +1,37 @@ +System.ComponentModel.Primitives [4.3.0](https://www.nuget.org/packages/System.ComponentModel.Primitives/4.3.0) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, netcoreapp2.2, 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 interfaces that are used to implement the run-time and design-time behavior of components. + +Commonly Used Types: +System.ComponentModel.IComponent +System.ComponentModel.IContainer +System.ComponentModel.ISite +System.ComponentModel.ComponentCollection + +When using NuGet 3.x this package requires at least version 3.4. + +Remarks +----------- +no remarks + + +Dependencies 1 +----------- + +|Name|Version| +|----------|:----| +|[System.ComponentModel](../../../../packages/nuget.org/system.componentmodel/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.primitives/4.3.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.componentmodel.primitives/4.3.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.componentmodel.primitives/4.3.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.componentmodel.primitives/4.3.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..0399ae33 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.componentmodel.typeconverter/4.3.0/index.json @@ -0,0 +1,62 @@ +{ + "License": { + "Code": "ms-net-library", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ], + "Dependencies": [ + { + "Name": "System.Collections.NonGeneric", + "Version": "4.3.0" + }, + { + "Name": "System.Collections.Specialized", + "Version": "4.3.0" + }, + { + "Name": "System.ComponentModel", + "Version": "4.3.0" + }, + { + "Name": "System.ComponentModel.Primitives", + "Version": "4.3.0" + }, + { + "Name": "System.Linq", + "Version": "4.3.0" + }, + { + "Name": "System.Reflection.TypeExtensions", + "Version": "4.3.0" + }, + { + "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.typeconverter/4.3.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.componentmodel.typeconverter/4.3.0/package.nuspec new file mode 100644 index 00000000..7355cf21 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.componentmodel.typeconverter/4.3.0/package.nuspec @@ -0,0 +1,92 @@ + + + + System.ComponentModel.TypeConverter + 4.3.0 + System.ComponentModel.TypeConverter + Microsoft + microsoft,dotnetframework + true + http://go.microsoft.com/fwlink/?LinkId=329770 + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides the System.ComponentModel.TypeConverter class, which represents a unified way of converting types of values to other types. + +Commonly Used Types: +System.ComponentModel.TypeConverter +System.ComponentModel.TypeConverterAttribute +System.ComponentModel.PropertyDescriptor +System.ComponentModel.StringConverter +System.ComponentModel.ITypeDescriptorContext +System.ComponentModel.EnumConverter +System.ComponentModel.TypeDescriptor +System.ComponentModel.Int32Converter +System.ComponentModel.BooleanConverter +System.ComponentModel.DoubleConverter + +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.typeconverter/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.componentmodel.typeconverter/4.3.0/readme.md new file mode 100644 index 00000000..34894824 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.componentmodel.typeconverter/4.3.0/readme.md @@ -0,0 +1,49 @@ +System.ComponentModel.TypeConverter [4.3.0](https://www.nuget.org/packages/System.ComponentModel.TypeConverter/4.3.0) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, netcoreapp2.2, 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.ComponentModel.TypeConverter class, which represents a unified way of converting types of values to other types. + +Commonly Used Types: +System.ComponentModel.TypeConverter +System.ComponentModel.TypeConverterAttribute +System.ComponentModel.PropertyDescriptor +System.ComponentModel.StringConverter +System.ComponentModel.ITypeDescriptorContext +System.ComponentModel.EnumConverter +System.ComponentModel.TypeDescriptor +System.ComponentModel.Int32Converter +System.ComponentModel.BooleanConverter +System.ComponentModel.DoubleConverter + +When using NuGet 3.x this package requires at least version 3.4. + +Remarks +----------- +no remarks + + +Dependencies 7 +----------- + +|Name|Version| +|----------|:----| +|[System.Collections.NonGeneric](../../../../packages/nuget.org/system.collections.nongeneric/4.3.0)|4.3.0| +|[System.Collections.Specialized](../../../../packages/nuget.org/system.collections.specialized/4.3.0)|4.3.0| +|[System.ComponentModel](../../../../packages/nuget.org/system.componentmodel/4.3.0)|4.3.0| +|[System.ComponentModel.Primitives](../../../../packages/nuget.org/system.componentmodel.primitives/4.3.0)|4.3.0| +|[System.Linq](../../../../packages/nuget.org/system.linq/4.3.0)|4.3.0| +|[System.Reflection.TypeExtensions](../../../../packages/nuget.org/system.reflection.typeextensions/4.3.0)|4.3.0| +|[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.typeconverter/4.3.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.componentmodel.typeconverter/4.3.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.componentmodel.typeconverter/4.3.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.componentmodel.typeconverter/4.3.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..0397d25c --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.componentmodel/4.3.0/index.json @@ -0,0 +1,32 @@ +{ + "License": { + "Code": "ms-net-library", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "ms-net-library", + "HRef": "http://go.microsoft.com/fwlink/?LinkId=329770", + "Description": null + }, + { + "Subject": "project", + "Code": null, + "HRef": "https://dot.net/", + "Description": "License should be verified on https://dot.net/" + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.componentmodel/4.3.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.componentmodel/4.3.0/package.nuspec new file mode 100644 index 00000000..8e4b8c9a --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.componentmodel/4.3.0/package.nuspec @@ -0,0 +1,52 @@ + + + + System.ComponentModel + 4.3.0 + System.ComponentModel + Microsoft + microsoft,dotnetframework + true + http://go.microsoft.com/fwlink/?LinkId=329770 + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides interfaces for the editing and change tracking of objects used as data sources. + +Commonly Used Types: +System.ComponentModel.CancelEventArgs +System.IServiceProvider +System.ComponentModel.IEditableObject +System.ComponentModel.IChangeTracking +System.ComponentModel.IRevertibleChangeTracking + +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/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.componentmodel/4.3.0/readme.md new file mode 100644 index 00000000..b11a1b0e --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.componentmodel/4.3.0/readme.md @@ -0,0 +1,35 @@ +System.ComponentModel [4.3.0](https://www.nuget.org/packages/System.ComponentModel/4.3.0) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, netcoreapp2.2, 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 interfaces for the editing and change tracking of objects used as data sources. + +Commonly Used Types: +System.ComponentModel.CancelEventArgs +System.IServiceProvider +System.ComponentModel.IEditableObject +System.ComponentModel.IChangeTracking +System.ComponentModel.IRevertibleChangeTracking + +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.componentmodel/4.3.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.componentmodel/4.3.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.componentmodel/4.3.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.componentmodel/4.3.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..48133d99 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.configuration.configurationmanager/4.5.0/index.json @@ -0,0 +1,43 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": false, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net452", + "netstandard2.0" + ], + "Dependencies": [ + { + "Name": "System.Security.Cryptography.ProtectedData", + "Version": "4.5.0" + }, + { + "Name": "System.Security.Permissions", + "Version": "4.5.0" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://github.com/dotnet/corefx/blob/master/LICENSE.TXT", + "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.configuration.configurationmanager/4.5.0/package-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/system.configuration.configurationmanager/4.5.0/package-LICENSE.txt new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.configuration.configurationmanager/4.5.0/package-LICENSE.txt @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.configuration.configurationmanager/4.5.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.configuration.configurationmanager/4.5.0/package.nuspec new file mode 100644 index 00000000..57097461 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.configuration.configurationmanager/4.5.0/package.nuspec @@ -0,0 +1,59 @@ + + + + System.Configuration.ConfigurationManager + 4.5.0 + System.Configuration.ConfigurationManager + Microsoft + microsoft,dotnetframework + false + https://github.com/dotnet/corefx/blob/master/LICENSE.TXT + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides types that support using configuration files. + +Commonly Used Types: +System.Configuration.Configuration +System.Configuration.ConfigurationManager + +30ab651fcb4354552bd4891619a0bdd81e0ebdbf +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.configuration.configurationmanager/4.5.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.configuration.configurationmanager/4.5.0/readme.md new file mode 100644 index 00000000..eeb956eb --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.configuration.configurationmanager/4.5.0/readme.md @@ -0,0 +1,37 @@ +System.Configuration.ConfigurationManager [4.5.0](https://www.nuget.org/packages/System.Configuration.ConfigurationManager/4.5.0) +-------------------- + +Used by: SqlDatabase + +Target frameworks: net452, net5.0, netcoreapp2.2, netcoreapp3.1, netstandard2.0 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://github.com/dotnet/corefx/blob/master/LICENSE.TXT) +- project license: [Unknown](https://dot.net/) , License should be verified on https://dot.net/ + +Description +----------- +Provides types that support using configuration files. + +Commonly Used Types: +System.Configuration.Configuration +System.Configuration.ConfigurationManager + +30ab651fcb4354552bd4891619a0bdd81e0ebdbf +When using NuGet 3.x this package requires at least version 3.4. + +Remarks +----------- +no remarks + + +Dependencies 2 +----------- + +|Name|Version| +|----------|:----| +|[System.Security.Cryptography.ProtectedData](../../../../packages/nuget.org/system.security.cryptography.protecteddata/4.5.0)|4.5.0| +|[System.Security.Permissions](../../../../packages/nuget.org/system.security.permissions/4.5.0)|4.5.0| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.configuration.configurationmanager/4.5.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.configuration.configurationmanager/4.5.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.configuration.configurationmanager/4.5.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.configuration.configurationmanager/4.5.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..66cb0ede --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.5.1/index.json @@ -0,0 +1,47 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": false, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net452", + "netstandard2.0" + ], + "Dependencies": [ + { + "Name": "Microsoft.Win32.Registry", + "Version": "4.5.0" + }, + { + "Name": "System.Security.Principal.Windows", + "Version": "4.5.0" + }, + { + "Name": "System.Text.Encoding.CodePages", + "Version": "4.5.0" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://github.com/dotnet/corefx/blob/master/LICENSE.TXT", + "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.data.sqlclient/4.5.1/package-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.5.1/package-LICENSE.txt new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.5.1/package-LICENSE.txt @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.5.1/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.5.1/package.nuspec new file mode 100644 index 00000000..def3ca91 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.5.1/package.nuspec @@ -0,0 +1,112 @@ + + + + System.Data.SqlClient + 4.5.1 + System.Data.SqlClient + Microsoft + microsoft,dotnetframework + false + https://github.com/dotnet/corefx/blob/master/LICENSE.TXT + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS) + +Commonly Used Types: +System.Data.SqlClient.SqlConnection +System.Data.SqlClient.SqlException +System.Data.SqlClient.SqlParameter +System.Data.SqlDbType +System.Data.SqlClient.SqlDataReader +System.Data.SqlClient.SqlCommand +System.Data.SqlClient.SqlTransaction +System.Data.SqlClient.SqlParameterCollection +System.Data.SqlClient.SqlClientFactory + +7ee84596d92e178bce54c986df31ccc52479e772 +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.data.sqlclient/4.5.1/readme.md b/Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.5.1/readme.md new file mode 100644 index 00000000..8c3d8f49 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.5.1/readme.md @@ -0,0 +1,45 @@ +System.Data.SqlClient [4.5.1](https://www.nuget.org/packages/System.Data.SqlClient/4.5.1) +-------------------- + +Used by: SqlDatabase + +Target frameworks: net452, net5.0, netcoreapp2.2, netcoreapp3.1, netstandard2.0 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://github.com/dotnet/corefx/blob/master/LICENSE.TXT) +- project license: [Unknown](https://dot.net/) , License should be verified on https://dot.net/ + +Description +----------- +Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS) + +Commonly Used Types: +System.Data.SqlClient.SqlConnection +System.Data.SqlClient.SqlException +System.Data.SqlClient.SqlParameter +System.Data.SqlDbType +System.Data.SqlClient.SqlDataReader +System.Data.SqlClient.SqlCommand +System.Data.SqlClient.SqlTransaction +System.Data.SqlClient.SqlParameterCollection +System.Data.SqlClient.SqlClientFactory + +7ee84596d92e178bce54c986df31ccc52479e772 +When using NuGet 3.x this package requires at least version 3.4. + +Remarks +----------- +no remarks + + +Dependencies 3 +----------- + +|Name|Version| +|----------|:----| +|[Microsoft.Win32.Registry](../../../../packages/nuget.org/microsoft.win32.registry/4.5.0)|4.5.0| +|[System.Security.Principal.Windows](../../../../packages/nuget.org/system.security.principal.windows/4.5.0)|4.5.0| +|[System.Text.Encoding.CodePages](../../../../packages/nuget.org/system.text.encoding.codepages/4.5.0)|4.5.0| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.5.1/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.5.1/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.5.1/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.data.sqlclient/4.5.1/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..4518b6a9 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.5.0/index.json @@ -0,0 +1,33 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": false, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net452", + "netstandard2.0" + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://github.com/dotnet/corefx/blob/master/LICENSE.TXT", + "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.diagnostics.diagnosticsource/4.5.0/package-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.5.0/package-LICENSE.txt new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.5.0/package-LICENSE.txt @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.5.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.5.0/package.nuspec new file mode 100644 index 00000000..77278e69 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.5.0/package.nuspec @@ -0,0 +1,55 @@ + + + + System.Diagnostics.DiagnosticSource + 4.5.0 + System.Diagnostics.DiagnosticSource + Microsoft + microsoft,dotnetframework + false + https://github.com/dotnet/corefx/blob/master/LICENSE.TXT + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides Classes that allow you to decouple code logging rich (unserializable) diagnostics/telemetry (e.g. framework) from code that consumes it (e.g. tools) + +Commonly Used Types: +System.Diagnostics.DiagnosticListener +System.Diagnostics.DiagnosticSource + +30ab651fcb4354552bd4891619a0bdd81e0ebdbf +When using NuGet 3.x this package requires at least version 3.4. + https://go.microsoft.com/fwlink/?LinkID=799421 + © Microsoft Corporation. All rights reserved. + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.5.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.5.0/readme.md new file mode 100644 index 00000000..e811fb97 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.5.0/readme.md @@ -0,0 +1,33 @@ +System.Diagnostics.DiagnosticSource [4.5.0](https://www.nuget.org/packages/System.Diagnostics.DiagnosticSource/4.5.0) +-------------------- + +Used by: SqlDatabase + +Target frameworks: net452, net5.0, netcoreapp2.2, netcoreapp3.1, netstandard2.0 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://github.com/dotnet/corefx/blob/master/LICENSE.TXT) +- project license: [Unknown](https://dot.net/) , License should be verified on https://dot.net/ + +Description +----------- +Provides Classes that allow you to decouple code logging rich (unserializable) diagnostics/telemetry (e.g. framework) from code that consumes it (e.g. tools) + +Commonly Used Types: +System.Diagnostics.DiagnosticListener +System.Diagnostics.DiagnosticSource + +30ab651fcb4354552bd4891619a0bdd81e0ebdbf +When using NuGet 3.x this package requires at least version 3.4. + +Remarks +----------- +no remarks + + +Dependencies 0 +----------- + + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.5.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.5.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.5.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.diagnostics.diagnosticsource/4.5.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..fcf4cc80 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.dynamic.runtime/4.3.0/index.json @@ -0,0 +1,54 @@ +{ + "License": { + "Code": "ms-net-library", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ], + "Dependencies": [ + { + "Name": "System.Linq", + "Version": "4.3.0" + }, + { + "Name": "System.Linq.Expressions", + "Version": "4.3.0" + }, + { + "Name": "System.ObjectModel", + "Version": "4.3.0" + }, + { + "Name": "System.Reflection.TypeExtensions", + "Version": "4.3.0" + }, + { + "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.dynamic.runtime/4.3.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.dynamic.runtime/4.3.0/package.nuspec new file mode 100644 index 00000000..7f9aca30 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.dynamic.runtime/4.3.0/package.nuspec @@ -0,0 +1,84 @@ + + + + System.Dynamic.Runtime + 4.3.0 + System.Dynamic.Runtime + Microsoft + microsoft,dotnetframework + true + http://go.microsoft.com/fwlink/?LinkId=329770 + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides classes and interfaces that support the Dynamic Language Runtime (DLR). + +Commonly Used Types: +System.Runtime.CompilerServices.CallSite +System.Runtime.CompilerServices.CallSite<T> +System.Dynamic.IDynamicMetaObjectProvider +System.Dynamic.DynamicMetaObject +System.Dynamic.SetMemberBinder +System.Dynamic.GetMemberBinder +System.Dynamic.ExpandoObject +System.Dynamic.DynamicObject +System.Runtime.CompilerServices.CallSiteBinder +System.Runtime.CompilerServices.ConditionalWeakTable<TKey, TValue> + +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.dynamic.runtime/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.dynamic.runtime/4.3.0/readme.md new file mode 100644 index 00000000..52987346 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.dynamic.runtime/4.3.0/readme.md @@ -0,0 +1,47 @@ +System.Dynamic.Runtime [4.3.0](https://www.nuget.org/packages/System.Dynamic.Runtime/4.3.0) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, netcoreapp2.2, 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 classes and interfaces that support the Dynamic Language Runtime (DLR). + +Commonly Used Types: +System.Runtime.CompilerServices.CallSite +System.Runtime.CompilerServices.CallSite +System.Dynamic.IDynamicMetaObjectProvider +System.Dynamic.DynamicMetaObject +System.Dynamic.SetMemberBinder +System.Dynamic.GetMemberBinder +System.Dynamic.ExpandoObject +System.Dynamic.DynamicObject +System.Runtime.CompilerServices.CallSiteBinder +System.Runtime.CompilerServices.ConditionalWeakTable + +When using NuGet 3.x this package requires at least version 3.4. + +Remarks +----------- +no remarks + + +Dependencies 5 +----------- + +|Name|Version| +|----------|:----| +|[System.Linq](../../../../packages/nuget.org/system.linq/4.3.0)|4.3.0| +|[System.Linq.Expressions](../../../../packages/nuget.org/system.linq.expressions/4.3.0)|4.3.0| +|[System.ObjectModel](../../../../packages/nuget.org/system.objectmodel/4.3.0)|4.3.0| +|[System.Reflection.TypeExtensions](../../../../packages/nuget.org/system.reflection.typeextensions/4.3.0)|4.3.0| +|[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.dynamic.runtime/4.3.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.dynamic.runtime/4.3.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.dynamic.runtime/4.3.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.dynamic.runtime/4.3.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..0397d25c --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.io.filesystem.primitives/4.3.0/index.json @@ -0,0 +1,32 @@ +{ + "License": { + "Code": "ms-net-library", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "ms-net-library", + "HRef": "http://go.microsoft.com/fwlink/?LinkId=329770", + "Description": null + }, + { + "Subject": "project", + "Code": null, + "HRef": "https://dot.net/", + "Description": "License should be verified on https://dot.net/" + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.io.filesystem.primitives/4.3.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.io.filesystem.primitives/4.3.0/package.nuspec new file mode 100644 index 00000000..8f5e1854 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.io.filesystem.primitives/4.3.0/package.nuspec @@ -0,0 +1,44 @@ + + + + System.IO.FileSystem.Primitives + 4.3.0 + System.IO.FileSystem.Primitives + Microsoft + microsoft,dotnetframework + true + http://go.microsoft.com/fwlink/?LinkId=329770 + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides common enumerations and exceptions for path-based I/O libraries. + +Commonly Used Types: +System.IO.DirectoryNotFoundException +System.IO.FileAccess +System.IO.FileLoadException +System.IO.PathTooLongException +System.IO.FileMode +System.IO.FileShare +System.IO.FileAttributes + +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.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 new file mode 100644 index 00000000..83b022cb --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.io.filesystem.primitives/4.3.0/readme.md @@ -0,0 +1,37 @@ +System.IO.FileSystem.Primitives [4.3.0](https://www.nuget.org/packages/System.IO.FileSystem.Primitives/4.3.0) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, netcoreapp2.2, 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 common enumerations and exceptions for path-based I/O libraries. + +Commonly Used Types: +System.IO.DirectoryNotFoundException +System.IO.FileAccess +System.IO.FileLoadException +System.IO.PathTooLongException +System.IO.FileMode +System.IO.FileShare +System.IO.FileAttributes + +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.io.filesystem.primitives/4.3.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.io.filesystem.primitives/4.3.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.io.filesystem.primitives/4.3.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.io.filesystem.primitives/4.3.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..65d347b5 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.linq.expressions/4.3.0/index.json @@ -0,0 +1,50 @@ +{ + "License": { + "Code": "ms-net-library", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ], + "Dependencies": [ + { + "Name": "System.Linq", + "Version": "4.3.0" + }, + { + "Name": "System.ObjectModel", + "Version": "4.3.0" + }, + { + "Name": "System.Reflection.TypeExtensions", + "Version": "4.3.0" + }, + { + "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.linq.expressions/4.3.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.linq.expressions/4.3.0/package.nuspec new file mode 100644 index 00000000..85bf78f7 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.linq.expressions/4.3.0/package.nuspec @@ -0,0 +1,90 @@ + + + + System.Linq.Expressions + 4.3.0 + System.Linq.Expressions + Microsoft + microsoft,dotnetframework + true + http://go.microsoft.com/fwlink/?LinkId=329770 + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides classes, interfaces and enumerations that enable language-level code expressions to be represented as objects in the form of expression trees. + +Commonly Used Types: +System.Linq.IQueryable<T> +System.Linq.IQueryable +System.Linq.Expressions.Expression<TDelegate> +System.Linq.Expressions.Expression +System.Linq.Expressions.ExpressionVisitor + +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.linq.expressions/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.linq.expressions/4.3.0/readme.md new file mode 100644 index 00000000..b7c65661 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.linq.expressions/4.3.0/readme.md @@ -0,0 +1,41 @@ +System.Linq.Expressions [4.3.0](https://www.nuget.org/packages/System.Linq.Expressions/4.3.0) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, netcoreapp2.2, 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 classes, interfaces and enumerations that enable language-level code expressions to be represented as objects in the form of expression trees. + +Commonly Used Types: +System.Linq.IQueryable +System.Linq.IQueryable +System.Linq.Expressions.Expression +System.Linq.Expressions.Expression +System.Linq.Expressions.ExpressionVisitor + +When using NuGet 3.x this package requires at least version 3.4. + +Remarks +----------- +no remarks + + +Dependencies 4 +----------- + +|Name|Version| +|----------|:----| +|[System.Linq](../../../../packages/nuget.org/system.linq/4.3.0)|4.3.0| +|[System.ObjectModel](../../../../packages/nuget.org/system.objectmodel/4.3.0)|4.3.0| +|[System.Reflection.TypeExtensions](../../../../packages/nuget.org/system.reflection.typeextensions/4.3.0)|4.3.0| +|[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.linq.expressions/4.3.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.linq.expressions/4.3.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.linq.expressions/4.3.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.linq.expressions/4.3.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..0397d25c --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.linq/4.3.0/index.json @@ -0,0 +1,32 @@ +{ + "License": { + "Code": "ms-net-library", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "ms-net-library", + "HRef": "http://go.microsoft.com/fwlink/?LinkId=329770", + "Description": null + }, + { + "Subject": "project", + "Code": null, + "HRef": "https://dot.net/", + "Description": "License should be verified on https://dot.net/" + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.linq/4.3.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.linq/4.3.0/package.nuspec new file mode 100644 index 00000000..12a3b10e --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.linq/4.3.0/package.nuspec @@ -0,0 +1,64 @@ + + + + System.Linq + 4.3.0 + System.Linq + Microsoft + microsoft,dotnetframework + true + http://go.microsoft.com/fwlink/?LinkId=329770 + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides classes and interfaces that supports queries that use Language-Integrated Query (LINQ). + +Commonly Used Types: +System.Linq.Enumerable +System.Linq.IGrouping<TKey, TElement> +System.Linq.IOrderedEnumerable<TElement> +System.Linq.ILookup<TKey, TElement> +System.Linq.Lookup<TKey, TElement> + +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.linq/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.linq/4.3.0/readme.md new file mode 100644 index 00000000..1d3212dc --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.linq/4.3.0/readme.md @@ -0,0 +1,35 @@ +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.2, 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 classes and interfaces that supports queries that use Language-Integrated Query (LINQ). + +Commonly Used Types: +System.Linq.Enumerable +System.Linq.IGrouping +System.Linq.IOrderedEnumerable +System.Linq.ILookup +System.Linq.Lookup + +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.linq/4.3.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.linq/4.3.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.linq/4.3.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.linq/4.3.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.1/index.json b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.1/index.json new file mode 100644 index 00000000..ddf80c74 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.1/index.json @@ -0,0 +1,47 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": false, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net452", + "netstandard2.0" + ], + "Dependencies": [ + { + "Name": "System.Buffers", + "Version": "4.4.0" + }, + { + "Name": "System.Numerics.Vectors", + "Version": "4.4.0" + }, + { + "Name": "System.Runtime.CompilerServices.Unsafe", + "Version": "4.5.0" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://github.com/dotnet/corefx/blob/master/LICENSE.TXT", + "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.memory/4.5.1/package-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.1/package-LICENSE.txt new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.1/package-LICENSE.txt @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.1/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.1/package.nuspec new file mode 100644 index 00000000..ec3aaa1f --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.1/package.nuspec @@ -0,0 +1,95 @@ + + + + System.Memory + 4.5.1 + System.Memory + Microsoft + microsoft,dotnetframework + false + https://github.com/dotnet/corefx/blob/master/LICENSE.TXT + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides types for efficient representation and pooling of managed, stack, and native memory segments and sequences of such segments, along with primitives to parse and format UTF-8 encoded text stored in those memory segments. + +Commonly Used Types: +System.Span +System.ReadOnlySpan +System.Memory +System.ReadOnlyMemory +System.Buffers.MemoryPool +System.Buffers.ReadOnlySequence +System.Buffers.Text.Utf8Parser +System.Buffers.Text.Utf8Formatter + +7ee84596d92e178bce54c986df31ccc52479e772 +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.memory/4.5.1/readme.md b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.1/readme.md new file mode 100644 index 00000000..af789cff --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.1/readme.md @@ -0,0 +1,44 @@ +System.Memory [4.5.1](https://www.nuget.org/packages/System.Memory/4.5.1) +-------------------- + +Used by: SqlDatabase + +Target frameworks: net452, net5.0, netcoreapp2.2, netcoreapp3.1, netstandard2.0 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://github.com/dotnet/corefx/blob/master/LICENSE.TXT) +- project license: [Unknown](https://dot.net/) , License should be verified on https://dot.net/ + +Description +----------- +Provides types for efficient representation and pooling of managed, stack, and native memory segments and sequences of such segments, along with primitives to parse and format UTF-8 encoded text stored in those memory segments. + +Commonly Used Types: +System.Span +System.ReadOnlySpan +System.Memory +System.ReadOnlyMemory +System.Buffers.MemoryPool +System.Buffers.ReadOnlySequence +System.Buffers.Text.Utf8Parser +System.Buffers.Text.Utf8Formatter + +7ee84596d92e178bce54c986df31ccc52479e772 +When using NuGet 3.x this package requires at least version 3.4. + +Remarks +----------- +no remarks + + +Dependencies 3 +----------- + +|Name|Version| +|----------|:----| +|[System.Buffers](../../../../packages/nuget.org/system.buffers/4.4.0)|4.4.0| +|[System.Numerics.Vectors](../../../../packages/nuget.org/system.numerics.vectors/4.4.0)|4.4.0| +|[System.Runtime.CompilerServices.Unsafe](../../../../packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.0)|4.5.0| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.1/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.1/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.1/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.1/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..5a631783 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/index.json @@ -0,0 +1,46 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ], + "Dependencies": [ + { + "Name": "System.Buffers", + "Version": "4.5.1" + }, + { + "Name": "System.Numerics.Vectors", + "Version": "4.5.0" + }, + { + "Name": "System.Runtime.CompilerServices.Unsafe", + "Version": "4.5.3" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://github.com/dotnet/corefx/blob/master/LICENSE.TXT", + "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.memory/4.5.4/package-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/package-LICENSE.txt new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/package-LICENSE.txt @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/package.nuspec new file mode 100644 index 00000000..69710e2f --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/package.nuspec @@ -0,0 +1,105 @@ + + + + System.Memory + 4.5.4 + System.Memory + Microsoft + microsoft,dotnetframework + false + https://github.com/dotnet/corefx/blob/master/LICENSE.TXT + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides types for efficient representation and pooling of managed, stack, and native memory segments and sequences of such segments, along with primitives to parse and format UTF-8 encoded text stored in those memory segments. + +Commonly Used Types: +System.Span +System.ReadOnlySpan +System.Memory +System.ReadOnlyMemory +System.Buffers.MemoryPool +System.Buffers.ReadOnlySequence +System.Buffers.Text.Utf8Parser +System.Buffers.Text.Utf8Formatter + +7601f4f6225089ffb291dc7d58293c7bbf5c5d4f +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.memory/4.5.4/readme.md b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/readme.md new file mode 100644 index 00000000..f8e1a692 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/readme.md @@ -0,0 +1,44 @@ +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.2, netcoreapp3.1 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://github.com/dotnet/corefx/blob/master/LICENSE.TXT) +- project license: [Unknown](https://dot.net/) , License should be verified on https://dot.net/ + +Description +----------- +Provides types for efficient representation and pooling of managed, stack, and native memory segments and sequences of such segments, along with primitives to parse and format UTF-8 encoded text stored in those memory segments. + +Commonly Used Types: +System.Span +System.ReadOnlySpan +System.Memory +System.ReadOnlyMemory +System.Buffers.MemoryPool +System.Buffers.ReadOnlySequence +System.Buffers.Text.Utf8Parser +System.Buffers.Text.Utf8Formatter + +7601f4f6225089ffb291dc7d58293c7bbf5c5d4f +When using NuGet 3.x this package requires at least version 3.4. + +Remarks +----------- +no remarks + + +Dependencies 3 +----------- + +|Name|Version| +|----------|:----| +|[System.Buffers](../../../../packages/nuget.org/system.buffers/4.5.1)|4.5.1| +|[System.Numerics.Vectors](../../../../packages/nuget.org/system.numerics.vectors/4.5.0)|4.5.0| +|[System.Runtime.CompilerServices.Unsafe](../../../../packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3)|4.5.3| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.memory/4.5.4/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..4518b6a9 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/index.json @@ -0,0 +1,33 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": false, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net452", + "netstandard2.0" + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://github.com/dotnet/corefx/blob/master/LICENSE.TXT", + "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.numerics.vectors/4.4.0/package-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/package-LICENSE.txt new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/package-LICENSE.txt @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/package.nuspec new file mode 100644 index 00000000..ba22c685 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/package.nuspec @@ -0,0 +1,50 @@ + + + + System.Numerics.Vectors + 4.4.0 + System.Numerics.Vectors + Microsoft + microsoft,dotnetframework + false + https://github.com/dotnet/corefx/blob/master/LICENSE.TXT + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides hardware-accelerated numeric types, suitable for high-performance processing and graphics applications. + +Commonly Used Types: +System.Numerics.Matrix3x2 +System.Numerics.Matrix4x4 +System.Numerics.Plane +System.Numerics.Quaternion +System.Numerics.Vector2 +System.Numerics.Vector3 +System.Numerics.Vector4 +System.Numerics.Vector +System.Numerics.Vector<T> + +8321c729934c0f8be754953439b88e6e1c120c24 + 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.numerics.vectors/4.4.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/readme.md new file mode 100644 index 00000000..d5125ac4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/readme.md @@ -0,0 +1,39 @@ +System.Numerics.Vectors [4.4.0](https://www.nuget.org/packages/System.Numerics.Vectors/4.4.0) +-------------------- + +Used by: SqlDatabase + +Target frameworks: net452, net5.0, netcoreapp2.2, netcoreapp3.1, netstandard2.0 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://github.com/dotnet/corefx/blob/master/LICENSE.TXT) +- project license: [Unknown](https://dot.net/) , License should be verified on https://dot.net/ + +Description +----------- +Provides hardware-accelerated numeric types, suitable for high-performance processing and graphics applications. + +Commonly Used Types: +System.Numerics.Matrix3x2 +System.Numerics.Matrix4x4 +System.Numerics.Plane +System.Numerics.Quaternion +System.Numerics.Vector2 +System.Numerics.Vector3 +System.Numerics.Vector4 +System.Numerics.Vector +System.Numerics.Vector + +8321c729934c0f8be754953439b88e6e1c120c24 + +Remarks +----------- +no remarks + + +Dependencies 0 +----------- + + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.4.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..cf5ff9ee --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/index.json @@ -0,0 +1,32 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://github.com/dotnet/corefx/blob/master/LICENSE.TXT", + "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.numerics.vectors/4.5.0/package-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/package-LICENSE.txt new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/package-LICENSE.txt @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/package.nuspec new file mode 100644 index 00000000..8c699377 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/package.nuspec @@ -0,0 +1,56 @@ + + + + System.Numerics.Vectors + 4.5.0 + System.Numerics.Vectors + Microsoft + microsoft,dotnetframework + false + https://github.com/dotnet/corefx/blob/master/LICENSE.TXT + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides hardware-accelerated numeric types, suitable for high-performance processing and graphics applications. + +Commonly Used Types: +System.Numerics.Matrix3x2 +System.Numerics.Matrix4x4 +System.Numerics.Plane +System.Numerics.Quaternion +System.Numerics.Vector2 +System.Numerics.Vector3 +System.Numerics.Vector4 +System.Numerics.Vector +System.Numerics.Vector<T> + +30ab651fcb4354552bd4891619a0bdd81e0ebdbf + https://go.microsoft.com/fwlink/?LinkID=799421 + © Microsoft Corporation. All rights reserved. + true + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/readme.md new file mode 100644 index 00000000..fa1b0872 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/readme.md @@ -0,0 +1,39 @@ +System.Numerics.Vectors [4.5.0](https://www.nuget.org/packages/System.Numerics.Vectors/4.5.0) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, netcoreapp2.2, netcoreapp3.1 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://github.com/dotnet/corefx/blob/master/LICENSE.TXT) +- project license: [Unknown](https://dot.net/) , License should be verified on https://dot.net/ + +Description +----------- +Provides hardware-accelerated numeric types, suitable for high-performance processing and graphics applications. + +Commonly Used Types: +System.Numerics.Matrix3x2 +System.Numerics.Matrix4x4 +System.Numerics.Plane +System.Numerics.Quaternion +System.Numerics.Vector2 +System.Numerics.Vector3 +System.Numerics.Vector4 +System.Numerics.Vector +System.Numerics.Vector + +30ab651fcb4354552bd4891619a0bdd81e0ebdbf + +Remarks +----------- +no remarks + + +Dependencies 0 +----------- + + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.numerics.vectors/4.5.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..39f87c94 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.objectmodel/4.3.0/index.json @@ -0,0 +1,38 @@ +{ + "License": { + "Code": "ms-net-library", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ], + "Dependencies": [ + { + "Name": "System.Threading", + "Version": "4.3.0" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "ms-net-library", + "HRef": "http://go.microsoft.com/fwlink/?LinkId=329770", + "Description": null + }, + { + "Subject": "project", + "Code": null, + "HRef": "https://dot.net/", + "Description": "License should be verified on https://dot.net/" + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.objectmodel/4.3.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.objectmodel/4.3.0/package.nuspec new file mode 100644 index 00000000..f2d50b50 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.objectmodel/4.3.0/package.nuspec @@ -0,0 +1,65 @@ + + + + System.ObjectModel + 4.3.0 + System.ObjectModel + Microsoft + microsoft,dotnetframework + true + http://go.microsoft.com/fwlink/?LinkId=329770 + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides types and interfaces that allow the creation of observable types that provide notifications to clients when changes are made to it. + +Commonly Used Types: +System.ComponentModel.INotifyPropertyChanged +System.Collections.ObjectModel.ObservableCollection<T> +System.ComponentModel.PropertyChangedEventHandler +System.Windows.Input.ICommand +System.Collections.Specialized.INotifyCollectionChanged +System.Collections.Specialized.NotifyCollectionChangedEventArgs +System.Collections.Specialized.NotifyCollectionChangedEventHandler +System.Collections.ObjectModel.KeyedCollection<TKey, TItem> +System.ComponentModel.PropertyChangedEventArgs +System.Collections.ObjectModel.ReadOnlyDictionary<TKey, TValue> + +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.objectmodel/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.objectmodel/4.3.0/readme.md new file mode 100644 index 00000000..e3a9a242 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.objectmodel/4.3.0/readme.md @@ -0,0 +1,43 @@ +System.ObjectModel [4.3.0](https://www.nuget.org/packages/System.ObjectModel/4.3.0) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, netcoreapp2.2, 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 types and interfaces that allow the creation of observable types that provide notifications to clients when changes are made to it. + +Commonly Used Types: +System.ComponentModel.INotifyPropertyChanged +System.Collections.ObjectModel.ObservableCollection +System.ComponentModel.PropertyChangedEventHandler +System.Windows.Input.ICommand +System.Collections.Specialized.INotifyCollectionChanged +System.Collections.Specialized.NotifyCollectionChangedEventArgs +System.Collections.Specialized.NotifyCollectionChangedEventHandler +System.Collections.ObjectModel.KeyedCollection +System.ComponentModel.PropertyChangedEventArgs +System.Collections.ObjectModel.ReadOnlyDictionary + +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.objectmodel/4.3.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.objectmodel/4.3.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.objectmodel/4.3.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.objectmodel/4.3.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..cf5ff9ee --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/index.json @@ -0,0 +1,32 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://github.com/dotnet/corefx/blob/master/LICENSE.TXT", + "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.reflection.metadata/1.6.0/package-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/package-LICENSE.txt new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/package-LICENSE.txt @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/package.nuspec new file mode 100644 index 00000000..eac76558 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/package.nuspec @@ -0,0 +1,51 @@ + + + + System.Reflection.Metadata + 1.6.0 + System.Reflection.Metadata + Microsoft + microsoft,dotnetframework + false + https://github.com/dotnet/corefx/blob/master/LICENSE.TXT + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + This packages provides a low-level .NET (ECMA-335) metadata reader and writer. It's geared for performance and is the ideal choice for building higher-level libraries that intend to provide their own object model, such as compilers. + +Commonly Used Types: +System.Reflection.Metadata.MetadataReader +System.Reflection.PortableExecutable.PEReader +System.Reflection.Metadata.Ecma335.MetadataBuilder +System.Reflection.PortableExecutable.PEBuilder +System.Reflection.PortableExecutable.ManagedPEBuilder + +30ab651fcb4354552bd4891619a0bdd81e0ebdbf +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.reflection.metadata/1.6.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/readme.md new file mode 100644 index 00000000..eed14d8c --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/readme.md @@ -0,0 +1,36 @@ +System.Reflection.Metadata [1.6.0](https://www.nuget.org/packages/System.Reflection.Metadata/1.6.0) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, netcoreapp2.2, netcoreapp3.1 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://github.com/dotnet/corefx/blob/master/LICENSE.TXT) +- project license: [Unknown](https://dot.net/) , License should be verified on https://dot.net/ + +Description +----------- +This packages provides a low-level .NET (ECMA-335) metadata reader and writer. It's geared for performance and is the ideal choice for building higher-level libraries that intend to provide their own object model, such as compilers. + +Commonly Used Types: +System.Reflection.Metadata.MetadataReader +System.Reflection.PortableExecutable.PEReader +System.Reflection.Metadata.Ecma335.MetadataBuilder +System.Reflection.PortableExecutable.PEBuilder +System.Reflection.PortableExecutable.ManagedPEBuilder + +30ab651fcb4354552bd4891619a0bdd81e0ebdbf +When using NuGet 3.x this package requires at least version 3.4. + +Remarks +----------- +no remarks + + +Dependencies 0 +----------- + + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.reflection.metadata/1.6.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..0397d25c --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.reflection.typeextensions/4.3.0/index.json @@ -0,0 +1,32 @@ +{ + "License": { + "Code": "ms-net-library", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "ms-net-library", + "HRef": "http://go.microsoft.com/fwlink/?LinkId=329770", + "Description": null + }, + { + "Subject": "project", + "Code": null, + "HRef": "https://dot.net/", + "Description": "License should be verified on https://dot.net/" + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.reflection.typeextensions/4.3.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.reflection.typeextensions/4.3.0/package.nuspec new file mode 100644 index 00000000..d3513766 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.reflection.typeextensions/4.3.0/package.nuspec @@ -0,0 +1,58 @@ + + + + System.Reflection.TypeExtensions + 4.3.0 + System.Reflection.TypeExtensions + Microsoft + microsoft,dotnetframework + true + http://go.microsoft.com/fwlink/?LinkId=329770 + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides extensions methods for System.Type that are designed to be source-compatible with older framework reflection-based APIs. + +Commonly Used Types: +System.Reflection.TypeExtensions +System.Reflection.BindingFlags + +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.reflection.typeextensions/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.reflection.typeextensions/4.3.0/readme.md new file mode 100644 index 00000000..ae433825 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.reflection.typeextensions/4.3.0/readme.md @@ -0,0 +1,32 @@ +System.Reflection.TypeExtensions [4.3.0](https://www.nuget.org/packages/System.Reflection.TypeExtensions/4.3.0) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, netcoreapp2.2, 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 extensions methods for System.Type that are designed to be source-compatible with older framework reflection-based APIs. + +Commonly Used Types: +System.Reflection.TypeExtensions +System.Reflection.BindingFlags + +When using NuGet 3.x this package requires at least version 3.4. + +Remarks +----------- +no remarks + + +Dependencies 0 +----------- + + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.reflection.typeextensions/4.3.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.reflection.typeextensions/4.3.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.reflection.typeextensions/4.3.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.reflection.typeextensions/4.3.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.0/index.json b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.0/index.json new file mode 100644 index 00000000..4518b6a9 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.0/index.json @@ -0,0 +1,33 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": false, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net452", + "netstandard2.0" + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://github.com/dotnet/corefx/blob/master/LICENSE.TXT", + "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.runtime.compilerservices.unsafe/4.5.0/package-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.0/package-LICENSE.txt new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.0/package-LICENSE.txt @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.0/package.nuspec new file mode 100644 index 00000000..8235d41b --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.0/package.nuspec @@ -0,0 +1,37 @@ + + + + System.Runtime.CompilerServices.Unsafe + 4.5.0 + System.Runtime.CompilerServices.Unsafe + Microsoft + microsoft,dotnetframework + false + https://github.com/dotnet/corefx/blob/master/LICENSE.TXT + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides the System.Runtime.CompilerServices.Unsafe class, which provides generic, low-level functionality for manipulating pointers. + +Commonly Used Types: +System.Runtime.CompilerServices.Unsafe + +30ab651fcb4354552bd4891619a0bdd81e0ebdbf +When using NuGet 3.x this package requires at least version 3.4. + https://go.microsoft.com/fwlink/?LinkID=799421 + © Microsoft Corporation. All rights reserved. + true + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.0/readme.md new file mode 100644 index 00000000..5a5463a6 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.0/readme.md @@ -0,0 +1,32 @@ +System.Runtime.CompilerServices.Unsafe [4.5.0](https://www.nuget.org/packages/System.Runtime.CompilerServices.Unsafe/4.5.0) +-------------------- + +Used by: SqlDatabase + +Target frameworks: net452, net5.0, netcoreapp2.2, netcoreapp3.1, netstandard2.0 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://github.com/dotnet/corefx/blob/master/LICENSE.TXT) +- project license: [Unknown](https://dot.net/) , License should be verified on https://dot.net/ + +Description +----------- +Provides the System.Runtime.CompilerServices.Unsafe class, which provides generic, low-level functionality for manipulating pointers. + +Commonly Used Types: +System.Runtime.CompilerServices.Unsafe + +30ab651fcb4354552bd4891619a0bdd81e0ebdbf +When using NuGet 3.x this package requires at least version 3.4. + +Remarks +----------- +no remarks + + +Dependencies 0 +----------- + + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..cf5ff9ee --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3/index.json @@ -0,0 +1,32 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://github.com/dotnet/corefx/blob/master/LICENSE.TXT", + "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.runtime.compilerservices.unsafe/4.5.3/package-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3/package-LICENSE.txt new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3/package-LICENSE.txt @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3/package.nuspec new file mode 100644 index 00000000..1f319745 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3/package.nuspec @@ -0,0 +1,40 @@ + + + + System.Runtime.CompilerServices.Unsafe + 4.5.3 + System.Runtime.CompilerServices.Unsafe + Microsoft + microsoft,dotnetframework + false + https://github.com/dotnet/corefx/blob/master/LICENSE.TXT + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides the System.Runtime.CompilerServices.Unsafe class, which provides generic, low-level functionality for manipulating pointers. + +Commonly Used Types: +System.Runtime.CompilerServices.Unsafe + +7601f4f6225089ffb291dc7d58293c7bbf5c5d4f +When using NuGet 3.x this package requires at least version 3.4. + https://go.microsoft.com/fwlink/?LinkID=799421 + © Microsoft Corporation. All rights reserved. + true + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3/readme.md b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3/readme.md new file mode 100644 index 00000000..3988e243 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3/readme.md @@ -0,0 +1,32 @@ +System.Runtime.CompilerServices.Unsafe [4.5.3](https://www.nuget.org/packages/System.Runtime.CompilerServices.Unsafe/4.5.3) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, netcoreapp2.2, netcoreapp3.1 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://github.com/dotnet/corefx/blob/master/LICENSE.TXT) +- project license: [Unknown](https://dot.net/) , License should be verified on https://dot.net/ + +Description +----------- +Provides the System.Runtime.CompilerServices.Unsafe class, which provides generic, low-level functionality for manipulating pointers. + +Commonly Used Types: +System.Runtime.CompilerServices.Unsafe + +7601f4f6225089ffb291dc7d58293c7bbf5c5d4f +When using NuGet 3.x this package requires at least version 3.4. + +Remarks +----------- +no remarks + + +Dependencies 0 +----------- + + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..39f87c94 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.interopservices.runtimeinformation/4.3.0/index.json @@ -0,0 +1,38 @@ +{ + "License": { + "Code": "ms-net-library", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ], + "Dependencies": [ + { + "Name": "System.Threading", + "Version": "4.3.0" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "ms-net-library", + "HRef": "http://go.microsoft.com/fwlink/?LinkId=329770", + "Description": null + }, + { + "Subject": "project", + "Code": null, + "HRef": "https://dot.net/", + "Description": "License should be verified on https://dot.net/" + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.interopservices.runtimeinformation/4.3.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.runtime.interopservices.runtimeinformation/4.3.0/package.nuspec new file mode 100644 index 00000000..ea8fad1d --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.interopservices.runtimeinformation/4.3.0/package.nuspec @@ -0,0 +1,52 @@ + + + + System.Runtime.InteropServices.RuntimeInformation + 4.3.0 + System.Runtime.InteropServices.RuntimeInformation + Microsoft + microsoft,dotnetframework + true + http://go.microsoft.com/fwlink/?LinkId=329770 + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides APIs to query about runtime and OS information. + +Commonly Used Types: +System.Runtime.InteropServices.RuntimeInformation +System.Runtime.InteropServices.OSPlatform + +When using NuGet 3.x this package requires at least version 3.4. + https://go.microsoft.com/fwlink/?LinkID=799421 + © Microsoft Corporation. All rights reserved. + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.interopservices.runtimeinformation/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.runtime.interopservices.runtimeinformation/4.3.0/readme.md new file mode 100644 index 00000000..6a0a6e2a --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.interopservices.runtimeinformation/4.3.0/readme.md @@ -0,0 +1,35 @@ +System.Runtime.InteropServices.RuntimeInformation [4.3.0](https://www.nuget.org/packages/System.Runtime.InteropServices.RuntimeInformation/4.3.0) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, netcoreapp2.2, 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 APIs to query about runtime and OS information. + +Commonly Used Types: +System.Runtime.InteropServices.RuntimeInformation +System.Runtime.InteropServices.OSPlatform + +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.runtime.interopservices.runtimeinformation/4.3.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.runtime.interopservices.runtimeinformation/4.3.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.interopservices.runtimeinformation/4.3.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.runtime.interopservices.runtimeinformation/4.3.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..ff5bfc39 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.loader/4.3.0/index.json @@ -0,0 +1,33 @@ +{ + "License": { + "Code": "ms-net-library", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": false, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net452", + "netstandard2.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.runtime.loader/4.3.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.runtime.loader/4.3.0/package.nuspec new file mode 100644 index 00000000..b197cf4d --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.loader/4.3.0/package.nuspec @@ -0,0 +1,37 @@ + + + + System.Runtime.Loader + 4.3.0 + System.Runtime.Loader + Microsoft + microsoft,dotnetframework + true + http://go.microsoft.com/fwlink/?LinkId=329770 + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides the System.Runtime.Loader.AssemblyLoadContext class, which provides members for loading assemblies. + +Commonly Used Types: +System.Runtime.Loader.AssemblyLoadContext + +When using NuGet 3.x this package requires at least version 3.4. + https://go.microsoft.com/fwlink/?LinkID=799421 + © Microsoft Corporation. All rights reserved. + true + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.loader/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.runtime.loader/4.3.0/readme.md new file mode 100644 index 00000000..5cfe63a1 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.runtime.loader/4.3.0/readme.md @@ -0,0 +1,31 @@ +System.Runtime.Loader [4.3.0](https://www.nuget.org/packages/System.Runtime.Loader/4.3.0) +-------------------- + +Used by: SqlDatabase + +Target frameworks: net452, net5.0, netcoreapp2.2, netcoreapp3.1, netstandard2.0 + +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.Runtime.Loader.AssemblyLoadContext class, which provides members for loading assemblies. + +Commonly Used Types: +System.Runtime.Loader.AssemblyLoadContext + +When using NuGet 3.x this package requires at least version 3.4. + +Remarks +----------- +no remarks + + +Dependencies 0 +----------- + + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.loader/4.3.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.runtime.loader/4.3.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.runtime.loader/4.3.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.runtime.loader/4.3.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..40145b17 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.5.0/index.json @@ -0,0 +1,39 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": false, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net452", + "netstandard2.0" + ], + "Dependencies": [ + { + "Name": "System.Security.Principal.Windows", + "Version": "4.5.0" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://github.com/dotnet/corefx/blob/master/LICENSE.TXT", + "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.security.accesscontrol/4.5.0/package-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.5.0/package-LICENSE.txt new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.5.0/package-LICENSE.txt @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.5.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.5.0/package.nuspec new file mode 100644 index 00000000..9e730be6 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.5.0/package.nuspec @@ -0,0 +1,53 @@ + + + + System.Security.AccessControl + 4.5.0 + System.Security.AccessControl + Microsoft + microsoft,dotnetframework + false + https://github.com/dotnet/corefx/blob/master/LICENSE.TXT + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides base classes that enable managing access and audit control lists on securable objects. + +Commonly Used Types: +System.Security.AccessControl.AccessRule +System.Security.AccessControl.AuditRule +System.Security.AccessControl.ObjectAccessRule +System.Security.AccessControl.ObjectAuditRule +System.Security.AccessControl.ObjectSecurity + +30ab651fcb4354552bd4891619a0bdd81e0ebdbf +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.security.accesscontrol/4.5.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.5.0/readme.md new file mode 100644 index 00000000..a8a224e1 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.5.0/readme.md @@ -0,0 +1,39 @@ +System.Security.AccessControl [4.5.0](https://www.nuget.org/packages/System.Security.AccessControl/4.5.0) +-------------------- + +Used by: SqlDatabase + +Target frameworks: net452, net5.0, netcoreapp2.2, netcoreapp3.1, netstandard2.0 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://github.com/dotnet/corefx/blob/master/LICENSE.TXT) +- project license: [Unknown](https://dot.net/) , License should be verified on https://dot.net/ + +Description +----------- +Provides base classes that enable managing access and audit control lists on securable objects. + +Commonly Used Types: +System.Security.AccessControl.AccessRule +System.Security.AccessControl.AuditRule +System.Security.AccessControl.ObjectAccessRule +System.Security.AccessControl.ObjectAuditRule +System.Security.AccessControl.ObjectSecurity + +30ab651fcb4354552bd4891619a0bdd81e0ebdbf +When using NuGet 3.x this package requires at least version 3.4. + +Remarks +----------- +no remarks + + +Dependencies 1 +----------- + +|Name|Version| +|----------|:----| +|[System.Security.Principal.Windows](../../../../packages/nuget.org/system.security.principal.windows/4.5.0)|4.5.0| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.5.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.5.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.5.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.security.accesscontrol/4.5.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..4518b6a9 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.security.cryptography.protecteddata/4.5.0/index.json @@ -0,0 +1,33 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": false, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net452", + "netstandard2.0" + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://github.com/dotnet/corefx/blob/master/LICENSE.TXT", + "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.security.cryptography.protecteddata/4.5.0/package-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/system.security.cryptography.protecteddata/4.5.0/package-LICENSE.txt new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.security.cryptography.protecteddata/4.5.0/package-LICENSE.txt @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.security.cryptography.protecteddata/4.5.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.security.cryptography.protecteddata/4.5.0/package.nuspec new file mode 100644 index 00000000..a4f6089a --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.security.cryptography.protecteddata/4.5.0/package.nuspec @@ -0,0 +1,49 @@ + + + + System.Security.Cryptography.ProtectedData + 4.5.0 + System.Security.Cryptography.ProtectedData + Microsoft + microsoft,dotnetframework + false + https://github.com/dotnet/corefx/blob/master/LICENSE.TXT + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides access to Windows Data Protection Api. + +Commonly Used Types: +System.Security.Cryptography.DataProtectionScope +System.Security.Cryptography.ProtectedData + +30ab651fcb4354552bd4891619a0bdd81e0ebdbf +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.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 new file mode 100644 index 00000000..29ee1242 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.security.cryptography.protecteddata/4.5.0/readme.md @@ -0,0 +1,33 @@ +System.Security.Cryptography.ProtectedData [4.5.0](https://www.nuget.org/packages/System.Security.Cryptography.ProtectedData/4.5.0) +-------------------- + +Used by: SqlDatabase + +Target frameworks: net452, net5.0, netcoreapp2.2, netcoreapp3.1, netstandard2.0 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://github.com/dotnet/corefx/blob/master/LICENSE.TXT) +- project license: [Unknown](https://dot.net/) , License should be verified on https://dot.net/ + +Description +----------- +Provides access to Windows Data Protection Api. + +Commonly Used Types: +System.Security.Cryptography.DataProtectionScope +System.Security.Cryptography.ProtectedData + +30ab651fcb4354552bd4891619a0bdd81e0ebdbf +When using NuGet 3.x this package requires at least version 3.4. + +Remarks +----------- +no remarks + + +Dependencies 0 +----------- + + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.security.cryptography.protecteddata/4.5.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.security.cryptography.protecteddata/4.5.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.security.cryptography.protecteddata/4.5.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.security.cryptography.protecteddata/4.5.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..23e8eac3 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.security.permissions/4.5.0/index.json @@ -0,0 +1,39 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": false, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net452", + "netstandard2.0" + ], + "Dependencies": [ + { + "Name": "System.Security.AccessControl", + "Version": "4.5.0" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://github.com/dotnet/corefx/blob/master/LICENSE.TXT", + "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.security.permissions/4.5.0/package-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/system.security.permissions/4.5.0/package-LICENSE.txt new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.security.permissions/4.5.0/package-LICENSE.txt @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.security.permissions/4.5.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.security.permissions/4.5.0/package.nuspec new file mode 100644 index 00000000..b839fab2 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.security.permissions/4.5.0/package.nuspec @@ -0,0 +1,39 @@ + + + + System.Security.Permissions + 4.5.0 + System.Security.Permissions + Microsoft + microsoft,dotnetframework + false + https://github.com/dotnet/corefx/blob/master/LICENSE.TXT + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides types supporting Code Access Security (CAS). +30ab651fcb4354552bd4891619a0bdd81e0ebdbf +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.security.permissions/4.5.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.security.permissions/4.5.0/readme.md new file mode 100644 index 00000000..06d46c68 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.security.permissions/4.5.0/readme.md @@ -0,0 +1,31 @@ +System.Security.Permissions [4.5.0](https://www.nuget.org/packages/System.Security.Permissions/4.5.0) +-------------------- + +Used by: SqlDatabase + +Target frameworks: net452, net5.0, netcoreapp2.2, netcoreapp3.1, netstandard2.0 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://github.com/dotnet/corefx/blob/master/LICENSE.TXT) +- project license: [Unknown](https://dot.net/) , License should be verified on https://dot.net/ + +Description +----------- +Provides types supporting Code Access Security (CAS). +30ab651fcb4354552bd4891619a0bdd81e0ebdbf +When using NuGet 3.x this package requires at least version 3.4. + +Remarks +----------- +no remarks + + +Dependencies 1 +----------- + +|Name|Version| +|----------|:----| +|[System.Security.AccessControl](../../../../packages/nuget.org/system.security.accesscontrol/4.5.0)|4.5.0| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.security.permissions/4.5.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.security.permissions/4.5.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.security.permissions/4.5.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.security.permissions/4.5.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..4518b6a9 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.5.0/index.json @@ -0,0 +1,33 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": false, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net452", + "netstandard2.0" + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://github.com/dotnet/corefx/blob/master/LICENSE.TXT", + "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.security.principal.windows/4.5.0/package-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.5.0/package-LICENSE.txt new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.5.0/package-LICENSE.txt @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.5.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.5.0/package.nuspec new file mode 100644 index 00000000..7f32f6d7 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.5.0/package.nuspec @@ -0,0 +1,62 @@ + + + + System.Security.Principal.Windows + 4.5.0 + System.Security.Principal.Windows + Microsoft + microsoft,dotnetframework + false + https://github.com/dotnet/corefx/blob/master/LICENSE.TXT + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides classes for retrieving the current Windows user and for interacting with Windows users and groups. + +Commonly Used Types: +System.Security.Principal.WindowsIdentity +System.Security.Principal.SecurityIdentifier +System.Security.Principal.NTAccount +System.Security.Principal.WindowsPrincipal +System.Security.Principal.IdentityReference +System.Security.Principal.IdentityNotMappedException +System.Security.Principal.WindowsBuiltInRole +System.Security.Principal.WellKnownSidType + +30ab651fcb4354552bd4891619a0bdd81e0ebdbf +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.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 new file mode 100644 index 00000000..0ab2632e --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.5.0/readme.md @@ -0,0 +1,39 @@ +System.Security.Principal.Windows [4.5.0](https://www.nuget.org/packages/System.Security.Principal.Windows/4.5.0) +-------------------- + +Used by: SqlDatabase + +Target frameworks: net452, net5.0, netcoreapp2.2, netcoreapp3.1, netstandard2.0 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://github.com/dotnet/corefx/blob/master/LICENSE.TXT) +- project license: [Unknown](https://dot.net/) , License should be verified on https://dot.net/ + +Description +----------- +Provides classes for retrieving the current Windows user and for interacting with Windows users and groups. + +Commonly Used Types: +System.Security.Principal.WindowsIdentity +System.Security.Principal.SecurityIdentifier +System.Security.Principal.NTAccount +System.Security.Principal.WindowsPrincipal +System.Security.Principal.IdentityReference +System.Security.Principal.IdentityNotMappedException +System.Security.Principal.WindowsBuiltInRole +System.Security.Principal.WellKnownSidType + +30ab651fcb4354552bd4891619a0bdd81e0ebdbf +When using NuGet 3.x this package requires at least version 3.4. + +Remarks +----------- +no remarks + + +Dependencies 0 +----------- + + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.5.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.5.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.5.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.security.principal.windows/4.5.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..d557df70 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.5.0/index.json @@ -0,0 +1,39 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": false, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net452", + "netstandard2.0" + ], + "Dependencies": [ + { + "Name": "System.Runtime.CompilerServices.Unsafe", + "Version": "4.5.0" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://github.com/dotnet/corefx/blob/master/LICENSE.TXT", + "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.text.encoding.codepages/4.5.0/package-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.5.0/package-LICENSE.txt new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.5.0/package-LICENSE.txt @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.5.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.5.0/package.nuspec new file mode 100644 index 00000000..3fe8aae9 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.5.0/package.nuspec @@ -0,0 +1,47 @@ + + + + System.Text.Encoding.CodePages + 4.5.0 + System.Text.Encoding.CodePages + Microsoft + microsoft,dotnetframework + false + https://github.com/dotnet/corefx/blob/master/LICENSE.TXT + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides support for code-page based encodings, including Windows-1252, Shift-JIS, and GB2312. + +Commonly Used Types: +System.Text.CodePagesEncodingProvider + +30ab651fcb4354552bd4891619a0bdd81e0ebdbf +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.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 new file mode 100644 index 00000000..ac66fa30 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.5.0/readme.md @@ -0,0 +1,35 @@ +System.Text.Encoding.CodePages [4.5.0](https://www.nuget.org/packages/System.Text.Encoding.CodePages/4.5.0) +-------------------- + +Used by: SqlDatabase + +Target frameworks: net452, net5.0, netcoreapp2.2, netcoreapp3.1, netstandard2.0 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://github.com/dotnet/corefx/blob/master/LICENSE.TXT) +- project license: [Unknown](https://dot.net/) , License should be verified on https://dot.net/ + +Description +----------- +Provides support for code-page based encodings, including Windows-1252, Shift-JIS, and GB2312. + +Commonly Used Types: +System.Text.CodePagesEncodingProvider + +30ab651fcb4354552bd4891619a0bdd81e0ebdbf +When using NuGet 3.x this package requires at least version 3.4. + +Remarks +----------- +no remarks + + +Dependencies 1 +----------- + +|Name|Version| +|----------|:----| +|[System.Runtime.CompilerServices.Unsafe](../../../../packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.0)|4.5.0| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.5.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.5.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.5.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.text.encoding.codepages/4.5.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..0397d25c --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.text.regularexpressions/4.3.0/index.json @@ -0,0 +1,32 @@ +{ + "License": { + "Code": "ms-net-library", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "ms-net-library", + "HRef": "http://go.microsoft.com/fwlink/?LinkId=329770", + "Description": null + }, + { + "Subject": "project", + "Code": null, + "HRef": "https://dot.net/", + "Description": "License should be verified on https://dot.net/" + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.text.regularexpressions/4.3.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.text.regularexpressions/4.3.0/package.nuspec new file mode 100644 index 00000000..a751ea35 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.text.regularexpressions/4.3.0/package.nuspec @@ -0,0 +1,72 @@ + + + + System.Text.RegularExpressions + 4.3.0 + System.Text.RegularExpressions + Microsoft + microsoft,dotnetframework + true + http://go.microsoft.com/fwlink/?LinkId=329770 + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides the System.Text.RegularExpressions.Regex class, an implementation of a regular expression engine. + +Commonly Used Types: +System.Text.RegularExpressions.Regex +System.Text.RegularExpressions.RegexOptions +System.Text.RegularExpressions.Match +System.Text.RegularExpressions.Group +System.Text.RegularExpressions.Capture +System.Text.RegularExpressions.MatchEvaluator + +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.text.regularexpressions/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.text.regularexpressions/4.3.0/readme.md new file mode 100644 index 00000000..1eaa17ae --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.text.regularexpressions/4.3.0/readme.md @@ -0,0 +1,36 @@ +System.Text.RegularExpressions [4.3.0](https://www.nuget.org/packages/System.Text.RegularExpressions/4.3.0) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, netcoreapp2.2, 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.Text.RegularExpressions.Regex class, an implementation of a regular expression engine. + +Commonly Used Types: +System.Text.RegularExpressions.Regex +System.Text.RegularExpressions.RegexOptions +System.Text.RegularExpressions.Match +System.Text.RegularExpressions.Group +System.Text.RegularExpressions.Capture +System.Text.RegularExpressions.MatchEvaluator + +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.text.regularexpressions/4.3.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.text.regularexpressions/4.3.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.text.regularexpressions/4.3.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.text.regularexpressions/4.3.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..809b8b5b --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/index.json @@ -0,0 +1,38 @@ +{ + "License": { + "Code": "MIT", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ], + "Dependencies": [ + { + "Name": "System.Runtime.CompilerServices.Unsafe", + "Version": "4.5.3" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "MIT", + "HRef": "https://github.com/dotnet/corefx/blob/master/LICENSE.TXT", + "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.tasks.extensions/4.5.4/package-LICENSE.txt b/Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/package-LICENSE.txt new file mode 100644 index 00000000..984713a4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/package-LICENSE.txt @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/package.nuspec new file mode 100644 index 00000000..2eda760f --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/package.nuspec @@ -0,0 +1,62 @@ + + + + System.Threading.Tasks.Extensions + 4.5.4 + System.Threading.Tasks.Extensions + Microsoft + microsoft,dotnetframework + false + https://github.com/dotnet/corefx/blob/master/LICENSE.TXT + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides additional types that simplify the work of writing concurrent and asynchronous code. + +Commonly Used Types: +System.Threading.Tasks.ValueTask<TResult> + +7601f4f6225089ffb291dc7d58293c7bbf5c5d4f + 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.tasks.extensions/4.5.4/readme.md b/Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/readme.md new file mode 100644 index 00000000..9f18bab3 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/readme.md @@ -0,0 +1,34 @@ +System.Threading.Tasks.Extensions [4.5.4](https://www.nuget.org/packages/System.Threading.Tasks.Extensions/4.5.4) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, netcoreapp2.2, netcoreapp3.1 + +License: [MIT](../../../../licenses/mit) + +- package license: [MIT](https://github.com/dotnet/corefx/blob/master/LICENSE.TXT) +- project license: [Unknown](https://dot.net/) , License should be verified on https://dot.net/ + +Description +----------- +Provides additional types that simplify the work of writing concurrent and asynchronous code. + +Commonly Used Types: +System.Threading.Tasks.ValueTask + +7601f4f6225089ffb291dc7d58293c7bbf5c5d4f + +Remarks +----------- +no remarks + + +Dependencies 1 +----------- + +|Name|Version| +|----------|:----| +|[System.Runtime.CompilerServices.Unsafe](../../../../packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3)|4.5.3| + +*This page was generated by a tool.* \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.threading.tasks.extensions/4.5.4/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..0397d25c --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.threading.thread/4.3.0/index.json @@ -0,0 +1,32 @@ +{ + "License": { + "Code": "ms-net-library", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "ms-net-library", + "HRef": "http://go.microsoft.com/fwlink/?LinkId=329770", + "Description": null + }, + { + "Subject": "project", + "Code": null, + "HRef": "https://dot.net/", + "Description": "License should be verified on https://dot.net/" + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.threading.thread/4.3.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.threading.thread/4.3.0/package.nuspec new file mode 100644 index 00000000..d133d26e --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.threading.thread/4.3.0/package.nuspec @@ -0,0 +1,41 @@ + + + + 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 new file mode 100644 index 00000000..5d0fc2cb --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.threading.thread/4.3.0/readme.md @@ -0,0 +1,33 @@ +System.Threading.Thread [4.3.0](https://www.nuget.org/packages/System.Threading.Thread/4.3.0) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, netcoreapp2.2, 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 new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..0397d25c --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.threading/4.3.0/index.json @@ -0,0 +1,32 @@ +{ + "License": { + "Code": "ms-net-library", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "ms-net-library", + "HRef": "http://go.microsoft.com/fwlink/?LinkId=329770", + "Description": null + }, + { + "Subject": "project", + "Code": null, + "HRef": "https://dot.net/", + "Description": "License should be verified on https://dot.net/" + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.threading/4.3.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.threading/4.3.0/package.nuspec new file mode 100644 index 00000000..0f975c95 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.threading/4.3.0/package.nuspec @@ -0,0 +1,59 @@ + + + + System.Threading + 4.3.0 + System.Threading + Microsoft + microsoft,dotnetframework + true + http://go.microsoft.com/fwlink/?LinkId=329770 + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides the fundamental synchronization primitives, including System.Threading.Monitor and System.Threading.Mutex, that are required when writing asynchronous code. + +Commonly Used Types: +System.Threading.Monitor +System.Threading.SynchronizationContext +System.Threading.ManualResetEvent +System.Threading.AutoResetEvent +System.Threading.ThreadLocal<T> +System.Threading.EventWaitHandle +System.Threading.SemaphoreSlim +System.Threading.Mutex + +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/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.threading/4.3.0/readme.md new file mode 100644 index 00000000..ac794ae8 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.threading/4.3.0/readme.md @@ -0,0 +1,38 @@ +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.2, 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 fundamental synchronization primitives, including System.Threading.Monitor and System.Threading.Mutex, that are required when writing asynchronous code. + +Commonly Used Types: +System.Threading.Monitor +System.Threading.SynchronizationContext +System.Threading.ManualResetEvent +System.Threading.AutoResetEvent +System.Threading.ThreadLocal +System.Threading.EventWaitHandle +System.Threading.SemaphoreSlim +System.Threading.Mutex + +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/4.3.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.threading/4.3.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.threading/4.3.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.threading/4.3.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..c187fa19 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.xml.readerwriter/4.3.0/index.json @@ -0,0 +1,42 @@ +{ + "License": { + "Code": "ms-net-library", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ], + "Dependencies": [ + { + "Name": "System.IO.FileSystem.Primitives", + "Version": "4.3.0" + }, + { + "Name": "System.Text.RegularExpressions", + "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.readerwriter/4.3.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.xml.readerwriter/4.3.0/package.nuspec new file mode 100644 index 00000000..3a7d6d6a --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.xml.readerwriter/4.3.0/package.nuspec @@ -0,0 +1,90 @@ + + + + System.Xml.ReaderWriter + 4.3.0 + System.Xml.ReaderWriter + Microsoft + microsoft,dotnetframework + true + http://go.microsoft.com/fwlink/?LinkId=329770 + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides provides a fast, non-cached, forward-only way to read and write Extensible Markup Language (XML) data. + +Commonly Used Types: +System.Xml.XmlNodeType +System.Xml.XmlException +System.Xml.XmlReader +System.Xml.XmlWriter +System.Xml.IXmlLineInfo +System.Xml.XmlNameTable +System.Xml.IXmlNamespaceResolver +System.Xml.XmlNamespaceManager +System.Xml.XmlQualifiedName + +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.readerwriter/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.xml.readerwriter/4.3.0/readme.md new file mode 100644 index 00000000..a809e2c1 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.xml.readerwriter/4.3.0/readme.md @@ -0,0 +1,43 @@ +System.Xml.ReaderWriter [4.3.0](https://www.nuget.org/packages/System.Xml.ReaderWriter/4.3.0) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, netcoreapp2.2, 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 provides a fast, non-cached, forward-only way to read and write Extensible Markup Language (XML) data. + +Commonly Used Types: +System.Xml.XmlNodeType +System.Xml.XmlException +System.Xml.XmlReader +System.Xml.XmlWriter +System.Xml.IXmlLineInfo +System.Xml.XmlNameTable +System.Xml.IXmlNamespaceResolver +System.Xml.XmlNamespaceManager +System.Xml.XmlQualifiedName + +When using NuGet 3.x this package requires at least version 3.4. + +Remarks +----------- +no remarks + + +Dependencies 2 +----------- + +|Name|Version| +|----------|:----| +|[System.IO.FileSystem.Primitives](../../../../packages/nuget.org/system.io.filesystem.primitives/4.3.0)|4.3.0| +|[System.Text.RegularExpressions](../../../../packages/nuget.org/system.text.regularexpressions/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.readerwriter/4.3.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.xml.readerwriter/4.3.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.xml.readerwriter/4.3.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.xml.readerwriter/4.3.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..0d845ce4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.xml.xmldocument/4.3.0/index.json @@ -0,0 +1,42 @@ +{ + "License": { + "Code": "ms-net-library", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ], + "Dependencies": [ + { + "Name": "System.Threading", + "Version": "4.3.0" + }, + { + "Name": "System.Xml.ReaderWriter", + "Version": "4.3.0" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "ms-net-library", + "HRef": "http://go.microsoft.com/fwlink/?LinkId=329770", + "Description": null + }, + { + "Subject": "project", + "Code": null, + "HRef": "https://dot.net/", + "Description": "License should be verified on https://dot.net/" + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.xml.xmldocument/4.3.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.xml.xmldocument/4.3.0/package.nuspec new file mode 100644 index 00000000..224b4f2e --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.xml.xmldocument/4.3.0/package.nuspec @@ -0,0 +1,57 @@ + + + + System.Xml.XmlDocument + 4.3.0 + System.Xml.XmlDocument + Microsoft + microsoft,dotnetframework + true + http://go.microsoft.com/fwlink/?LinkId=329770 + https://dot.net/ + http://go.microsoft.com/fwlink/?LinkID=288859 + Provides an older in-memory Extensible Markup Language (XML) programming interface that enables you to modify XML documents. Developers should prefer the classes in the System.Xml.XDocument package. + +Commonly Used Types: +System.Xml.XmlNode +System.Xml.XmlElement +System.Xml.XmlAttribute +System.Xml.XmlDocument +System.Xml.XmlDeclaration +System.Xml.XmlText +System.Xml.XmlComment +System.Xml.XmlNodeList +System.Xml.XmlWhitespace +System.Xml.XmlCDataSection + +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.xmldocument/4.3.0/readme.md b/Build/third-party-libraries/packages/nuget.org/system.xml.xmldocument/4.3.0/readme.md new file mode 100644 index 00000000..79dcfd06 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.xml.xmldocument/4.3.0/readme.md @@ -0,0 +1,44 @@ +System.Xml.XmlDocument [4.3.0](https://www.nuget.org/packages/System.Xml.XmlDocument/4.3.0) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, netcoreapp2.2, 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 an older in-memory Extensible Markup Language (XML) programming interface that enables you to modify XML documents. Developers should prefer the classes in the System.Xml.XDocument package. + +Commonly Used Types: +System.Xml.XmlNode +System.Xml.XmlElement +System.Xml.XmlAttribute +System.Xml.XmlDocument +System.Xml.XmlDeclaration +System.Xml.XmlText +System.Xml.XmlComment +System.Xml.XmlNodeList +System.Xml.XmlWhitespace +System.Xml.XmlCDataSection + +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.xmldocument/4.3.0/remarks.md b/Build/third-party-libraries/packages/nuget.org/system.xml.xmldocument/4.3.0/remarks.md new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/packages/nuget.org/system.xml.xmldocument/4.3.0/third-party-notices.txt b/Build/third-party-libraries/packages/nuget.org/system.xml.xmldocument/4.3.0/third-party-notices.txt new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..9c027619 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.xml.xpath.xmldocument/4.3.0/index.json @@ -0,0 +1,50 @@ +{ + "License": { + "Code": "ms-net-library", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ], + "Dependencies": [ + { + "Name": "System.Threading", + "Version": "4.3.0" + }, + { + "Name": "System.Xml.ReaderWriter", + "Version": "4.3.0" + }, + { + "Name": "System.Xml.XPath", + "Version": "4.3.0" + }, + { + "Name": "System.Xml.XmlDocument", + "Version": "4.3.0" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "ms-net-library", + "HRef": "http://go.microsoft.com/fwlink/?LinkId=329770", + "Description": null + }, + { + "Subject": "project", + "Code": null, + "HRef": "https://dot.net/", + "Description": "License should be verified on https://dot.net/" + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.xml.xpath.xmldocument/4.3.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.xml.xpath.xmldocument/4.3.0/package.nuspec new file mode 100644 index 00000000..35c1ed81 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.xml.xpath.xmldocument/4.3.0/package.nuspec @@ -0,0 +1,52 @@ + + + + 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 new file mode 100644 index 00000000..4cf36e86 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.xml.xpath.xmldocument/4.3.0/readme.md @@ -0,0 +1,37 @@ +System.Xml.XPath.XmlDocument [4.3.0](https://www.nuget.org/packages/System.Xml.XPath.XmlDocument/4.3.0) +-------------------- + +Used by: SqlDatabase internal + +Target frameworks: net472, net5.0, netcoreapp2.2, 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 new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..0d845ce4 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.xml.xpath/4.3.0/index.json @@ -0,0 +1,42 @@ +{ + "License": { + "Code": "ms-net-library", + "Status": "AutomaticallyApproved" + }, + "UsedBy": [ + { + "Name": "SqlDatabase", + "InternalOnly": true, + "TargetFrameworks": [ + "netcoreapp2.2", + "netcoreapp3.1", + "net5.0", + "net472" + ], + "Dependencies": [ + { + "Name": "System.Threading", + "Version": "4.3.0" + }, + { + "Name": "System.Xml.ReaderWriter", + "Version": "4.3.0" + } + ] + } + ], + "Licenses": [ + { + "Subject": "package", + "Code": "ms-net-library", + "HRef": "http://go.microsoft.com/fwlink/?LinkId=329770", + "Description": null + }, + { + "Subject": "project", + "Code": null, + "HRef": "https://dot.net/", + "Description": "License should be verified on https://dot.net/" + } + ] +} \ No newline at end of file diff --git a/Build/third-party-libraries/packages/nuget.org/system.xml.xpath/4.3.0/package.nuspec b/Build/third-party-libraries/packages/nuget.org/system.xml.xpath/4.3.0/package.nuspec new file mode 100644 index 00000000..9a802d39 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.xml.xpath/4.3.0/package.nuspec @@ -0,0 +1,56 @@ + + + + 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 new file mode 100644 index 00000000..75310ff5 --- /dev/null +++ b/Build/third-party-libraries/packages/nuget.org/system.xml.xpath/4.3.0/readme.md @@ -0,0 +1,44 @@ +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.2, 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 new file mode 100644 index 00000000..e69de29b 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 new file mode 100644 index 00000000..e69de29b diff --git a/Build/third-party-libraries/readme.md b/Build/third-party-libraries/readme.md new file mode 100644 index 00000000..5471942f --- /dev/null +++ b/Build/third-party-libraries/readme.md @@ -0,0 +1,83 @@ +Licenses +-------- + +|Code|Requires approval|Requires third party notices|Packages count| +|----------|:----|:----|:----| +|[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|36| +|[ms-net-library](licenses/ms-net-library)|no|no|22| + + + +Packages 63 +-------- + +|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| +|[DiffEngine](packages/nuget.org/diffengine/6.4.9)|6.4.9|[nuget.org](https://www.nuget.org/packages/DiffEngine/6.4.9)|[MIT](licenses/mit)|SqlDatabase internal| +|[EmptyFiles](packages/nuget.org/emptyfiles/2.3.3)|2.3.3|[nuget.org](https://www.nuget.org/packages/EmptyFiles/2.3.3)|[MIT](licenses/mit)|SqlDatabase internal| +|[Microsoft.CodeCoverage](packages/nuget.org/microsoft.codecoverage/16.9.4)|16.9.4|[nuget.org](https://www.nuget.org/packages/Microsoft.CodeCoverage/16.9.4)|[MIT](licenses/mit)|SqlDatabase internal| +|[Microsoft.DotNet.InternalAbstractions](packages/nuget.org/microsoft.dotnet.internalabstractions/1.0.0)|1.0.0|[nuget.org](https://www.nuget.org/packages/Microsoft.DotNet.InternalAbstractions/1.0.0)|[MIT](licenses/mit)|SqlDatabase internal| +|[Microsoft.NET.Test.Sdk](packages/nuget.org/microsoft.net.test.sdk/16.9.4)|16.9.4|[nuget.org](https://www.nuget.org/packages/Microsoft.NET.Test.Sdk/16.9.4)|[MIT](licenses/mit)|SqlDatabase internal| +|[Microsoft.NETCore.App](packages/nuget.org/microsoft.netcore.app/2.2.0)|2.2.0|[nuget.org](https://www.nuget.org/packages/Microsoft.NETCore.App/2.2.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| +|[NETStandard.Library](packages/nuget.org/netstandard.library/2.0.3)|2.0.3|[nuget.org](https://www.nuget.org/packages/NETStandard.Library/2.0.3)|[MIT](licenses/mit)|SqlDatabase| +|[Newtonsoft.Json](packages/nuget.org/newtonsoft.json/13.0.1)|13.0.1|[nuget.org](https://www.nuget.org/packages/Newtonsoft.Json/13.0.1)|[MIT](licenses/mit)|SqlDatabase internal| +|[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| +|[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| +|[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| +|[System.Data.SqlClient](packages/nuget.org/system.data.sqlclient/4.5.1)|4.5.1|[nuget.org](https://www.nuget.org/packages/System.Data.SqlClient/4.5.1)|[MIT](licenses/mit)|SqlDatabase| +|[System.Diagnostics.DiagnosticSource](packages/nuget.org/system.diagnostics.diagnosticsource/4.5.0)|4.5.0|[nuget.org](https://www.nuget.org/packages/System.Diagnostics.DiagnosticSource/4.5.0)|[MIT](licenses/mit)|SqlDatabase| +|[System.Dynamic.Runtime](packages/nuget.org/system.dynamic.runtime/4.3.0)|4.3.0|[nuget.org](https://www.nuget.org/packages/System.Dynamic.Runtime/4.3.0)|[ms-net-library](licenses/ms-net-library)|SqlDatabase internal| +|[System.IO.FileSystem.Primitives](packages/nuget.org/system.io.filesystem.primitives/4.3.0)|4.3.0|[nuget.org](https://www.nuget.org/packages/System.IO.FileSystem.Primitives/4.3.0)|[ms-net-library](licenses/ms-net-library)|SqlDatabase internal| +|[System.Linq](packages/nuget.org/system.linq/4.3.0)|4.3.0|[nuget.org](https://www.nuget.org/packages/System.Linq/4.3.0)|[ms-net-library](licenses/ms-net-library)|SqlDatabase internal| +|[System.Linq.Expressions](packages/nuget.org/system.linq.expressions/4.3.0)|4.3.0|[nuget.org](https://www.nuget.org/packages/System.Linq.Expressions/4.3.0)|[ms-net-library](licenses/ms-net-library)|SqlDatabase internal| +|[System.Memory](packages/nuget.org/system.memory/4.5.1)|4.5.1|[nuget.org](https://www.nuget.org/packages/System.Memory/4.5.1)|[MIT](licenses/mit)|SqlDatabase| +|[System.Memory](packages/nuget.org/system.memory/4.5.4)|4.5.4|[nuget.org](https://www.nuget.org/packages/System.Memory/4.5.4)|[MIT](licenses/mit)|SqlDatabase internal| +|[System.Numerics.Vectors](packages/nuget.org/system.numerics.vectors/4.4.0)|4.4.0|[nuget.org](https://www.nuget.org/packages/System.Numerics.Vectors/4.4.0)|[MIT](licenses/mit)|SqlDatabase| +|[System.Numerics.Vectors](packages/nuget.org/system.numerics.vectors/4.5.0)|4.5.0|[nuget.org](https://www.nuget.org/packages/System.Numerics.Vectors/4.5.0)|[MIT](licenses/mit)|SqlDatabase internal| +|[System.ObjectModel](packages/nuget.org/system.objectmodel/4.3.0)|4.3.0|[nuget.org](https://www.nuget.org/packages/System.ObjectModel/4.3.0)|[ms-net-library](licenses/ms-net-library)|SqlDatabase internal| +|[System.Reflection.Metadata](packages/nuget.org/system.reflection.metadata/1.6.0)|1.6.0|[nuget.org](https://www.nuget.org/packages/System.Reflection.Metadata/1.6.0)|[MIT](licenses/mit)|SqlDatabase internal| +|[System.Reflection.TypeExtensions](packages/nuget.org/system.reflection.typeextensions/4.3.0)|4.3.0|[nuget.org](https://www.nuget.org/packages/System.Reflection.TypeExtensions/4.3.0)|[ms-net-library](licenses/ms-net-library)|SqlDatabase internal| +|[System.Runtime.CompilerServices.Unsafe](packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.0)|4.5.0|[nuget.org](https://www.nuget.org/packages/System.Runtime.CompilerServices.Unsafe/4.5.0)|[MIT](licenses/mit)|SqlDatabase| +|[System.Runtime.CompilerServices.Unsafe](packages/nuget.org/system.runtime.compilerservices.unsafe/4.5.3)|4.5.3|[nuget.org](https://www.nuget.org/packages/System.Runtime.CompilerServices.Unsafe/4.5.3)|[MIT](licenses/mit)|SqlDatabase internal| +|[System.Runtime.InteropServices.RuntimeInformation](packages/nuget.org/system.runtime.interopservices.runtimeinformation/4.3.0)|4.3.0|[nuget.org](https://www.nuget.org/packages/System.Runtime.InteropServices.RuntimeInformation/4.3.0)|[ms-net-library](licenses/ms-net-library)|SqlDatabase internal| +|[System.Runtime.Loader](packages/nuget.org/system.runtime.loader/4.3.0)|4.3.0|[nuget.org](https://www.nuget.org/packages/System.Runtime.Loader/4.3.0)|[ms-net-library](licenses/ms-net-library)|SqlDatabase| +|[System.Security.AccessControl](packages/nuget.org/system.security.accesscontrol/4.5.0)|4.5.0|[nuget.org](https://www.nuget.org/packages/System.Security.AccessControl/4.5.0)|[MIT](licenses/mit)|SqlDatabase| +|[System.Security.Cryptography.ProtectedData](packages/nuget.org/system.security.cryptography.protecteddata/4.5.0)|4.5.0|[nuget.org](https://www.nuget.org/packages/System.Security.Cryptography.ProtectedData/4.5.0)|[MIT](licenses/mit)|SqlDatabase| +|[System.Security.Permissions](packages/nuget.org/system.security.permissions/4.5.0)|4.5.0|[nuget.org](https://www.nuget.org/packages/System.Security.Permissions/4.5.0)|[MIT](licenses/mit)|SqlDatabase| +|[System.Security.Principal.Windows](packages/nuget.org/system.security.principal.windows/4.5.0)|4.5.0|[nuget.org](https://www.nuget.org/packages/System.Security.Principal.Windows/4.5.0)|[MIT](licenses/mit)|SqlDatabase| +|[System.Text.Encoding.CodePages](packages/nuget.org/system.text.encoding.codepages/4.5.0)|4.5.0|[nuget.org](https://www.nuget.org/packages/System.Text.Encoding.CodePages/4.5.0)|[MIT](licenses/mit)|SqlDatabase| +|[System.Text.RegularExpressions](packages/nuget.org/system.text.regularexpressions/4.3.0)|4.3.0|[nuget.org](https://www.nuget.org/packages/System.Text.RegularExpressions/4.3.0)|[ms-net-library](licenses/ms-net-library)|SqlDatabase internal| +|[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.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.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 a tool.* \ No newline at end of file diff --git a/Sources/SqlDatabase.Package/nuget/package.nuspec b/Sources/SqlDatabase.Package/nuget/package.nuspec index 97ecfcc7..bf26c76d 100644 --- a/Sources/SqlDatabase.Package/nuget/package.nuspec +++ b/Sources/SqlDatabase.Package/nuget/package.nuspec @@ -26,6 +26,8 @@ target="LICENSE.md"/> + diff --git a/Sources/SqlDatabase/SqlDatabase.csproj b/Sources/SqlDatabase/SqlDatabase.csproj index 2971f269..142aa536 100644 --- a/Sources/SqlDatabase/SqlDatabase.csproj +++ b/Sources/SqlDatabase/SqlDatabase.csproj @@ -32,9 +32,10 @@ sqlserver sqlcmd migration-tool c-sharp command-line-tool miration-step sql-script sql-database database-migrations export-data - + + From 3ddb3002fd106eb4d7a9328d50c0f4de88210bd6 Mon Sep 17 00:00:00 2001 From: Max Ieremenko Date: Sun, 4 Apr 2021 16:34:20 +0200 Subject: [PATCH 12/12] add test for powershell 7.2.0 preview 4 --- Build/build-tasks.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/Build/build-tasks.ps1 b/Build/build-tasks.ps1 index 1fdb042b..0d774f23 100644 --- a/Build/build-tasks.ps1 +++ b/Build/build-tasks.ps1 @@ -175,6 +175,7 @@ task IntegrationTest { @{ File = "build-tasks.it-ps-core.ps1"; Task = "Test"; settings = $settings; image = "mcr.microsoft.com/powershell:7.1.0-ubuntu-18.04" } @{ File = "build-tasks.it-ps-core.ps1"; Task = "Test"; settings = $settings; image = "mcr.microsoft.com/powershell:7.1.2-ubuntu-20.04" } @{ File = "build-tasks.it-ps-core.ps1"; Task = "Test"; settings = $settings; image = "mcr.microsoft.com/powershell:7.2.0-preview.2-ubuntu-20.04" } + @{ File = "build-tasks.it-ps-core.ps1"; Task = "Test"; settings = $settings; image = "mcr.microsoft.com/powershell:7.2.0-preview.4-ubuntu-20.04" } @{ File = "build-tasks.it-tool-linux.ps1"; Task = "Test"; settings = $settings; image = "sqldatabase/dotnet_pwsh:2.2-sdk" } @{ File = "build-tasks.it-tool-linux.ps1"; Task = "Test"; settings = $settings; image = "sqldatabase/dotnet_pwsh:3.1-sdk" }