From f387360c3fdff6fc0b6a111c01900c575aee187e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jul 2024 01:12:34 +0000 Subject: [PATCH] Bump MSTest.TestFramework from 3.3.1 to 3.4.3 (#14227) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [MSTest.TestFramework](https://github.com/microsoft/testfx) from 3.3.1 to 3.4.3.
Release notes

Sourced from MSTest.TestFramework's releases.

v3.4.3

See the release notes here

v.3.4.2

See the release notes here

v3.4.1

See the release notes here

v3.4.0

Here are the highlights of the current release, full change log is available below:

https://github.com/microsoft/testfx/compare/v3.3.1...v3.4.0

MSTest

New and improved analyzers

We've added more code analyzers to help you prevent mistakes, and to ensure a consistent code style of your tests.

One example of a new analyzer that was added in 3.4.0 is MSTEST0024: Do not store TestContext in static members. This analyzer has info severity by default, and will show a message, when you store TestContext in a static member in your class. This is not recommended, and you should be using a TestContext property instead:

image

The other analyzers added in this release:

If you've just learned about MSTest analyzers, please also check out the analyzers that were added in previous releases. They will help you ensure that your test classes and test methods are recognized by MSTest and are not accidentally ignored.

The analyzers are automatically installed with the MSTest NuGet meta-package. But can also be installed separately using the MSTest.Analyzers NuGet package.

More timeout options

Timeout can now be specified on all fixture methods, including ClassCleanup, AssemblyCleanup, TestCleanup and TestInitalize. In this case I want my [ClassCleanup] to time out after 1 second:

image

Alternatively timeouts can be specified through runsettings. For example like this:

<RunSettings>
  <MSTest>
</tr></table>

... (truncated)

Changelog

Sourced from MSTest.TestFramework's changelog.

[3.4.3] - 2024-05-30

See full log here

Fixed

Artifacts

[3.4.2] - 2024-05-30

See full log here

Fixed

Artifacts

[3.4.1] - 2024-05-27

See full log here

Fixed

... (truncated)

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=MSTest.TestFramework&package-manager=nuget&previous-version=3.3.1&new-version=3.4.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
###### Microsoft Reviewers: [Open in CodeFlow](https://microsoft.github.io/open-pr/?codeflow=https://github.com/Azure/bicep/pull/14227) > **Note** > Automatic rebases have been disabled on this pull request as it has been open for over 30 days. --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Anthony Martin <38542602+anthony-c-martin@users.noreply.github.com> --- .../Bicep.Cli.IntegrationTests.csproj | 4 +- .../packages.lock.json | 63 ++++++++++--------- .../Bicep.Cli.UnitTests.csproj | 4 +- src/Bicep.Cli.UnitTests/packages.lock.json | 55 ++++++++-------- .../Bicep.Core.IntegrationTests.csproj | 4 +- .../packages.lock.json | 59 ++++++++--------- .../Bicep.Core.Samples.csproj | 2 +- src/Bicep.Core.Samples/packages.lock.json | 8 +-- .../Bicep.Core.UnitTests.csproj | 2 +- src/Bicep.Core.UnitTests/packages.lock.json | 6 +- .../Bicep.Decompiler.IntegrationTests.csproj | 4 +- .../packages.lock.json | 57 ++++++++--------- .../Bicep.Decompiler.UnitTests.csproj | 4 +- .../packages.lock.json | 57 ++++++++--------- .../Bicep.LangServer.IntegrationTests.csproj | 2 +- .../packages.lock.json | 10 +-- .../Bicep.LangServer.UnitTests.csproj | 4 +- .../packages.lock.json | 61 +++++++++--------- ...Bicep.Local.Deploy.IntegrationTests.csproj | 4 +- .../packages.lock.json | 57 ++++++++--------- ...RegistryModuleTool.IntegrationTests.csproj | 4 +- .../packages.lock.json | 57 ++++++++--------- .../packages.lock.json | 6 +- .../Bicep.RegistryModuleTool.UnitTests.csproj | 4 +- .../packages.lock.json | 57 ++++++++--------- src/Bicep.Tools.Benchmark/packages.lock.json | 10 +-- 26 files changed, 307 insertions(+), 298 deletions(-) diff --git a/src/Bicep.Cli.IntegrationTests/Bicep.Cli.IntegrationTests.csproj b/src/Bicep.Cli.IntegrationTests/Bicep.Cli.IntegrationTests.csproj index 5c7ba72dbe7..00fb7ec19b5 100644 --- a/src/Bicep.Cli.IntegrationTests/Bicep.Cli.IntegrationTests.csproj +++ b/src/Bicep.Cli.IntegrationTests/Bicep.Cli.IntegrationTests.csproj @@ -16,8 +16,8 @@ - - + + diff --git a/src/Bicep.Cli.IntegrationTests/packages.lock.json b/src/Bicep.Cli.IntegrationTests/packages.lock.json index fbf61262f82..dddfeb1919f 100644 --- a/src/Bicep.Cli.IntegrationTests/packages.lock.json +++ b/src/Bicep.Cli.IntegrationTests/packages.lock.json @@ -51,20 +51,19 @@ }, "MSTest.TestAdapter": { "type": "Direct", - "requested": "[3.2.2, )", - "resolved": "3.2.2", - "contentHash": "E3dnR9KTNCP61O4yIRBPV0KFXQszW2IJv3O+LqNIK6rUrXNSsXc9QeZBnFYBYwA21uTv3e27xDyreddqe9eUHg==", + "requested": "[3.4.3, )", + "resolved": "3.4.3", + "contentHash": "5ul31wYr17590gDumPxWMiBLPREfPF/ggtdPGfaKoYSsO0EW6H1GWY+7xnVCKa2SB4I/dSEZLDYSwRLDjA0LEQ==", "dependencies": { - "Microsoft.Testing.Extensions.Telemetry": "1.0.2", - "Microsoft.Testing.Extensions.VSTestBridge": "1.0.2", - "Microsoft.Testing.Platform.MSBuild": "1.0.2" + "Microsoft.Testing.Extensions.VSTestBridge": "1.2.1", + "Microsoft.Testing.Platform.MSBuild": "1.2.1" } }, "MSTest.TestFramework": { "type": "Direct", - "requested": "[3.3.1, )", - "resolved": "3.3.1", - "contentHash": "020SuA2p8N7o+/AHC0SLgzGpyS1hNjR8m5tWxnuGqJ3HeJhArUbuPAU8RZr8Ll38ij8oiutGCkQ/G+ymyO51Ow==" + "requested": "[3.4.3, )", + "resolved": "3.4.3", + "contentHash": "hu7F0PyRe47LScY2SCjRFIzP2QYxq1oeHMAIdao9onUm5WhobO9tfZrFAAkJ4v+66EQjilloEbA4kspVHCZpTg==" }, "Nerdbank.GitVersioning": { "type": "Direct", @@ -391,8 +390,8 @@ }, "Microsoft.ApplicationInsights": { "type": "Transitive", - "resolved": "2.21.0", - "contentHash": "btZEDWAFNo9CoYliMCriSMTX3ruRGZTtYw4mo2XyyfLlowFicYVM2Xszi5evDG95QRYV7MbbH3D2RqVwfZlJHw==", + "resolved": "2.22.0", + "contentHash": "3AOM9bZtku7RQwHyMEY3tQMrHIgjcfRDa6YQpd/QG2LDGvMydSlL9Di+8LLMt7J2RDdfJ7/2jdYv6yHcMJAnNw==", "dependencies": { "System.Diagnostics.DiagnosticSource": "5.0.0" } @@ -680,42 +679,44 @@ }, "Microsoft.Testing.Extensions.Telemetry": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "32YnySeewFl0IAgI27bTbFZdfA+Tvmg5p7kxgPcFAPKLjW1HTNKlKMrEYFgCIIT1Onak2Iod0tvsHYqXzV3a+w==", + "resolved": "1.2.1", + "contentHash": "MKGxwQhDDEoTS/ntFb21Z6Bxh9VvknmSLgEWH+NFD86fbcIqE2Al8lrXkQPeH+AqCvlhx2WnPLKd81T2PXc2dw==", "dependencies": { - "Microsoft.ApplicationInsights": "2.21.0", - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.ApplicationInsights": "2.22.0", + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.Testing.Extensions.TrxReport.Abstractions": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "MPHXtnoaf3lESF7eXbYSzvb12K1SZslEpQ1evf3GZAvtfXXyBeFwpcSMd+l3jW8z+zhmniC2gAc6jq/GEgFW2Q==", + "resolved": "1.2.1", + "contentHash": "46SnzaLR+SDaTtBWy49xdFm/rI40I8nZtziqnt2d4lgILKovWPnkM8Pehnga/uwl+OznVIh0XuRsN3NokkX1TQ==", "dependencies": { - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.Testing.Extensions.VSTestBridge": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "68/CZ2mmtdNx8QrMenQ90HVb0gYGpFP54GLRwvMyaDgnhwYgN55TDU+ypBS3X5xThJda42mckfFhBqpjjeYz+A==", + "resolved": "1.2.1", + "contentHash": "Tu8CWHEwV/92WM2DRr/qeIdH243diV5s43ODPLl13XeRqGbZlu9lk7X0a7kcxhp0BLRlA3fqMW3F6RynrnDrPw==", "dependencies": { + "Microsoft.ApplicationInsights": "2.22.0", "Microsoft.TestPlatform.ObjectModel": "17.5.0", - "Microsoft.Testing.Extensions.TrxReport.Abstractions": "1.0.2", - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.Testing.Extensions.Telemetry": "1.2.1", + "Microsoft.Testing.Extensions.TrxReport.Abstractions": "1.2.1", + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.Testing.Platform": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "pVZqxU3LsZLF7Cle0GH+j1+uz5FhmcxEe9sS5sZvONeqgv/EP/p7aI3bIaeoVs0YAVH3UmlqDAsWP5oXcT294A==" + "resolved": "1.2.1", + "contentHash": "mb7irPwqjgusJ05BxuQ5KP6uofWaoDr/dfjFNItX1Q1Ntv3EDMr3CeLInrlU2PNcPwwObw4X6bZG7wJvvFjKZQ==" }, "Microsoft.Testing.Platform.MSBuild": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "9f5JiIEEEkI/MvCi9zCxbX8k9D4xtyqJkaWKtDIt4R/CAJEYN5op3LcUyfbMAKhsFUTn1D+DGTfu5XPoh6fwJw==", + "resolved": "1.2.1", + "contentHash": "leUhW4iQNy7vmPk5uRHd4OROqfRtugWDQkWL/4AD17gxZwAAwGCaTcrqG0YVPi7uuZ+lj2Loa6kU7hBLA/v5+w==", "dependencies": { - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.TestPlatform.ObjectModel": { @@ -1682,8 +1683,8 @@ "type": "Project", "dependencies": { "FluentAssertions": "[6.12.0, )", - "MSTest.TestAdapter": "[3.2.2, )", - "MSTest.TestFramework": "[3.3.1, )", + "MSTest.TestAdapter": "[3.4.3, )", + "MSTest.TestFramework": "[3.4.3, )", "Microsoft.NET.Test.Sdk": "[17.10.0, )", "bicep": "[1.0.0, )" } @@ -1695,7 +1696,7 @@ "Bicep.Core.UnitTests": "[1.0.0, )", "FluentAssertions": "[6.12.0, )", "MSTest.TestAdapter": "[3.1.1, )", - "MSTest.TestFramework": "[3.3.1, )", + "MSTest.TestFramework": "[3.4.3, )", "Microsoft.NET.Test.Sdk": "[17.10.0, )" } }, @@ -1708,7 +1709,7 @@ "FluentAssertions": "[6.12.0, )", "JsonDiffPatch.Net": "[2.3.0, )", "MSTest.TestAdapter": "[3.1.1, )", - "MSTest.TestFramework": "[3.3.1, )", + "MSTest.TestFramework": "[3.4.3, )", "Microsoft.NET.Test.Sdk": "[17.10.0, )", "Moq": "[4.20.70, )", "Newtonsoft.Json.Schema": "[4.0.1, )", diff --git a/src/Bicep.Cli.UnitTests/Bicep.Cli.UnitTests.csproj b/src/Bicep.Cli.UnitTests/Bicep.Cli.UnitTests.csproj index 1a97a193cec..4ef7864e35b 100644 --- a/src/Bicep.Cli.UnitTests/Bicep.Cli.UnitTests.csproj +++ b/src/Bicep.Cli.UnitTests/Bicep.Cli.UnitTests.csproj @@ -11,8 +11,8 @@ - - + + diff --git a/src/Bicep.Cli.UnitTests/packages.lock.json b/src/Bicep.Cli.UnitTests/packages.lock.json index 1e4f9a574a6..5e7c11a091c 100644 --- a/src/Bicep.Cli.UnitTests/packages.lock.json +++ b/src/Bicep.Cli.UnitTests/packages.lock.json @@ -51,20 +51,19 @@ }, "MSTest.TestAdapter": { "type": "Direct", - "requested": "[3.2.2, )", - "resolved": "3.2.2", - "contentHash": "E3dnR9KTNCP61O4yIRBPV0KFXQszW2IJv3O+LqNIK6rUrXNSsXc9QeZBnFYBYwA21uTv3e27xDyreddqe9eUHg==", + "requested": "[3.4.3, )", + "resolved": "3.4.3", + "contentHash": "5ul31wYr17590gDumPxWMiBLPREfPF/ggtdPGfaKoYSsO0EW6H1GWY+7xnVCKa2SB4I/dSEZLDYSwRLDjA0LEQ==", "dependencies": { - "Microsoft.Testing.Extensions.Telemetry": "1.0.2", - "Microsoft.Testing.Extensions.VSTestBridge": "1.0.2", - "Microsoft.Testing.Platform.MSBuild": "1.0.2" + "Microsoft.Testing.Extensions.VSTestBridge": "1.2.1", + "Microsoft.Testing.Platform.MSBuild": "1.2.1" } }, "MSTest.TestFramework": { "type": "Direct", - "requested": "[3.3.1, )", - "resolved": "3.3.1", - "contentHash": "020SuA2p8N7o+/AHC0SLgzGpyS1hNjR8m5tWxnuGqJ3HeJhArUbuPAU8RZr8Ll38ij8oiutGCkQ/G+ymyO51Ow==" + "requested": "[3.4.3, )", + "resolved": "3.4.3", + "contentHash": "hu7F0PyRe47LScY2SCjRFIzP2QYxq1oeHMAIdao9onUm5WhobO9tfZrFAAkJ4v+66EQjilloEbA4kspVHCZpTg==" }, "Nerdbank.GitVersioning": { "type": "Direct", @@ -363,8 +362,8 @@ }, "Microsoft.ApplicationInsights": { "type": "Transitive", - "resolved": "2.21.0", - "contentHash": "btZEDWAFNo9CoYliMCriSMTX3ruRGZTtYw4mo2XyyfLlowFicYVM2Xszi5evDG95QRYV7MbbH3D2RqVwfZlJHw==", + "resolved": "2.22.0", + "contentHash": "3AOM9bZtku7RQwHyMEY3tQMrHIgjcfRDa6YQpd/QG2LDGvMydSlL9Di+8LLMt7J2RDdfJ7/2jdYv6yHcMJAnNw==", "dependencies": { "System.Diagnostics.DiagnosticSource": "5.0.0" } @@ -652,42 +651,44 @@ }, "Microsoft.Testing.Extensions.Telemetry": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "32YnySeewFl0IAgI27bTbFZdfA+Tvmg5p7kxgPcFAPKLjW1HTNKlKMrEYFgCIIT1Onak2Iod0tvsHYqXzV3a+w==", + "resolved": "1.2.1", + "contentHash": "MKGxwQhDDEoTS/ntFb21Z6Bxh9VvknmSLgEWH+NFD86fbcIqE2Al8lrXkQPeH+AqCvlhx2WnPLKd81T2PXc2dw==", "dependencies": { - "Microsoft.ApplicationInsights": "2.21.0", - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.ApplicationInsights": "2.22.0", + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.Testing.Extensions.TrxReport.Abstractions": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "MPHXtnoaf3lESF7eXbYSzvb12K1SZslEpQ1evf3GZAvtfXXyBeFwpcSMd+l3jW8z+zhmniC2gAc6jq/GEgFW2Q==", + "resolved": "1.2.1", + "contentHash": "46SnzaLR+SDaTtBWy49xdFm/rI40I8nZtziqnt2d4lgILKovWPnkM8Pehnga/uwl+OznVIh0XuRsN3NokkX1TQ==", "dependencies": { - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.Testing.Extensions.VSTestBridge": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "68/CZ2mmtdNx8QrMenQ90HVb0gYGpFP54GLRwvMyaDgnhwYgN55TDU+ypBS3X5xThJda42mckfFhBqpjjeYz+A==", + "resolved": "1.2.1", + "contentHash": "Tu8CWHEwV/92WM2DRr/qeIdH243diV5s43ODPLl13XeRqGbZlu9lk7X0a7kcxhp0BLRlA3fqMW3F6RynrnDrPw==", "dependencies": { + "Microsoft.ApplicationInsights": "2.22.0", "Microsoft.TestPlatform.ObjectModel": "17.5.0", - "Microsoft.Testing.Extensions.TrxReport.Abstractions": "1.0.2", - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.Testing.Extensions.Telemetry": "1.2.1", + "Microsoft.Testing.Extensions.TrxReport.Abstractions": "1.2.1", + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.Testing.Platform": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "pVZqxU3LsZLF7Cle0GH+j1+uz5FhmcxEe9sS5sZvONeqgv/EP/p7aI3bIaeoVs0YAVH3UmlqDAsWP5oXcT294A==" + "resolved": "1.2.1", + "contentHash": "mb7irPwqjgusJ05BxuQ5KP6uofWaoDr/dfjFNItX1Q1Ntv3EDMr3CeLInrlU2PNcPwwObw4X6bZG7wJvvFjKZQ==" }, "Microsoft.Testing.Platform.MSBuild": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "9f5JiIEEEkI/MvCi9zCxbX8k9D4xtyqJkaWKtDIt4R/CAJEYN5op3LcUyfbMAKhsFUTn1D+DGTfu5XPoh6fwJw==", + "resolved": "1.2.1", + "contentHash": "leUhW4iQNy7vmPk5uRHd4OROqfRtugWDQkWL/4AD17gxZwAAwGCaTcrqG0YVPi7uuZ+lj2Loa6kU7hBLA/v5+w==", "dependencies": { - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.TestPlatform.ObjectModel": { diff --git a/src/Bicep.Core.IntegrationTests/Bicep.Core.IntegrationTests.csproj b/src/Bicep.Core.IntegrationTests/Bicep.Core.IntegrationTests.csproj index 35996b0a6ec..452a7f8af63 100644 --- a/src/Bicep.Core.IntegrationTests/Bicep.Core.IntegrationTests.csproj +++ b/src/Bicep.Core.IntegrationTests/Bicep.Core.IntegrationTests.csproj @@ -18,8 +18,8 @@ - - + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/Bicep.Core.IntegrationTests/packages.lock.json b/src/Bicep.Core.IntegrationTests/packages.lock.json index 0651d618dc9..e95b672f331 100644 --- a/src/Bicep.Core.IntegrationTests/packages.lock.json +++ b/src/Bicep.Core.IntegrationTests/packages.lock.json @@ -51,20 +51,19 @@ }, "MSTest.TestAdapter": { "type": "Direct", - "requested": "[3.2.2, )", - "resolved": "3.2.2", - "contentHash": "E3dnR9KTNCP61O4yIRBPV0KFXQszW2IJv3O+LqNIK6rUrXNSsXc9QeZBnFYBYwA21uTv3e27xDyreddqe9eUHg==", + "requested": "[3.4.3, )", + "resolved": "3.4.3", + "contentHash": "5ul31wYr17590gDumPxWMiBLPREfPF/ggtdPGfaKoYSsO0EW6H1GWY+7xnVCKa2SB4I/dSEZLDYSwRLDjA0LEQ==", "dependencies": { - "Microsoft.Testing.Extensions.Telemetry": "1.0.2", - "Microsoft.Testing.Extensions.VSTestBridge": "1.0.2", - "Microsoft.Testing.Platform.MSBuild": "1.0.2" + "Microsoft.Testing.Extensions.VSTestBridge": "1.2.1", + "Microsoft.Testing.Platform.MSBuild": "1.2.1" } }, "MSTest.TestFramework": { "type": "Direct", - "requested": "[3.3.1, )", - "resolved": "3.3.1", - "contentHash": "020SuA2p8N7o+/AHC0SLgzGpyS1hNjR8m5tWxnuGqJ3HeJhArUbuPAU8RZr8Ll38ij8oiutGCkQ/G+ymyO51Ow==" + "requested": "[3.4.3, )", + "resolved": "3.4.3", + "contentHash": "hu7F0PyRe47LScY2SCjRFIzP2QYxq1oeHMAIdao9onUm5WhobO9tfZrFAAkJ4v+66EQjilloEbA4kspVHCZpTg==" }, "Nerdbank.GitVersioning": { "type": "Direct", @@ -376,8 +375,8 @@ }, "Microsoft.ApplicationInsights": { "type": "Transitive", - "resolved": "2.21.0", - "contentHash": "btZEDWAFNo9CoYliMCriSMTX3ruRGZTtYw4mo2XyyfLlowFicYVM2Xszi5evDG95QRYV7MbbH3D2RqVwfZlJHw==", + "resolved": "2.22.0", + "contentHash": "3AOM9bZtku7RQwHyMEY3tQMrHIgjcfRDa6YQpd/QG2LDGvMydSlL9Di+8LLMt7J2RDdfJ7/2jdYv6yHcMJAnNw==", "dependencies": { "System.Diagnostics.DiagnosticSource": "5.0.0" } @@ -643,42 +642,44 @@ }, "Microsoft.Testing.Extensions.Telemetry": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "32YnySeewFl0IAgI27bTbFZdfA+Tvmg5p7kxgPcFAPKLjW1HTNKlKMrEYFgCIIT1Onak2Iod0tvsHYqXzV3a+w==", + "resolved": "1.2.1", + "contentHash": "MKGxwQhDDEoTS/ntFb21Z6Bxh9VvknmSLgEWH+NFD86fbcIqE2Al8lrXkQPeH+AqCvlhx2WnPLKd81T2PXc2dw==", "dependencies": { - "Microsoft.ApplicationInsights": "2.21.0", - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.ApplicationInsights": "2.22.0", + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.Testing.Extensions.TrxReport.Abstractions": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "MPHXtnoaf3lESF7eXbYSzvb12K1SZslEpQ1evf3GZAvtfXXyBeFwpcSMd+l3jW8z+zhmniC2gAc6jq/GEgFW2Q==", + "resolved": "1.2.1", + "contentHash": "46SnzaLR+SDaTtBWy49xdFm/rI40I8nZtziqnt2d4lgILKovWPnkM8Pehnga/uwl+OznVIh0XuRsN3NokkX1TQ==", "dependencies": { - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.Testing.Extensions.VSTestBridge": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "68/CZ2mmtdNx8QrMenQ90HVb0gYGpFP54GLRwvMyaDgnhwYgN55TDU+ypBS3X5xThJda42mckfFhBqpjjeYz+A==", + "resolved": "1.2.1", + "contentHash": "Tu8CWHEwV/92WM2DRr/qeIdH243diV5s43ODPLl13XeRqGbZlu9lk7X0a7kcxhp0BLRlA3fqMW3F6RynrnDrPw==", "dependencies": { + "Microsoft.ApplicationInsights": "2.22.0", "Microsoft.TestPlatform.ObjectModel": "17.5.0", - "Microsoft.Testing.Extensions.TrxReport.Abstractions": "1.0.2", - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.Testing.Extensions.Telemetry": "1.2.1", + "Microsoft.Testing.Extensions.TrxReport.Abstractions": "1.2.1", + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.Testing.Platform": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "pVZqxU3LsZLF7Cle0GH+j1+uz5FhmcxEe9sS5sZvONeqgv/EP/p7aI3bIaeoVs0YAVH3UmlqDAsWP5oXcT294A==" + "resolved": "1.2.1", + "contentHash": "mb7irPwqjgusJ05BxuQ5KP6uofWaoDr/dfjFNItX1Q1Ntv3EDMr3CeLInrlU2PNcPwwObw4X6bZG7wJvvFjKZQ==" }, "Microsoft.Testing.Platform.MSBuild": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "9f5JiIEEEkI/MvCi9zCxbX8k9D4xtyqJkaWKtDIt4R/CAJEYN5op3LcUyfbMAKhsFUTn1D+DGTfu5XPoh6fwJw==", + "resolved": "1.2.1", + "contentHash": "leUhW4iQNy7vmPk5uRHd4OROqfRtugWDQkWL/4AD17gxZwAAwGCaTcrqG0YVPi7uuZ+lj2Loa6kU7hBLA/v5+w==", "dependencies": { - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.TestPlatform.ObjectModel": { @@ -1578,7 +1579,7 @@ "Bicep.Core.UnitTests": "[1.0.0, )", "FluentAssertions": "[6.12.0, )", "MSTest.TestAdapter": "[3.1.1, )", - "MSTest.TestFramework": "[3.3.1, )", + "MSTest.TestFramework": "[3.4.3, )", "Microsoft.NET.Test.Sdk": "[17.10.0, )" } }, @@ -1591,7 +1592,7 @@ "FluentAssertions": "[6.12.0, )", "JsonDiffPatch.Net": "[2.3.0, )", "MSTest.TestAdapter": "[3.1.1, )", - "MSTest.TestFramework": "[3.3.1, )", + "MSTest.TestFramework": "[3.4.3, )", "Microsoft.NET.Test.Sdk": "[17.10.0, )", "Moq": "[4.20.70, )", "Newtonsoft.Json.Schema": "[4.0.1, )", diff --git a/src/Bicep.Core.Samples/Bicep.Core.Samples.csproj b/src/Bicep.Core.Samples/Bicep.Core.Samples.csproj index df8cb3c9367..8f71d26157e 100644 --- a/src/Bicep.Core.Samples/Bicep.Core.Samples.csproj +++ b/src/Bicep.Core.Samples/Bicep.Core.Samples.csproj @@ -17,7 +17,7 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/Bicep.Core.Samples/packages.lock.json b/src/Bicep.Core.Samples/packages.lock.json index 8fb7f387a62..21e53156ca2 100644 --- a/src/Bicep.Core.Samples/packages.lock.json +++ b/src/Bicep.Core.Samples/packages.lock.json @@ -57,9 +57,9 @@ }, "MSTest.TestFramework": { "type": "Direct", - "requested": "[3.3.1, )", - "resolved": "3.3.1", - "contentHash": "020SuA2p8N7o+/AHC0SLgzGpyS1hNjR8m5tWxnuGqJ3HeJhArUbuPAU8RZr8Ll38ij8oiutGCkQ/G+ymyO51Ow==" + "requested": "[3.4.3, )", + "resolved": "3.4.3", + "contentHash": "hu7F0PyRe47LScY2SCjRFIzP2QYxq1oeHMAIdao9onUm5WhobO9tfZrFAAkJ4v+66EQjilloEbA4kspVHCZpTg==" }, "Nerdbank.GitVersioning": { "type": "Direct", @@ -1527,7 +1527,7 @@ "FluentAssertions": "[6.12.0, )", "JsonDiffPatch.Net": "[2.3.0, )", "MSTest.TestAdapter": "[3.1.1, )", - "MSTest.TestFramework": "[3.3.1, )", + "MSTest.TestFramework": "[3.4.3, )", "Microsoft.NET.Test.Sdk": "[17.10.0, )", "Moq": "[4.20.70, )", "Newtonsoft.Json.Schema": "[4.0.1, )", diff --git a/src/Bicep.Core.UnitTests/Bicep.Core.UnitTests.csproj b/src/Bicep.Core.UnitTests/Bicep.Core.UnitTests.csproj index 4e305cea26e..9c1bdb7fa0e 100644 --- a/src/Bicep.Core.UnitTests/Bicep.Core.UnitTests.csproj +++ b/src/Bicep.Core.UnitTests/Bicep.Core.UnitTests.csproj @@ -11,7 +11,7 @@ - + all diff --git a/src/Bicep.Core.UnitTests/packages.lock.json b/src/Bicep.Core.UnitTests/packages.lock.json index 7a165745251..8b8a7b52e78 100644 --- a/src/Bicep.Core.UnitTests/packages.lock.json +++ b/src/Bicep.Core.UnitTests/packages.lock.json @@ -81,9 +81,9 @@ }, "MSTest.TestFramework": { "type": "Direct", - "requested": "[3.3.1, )", - "resolved": "3.3.1", - "contentHash": "020SuA2p8N7o+/AHC0SLgzGpyS1hNjR8m5tWxnuGqJ3HeJhArUbuPAU8RZr8Ll38ij8oiutGCkQ/G+ymyO51Ow==" + "requested": "[3.4.3, )", + "resolved": "3.4.3", + "contentHash": "hu7F0PyRe47LScY2SCjRFIzP2QYxq1oeHMAIdao9onUm5WhobO9tfZrFAAkJ4v+66EQjilloEbA4kspVHCZpTg==" }, "Nerdbank.GitVersioning": { "type": "Direct", diff --git a/src/Bicep.Decompiler.IntegrationTests/Bicep.Decompiler.IntegrationTests.csproj b/src/Bicep.Decompiler.IntegrationTests/Bicep.Decompiler.IntegrationTests.csproj index 349babffbc2..9abd6128373 100644 --- a/src/Bicep.Decompiler.IntegrationTests/Bicep.Decompiler.IntegrationTests.csproj +++ b/src/Bicep.Decompiler.IntegrationTests/Bicep.Decompiler.IntegrationTests.csproj @@ -12,8 +12,8 @@ - - + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/Bicep.Decompiler.IntegrationTests/packages.lock.json b/src/Bicep.Decompiler.IntegrationTests/packages.lock.json index 1f87678e99b..151a5b4f4f5 100644 --- a/src/Bicep.Decompiler.IntegrationTests/packages.lock.json +++ b/src/Bicep.Decompiler.IntegrationTests/packages.lock.json @@ -51,20 +51,19 @@ }, "MSTest.TestAdapter": { "type": "Direct", - "requested": "[3.2.2, )", - "resolved": "3.2.2", - "contentHash": "E3dnR9KTNCP61O4yIRBPV0KFXQszW2IJv3O+LqNIK6rUrXNSsXc9QeZBnFYBYwA21uTv3e27xDyreddqe9eUHg==", + "requested": "[3.4.3, )", + "resolved": "3.4.3", + "contentHash": "5ul31wYr17590gDumPxWMiBLPREfPF/ggtdPGfaKoYSsO0EW6H1GWY+7xnVCKa2SB4I/dSEZLDYSwRLDjA0LEQ==", "dependencies": { - "Microsoft.Testing.Extensions.Telemetry": "1.0.2", - "Microsoft.Testing.Extensions.VSTestBridge": "1.0.2", - "Microsoft.Testing.Platform.MSBuild": "1.0.2" + "Microsoft.Testing.Extensions.VSTestBridge": "1.2.1", + "Microsoft.Testing.Platform.MSBuild": "1.2.1" } }, "MSTest.TestFramework": { "type": "Direct", - "requested": "[3.3.1, )", - "resolved": "3.3.1", - "contentHash": "020SuA2p8N7o+/AHC0SLgzGpyS1hNjR8m5tWxnuGqJ3HeJhArUbuPAU8RZr8Ll38ij8oiutGCkQ/G+ymyO51Ow==" + "requested": "[3.4.3, )", + "resolved": "3.4.3", + "contentHash": "hu7F0PyRe47LScY2SCjRFIzP2QYxq1oeHMAIdao9onUm5WhobO9tfZrFAAkJ4v+66EQjilloEbA4kspVHCZpTg==" }, "Nerdbank.GitVersioning": { "type": "Direct", @@ -376,8 +375,8 @@ }, "Microsoft.ApplicationInsights": { "type": "Transitive", - "resolved": "2.21.0", - "contentHash": "btZEDWAFNo9CoYliMCriSMTX3ruRGZTtYw4mo2XyyfLlowFicYVM2Xszi5evDG95QRYV7MbbH3D2RqVwfZlJHw==", + "resolved": "2.22.0", + "contentHash": "3AOM9bZtku7RQwHyMEY3tQMrHIgjcfRDa6YQpd/QG2LDGvMydSlL9Di+8LLMt7J2RDdfJ7/2jdYv6yHcMJAnNw==", "dependencies": { "System.Diagnostics.DiagnosticSource": "5.0.0" } @@ -643,42 +642,44 @@ }, "Microsoft.Testing.Extensions.Telemetry": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "32YnySeewFl0IAgI27bTbFZdfA+Tvmg5p7kxgPcFAPKLjW1HTNKlKMrEYFgCIIT1Onak2Iod0tvsHYqXzV3a+w==", + "resolved": "1.2.1", + "contentHash": "MKGxwQhDDEoTS/ntFb21Z6Bxh9VvknmSLgEWH+NFD86fbcIqE2Al8lrXkQPeH+AqCvlhx2WnPLKd81T2PXc2dw==", "dependencies": { - "Microsoft.ApplicationInsights": "2.21.0", - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.ApplicationInsights": "2.22.0", + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.Testing.Extensions.TrxReport.Abstractions": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "MPHXtnoaf3lESF7eXbYSzvb12K1SZslEpQ1evf3GZAvtfXXyBeFwpcSMd+l3jW8z+zhmniC2gAc6jq/GEgFW2Q==", + "resolved": "1.2.1", + "contentHash": "46SnzaLR+SDaTtBWy49xdFm/rI40I8nZtziqnt2d4lgILKovWPnkM8Pehnga/uwl+OznVIh0XuRsN3NokkX1TQ==", "dependencies": { - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.Testing.Extensions.VSTestBridge": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "68/CZ2mmtdNx8QrMenQ90HVb0gYGpFP54GLRwvMyaDgnhwYgN55TDU+ypBS3X5xThJda42mckfFhBqpjjeYz+A==", + "resolved": "1.2.1", + "contentHash": "Tu8CWHEwV/92WM2DRr/qeIdH243diV5s43ODPLl13XeRqGbZlu9lk7X0a7kcxhp0BLRlA3fqMW3F6RynrnDrPw==", "dependencies": { + "Microsoft.ApplicationInsights": "2.22.0", "Microsoft.TestPlatform.ObjectModel": "17.5.0", - "Microsoft.Testing.Extensions.TrxReport.Abstractions": "1.0.2", - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.Testing.Extensions.Telemetry": "1.2.1", + "Microsoft.Testing.Extensions.TrxReport.Abstractions": "1.2.1", + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.Testing.Platform": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "pVZqxU3LsZLF7Cle0GH+j1+uz5FhmcxEe9sS5sZvONeqgv/EP/p7aI3bIaeoVs0YAVH3UmlqDAsWP5oXcT294A==" + "resolved": "1.2.1", + "contentHash": "mb7irPwqjgusJ05BxuQ5KP6uofWaoDr/dfjFNItX1Q1Ntv3EDMr3CeLInrlU2PNcPwwObw4X6bZG7wJvvFjKZQ==" }, "Microsoft.Testing.Platform.MSBuild": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "9f5JiIEEEkI/MvCi9zCxbX8k9D4xtyqJkaWKtDIt4R/CAJEYN5op3LcUyfbMAKhsFUTn1D+DGTfu5XPoh6fwJw==", + "resolved": "1.2.1", + "contentHash": "leUhW4iQNy7vmPk5uRHd4OROqfRtugWDQkWL/4AD17gxZwAAwGCaTcrqG0YVPi7uuZ+lj2Loa6kU7hBLA/v5+w==", "dependencies": { - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.TestPlatform.ObjectModel": { @@ -1580,7 +1581,7 @@ "FluentAssertions": "[6.12.0, )", "JsonDiffPatch.Net": "[2.3.0, )", "MSTest.TestAdapter": "[3.1.1, )", - "MSTest.TestFramework": "[3.3.1, )", + "MSTest.TestFramework": "[3.4.3, )", "Microsoft.NET.Test.Sdk": "[17.10.0, )", "Moq": "[4.20.70, )", "Newtonsoft.Json.Schema": "[4.0.1, )", diff --git a/src/Bicep.Decompiler.UnitTests/Bicep.Decompiler.UnitTests.csproj b/src/Bicep.Decompiler.UnitTests/Bicep.Decompiler.UnitTests.csproj index f8ab3a62964..8d7098f7f0c 100644 --- a/src/Bicep.Decompiler.UnitTests/Bicep.Decompiler.UnitTests.csproj +++ b/src/Bicep.Decompiler.UnitTests/Bicep.Decompiler.UnitTests.csproj @@ -7,8 +7,8 @@ - - + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/Bicep.Decompiler.UnitTests/packages.lock.json b/src/Bicep.Decompiler.UnitTests/packages.lock.json index 1f87678e99b..151a5b4f4f5 100644 --- a/src/Bicep.Decompiler.UnitTests/packages.lock.json +++ b/src/Bicep.Decompiler.UnitTests/packages.lock.json @@ -51,20 +51,19 @@ }, "MSTest.TestAdapter": { "type": "Direct", - "requested": "[3.2.2, )", - "resolved": "3.2.2", - "contentHash": "E3dnR9KTNCP61O4yIRBPV0KFXQszW2IJv3O+LqNIK6rUrXNSsXc9QeZBnFYBYwA21uTv3e27xDyreddqe9eUHg==", + "requested": "[3.4.3, )", + "resolved": "3.4.3", + "contentHash": "5ul31wYr17590gDumPxWMiBLPREfPF/ggtdPGfaKoYSsO0EW6H1GWY+7xnVCKa2SB4I/dSEZLDYSwRLDjA0LEQ==", "dependencies": { - "Microsoft.Testing.Extensions.Telemetry": "1.0.2", - "Microsoft.Testing.Extensions.VSTestBridge": "1.0.2", - "Microsoft.Testing.Platform.MSBuild": "1.0.2" + "Microsoft.Testing.Extensions.VSTestBridge": "1.2.1", + "Microsoft.Testing.Platform.MSBuild": "1.2.1" } }, "MSTest.TestFramework": { "type": "Direct", - "requested": "[3.3.1, )", - "resolved": "3.3.1", - "contentHash": "020SuA2p8N7o+/AHC0SLgzGpyS1hNjR8m5tWxnuGqJ3HeJhArUbuPAU8RZr8Ll38ij8oiutGCkQ/G+ymyO51Ow==" + "requested": "[3.4.3, )", + "resolved": "3.4.3", + "contentHash": "hu7F0PyRe47LScY2SCjRFIzP2QYxq1oeHMAIdao9onUm5WhobO9tfZrFAAkJ4v+66EQjilloEbA4kspVHCZpTg==" }, "Nerdbank.GitVersioning": { "type": "Direct", @@ -376,8 +375,8 @@ }, "Microsoft.ApplicationInsights": { "type": "Transitive", - "resolved": "2.21.0", - "contentHash": "btZEDWAFNo9CoYliMCriSMTX3ruRGZTtYw4mo2XyyfLlowFicYVM2Xszi5evDG95QRYV7MbbH3D2RqVwfZlJHw==", + "resolved": "2.22.0", + "contentHash": "3AOM9bZtku7RQwHyMEY3tQMrHIgjcfRDa6YQpd/QG2LDGvMydSlL9Di+8LLMt7J2RDdfJ7/2jdYv6yHcMJAnNw==", "dependencies": { "System.Diagnostics.DiagnosticSource": "5.0.0" } @@ -643,42 +642,44 @@ }, "Microsoft.Testing.Extensions.Telemetry": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "32YnySeewFl0IAgI27bTbFZdfA+Tvmg5p7kxgPcFAPKLjW1HTNKlKMrEYFgCIIT1Onak2Iod0tvsHYqXzV3a+w==", + "resolved": "1.2.1", + "contentHash": "MKGxwQhDDEoTS/ntFb21Z6Bxh9VvknmSLgEWH+NFD86fbcIqE2Al8lrXkQPeH+AqCvlhx2WnPLKd81T2PXc2dw==", "dependencies": { - "Microsoft.ApplicationInsights": "2.21.0", - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.ApplicationInsights": "2.22.0", + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.Testing.Extensions.TrxReport.Abstractions": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "MPHXtnoaf3lESF7eXbYSzvb12K1SZslEpQ1evf3GZAvtfXXyBeFwpcSMd+l3jW8z+zhmniC2gAc6jq/GEgFW2Q==", + "resolved": "1.2.1", + "contentHash": "46SnzaLR+SDaTtBWy49xdFm/rI40I8nZtziqnt2d4lgILKovWPnkM8Pehnga/uwl+OznVIh0XuRsN3NokkX1TQ==", "dependencies": { - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.Testing.Extensions.VSTestBridge": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "68/CZ2mmtdNx8QrMenQ90HVb0gYGpFP54GLRwvMyaDgnhwYgN55TDU+ypBS3X5xThJda42mckfFhBqpjjeYz+A==", + "resolved": "1.2.1", + "contentHash": "Tu8CWHEwV/92WM2DRr/qeIdH243diV5s43ODPLl13XeRqGbZlu9lk7X0a7kcxhp0BLRlA3fqMW3F6RynrnDrPw==", "dependencies": { + "Microsoft.ApplicationInsights": "2.22.0", "Microsoft.TestPlatform.ObjectModel": "17.5.0", - "Microsoft.Testing.Extensions.TrxReport.Abstractions": "1.0.2", - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.Testing.Extensions.Telemetry": "1.2.1", + "Microsoft.Testing.Extensions.TrxReport.Abstractions": "1.2.1", + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.Testing.Platform": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "pVZqxU3LsZLF7Cle0GH+j1+uz5FhmcxEe9sS5sZvONeqgv/EP/p7aI3bIaeoVs0YAVH3UmlqDAsWP5oXcT294A==" + "resolved": "1.2.1", + "contentHash": "mb7irPwqjgusJ05BxuQ5KP6uofWaoDr/dfjFNItX1Q1Ntv3EDMr3CeLInrlU2PNcPwwObw4X6bZG7wJvvFjKZQ==" }, "Microsoft.Testing.Platform.MSBuild": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "9f5JiIEEEkI/MvCi9zCxbX8k9D4xtyqJkaWKtDIt4R/CAJEYN5op3LcUyfbMAKhsFUTn1D+DGTfu5XPoh6fwJw==", + "resolved": "1.2.1", + "contentHash": "leUhW4iQNy7vmPk5uRHd4OROqfRtugWDQkWL/4AD17gxZwAAwGCaTcrqG0YVPi7uuZ+lj2Loa6kU7hBLA/v5+w==", "dependencies": { - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.TestPlatform.ObjectModel": { @@ -1580,7 +1581,7 @@ "FluentAssertions": "[6.12.0, )", "JsonDiffPatch.Net": "[2.3.0, )", "MSTest.TestAdapter": "[3.1.1, )", - "MSTest.TestFramework": "[3.3.1, )", + "MSTest.TestFramework": "[3.4.3, )", "Microsoft.NET.Test.Sdk": "[17.10.0, )", "Moq": "[4.20.70, )", "Newtonsoft.Json.Schema": "[4.0.1, )", diff --git a/src/Bicep.LangServer.IntegrationTests/Bicep.LangServer.IntegrationTests.csproj b/src/Bicep.LangServer.IntegrationTests/Bicep.LangServer.IntegrationTests.csproj index 310d9cfd09b..d749a364ab7 100644 --- a/src/Bicep.LangServer.IntegrationTests/Bicep.LangServer.IntegrationTests.csproj +++ b/src/Bicep.LangServer.IntegrationTests/Bicep.LangServer.IntegrationTests.csproj @@ -15,7 +15,7 @@ - + all diff --git a/src/Bicep.LangServer.IntegrationTests/packages.lock.json b/src/Bicep.LangServer.IntegrationTests/packages.lock.json index 5bf354ac336..4f607361323 100644 --- a/src/Bicep.LangServer.IntegrationTests/packages.lock.json +++ b/src/Bicep.LangServer.IntegrationTests/packages.lock.json @@ -76,9 +76,9 @@ }, "MSTest.TestFramework": { "type": "Direct", - "requested": "[3.3.1, )", - "resolved": "3.3.1", - "contentHash": "020SuA2p8N7o+/AHC0SLgzGpyS1hNjR8m5tWxnuGqJ3HeJhArUbuPAU8RZr8Ll38ij8oiutGCkQ/G+ymyO51Ow==" + "requested": "[3.4.3, )", + "resolved": "3.4.3", + "contentHash": "hu7F0PyRe47LScY2SCjRFIzP2QYxq1oeHMAIdao9onUm5WhobO9tfZrFAAkJ4v+66EQjilloEbA4kspVHCZpTg==" }, "Nerdbank.GitVersioning": { "type": "Direct", @@ -1536,7 +1536,7 @@ "Bicep.Core.UnitTests": "[1.0.0, )", "FluentAssertions": "[6.12.0, )", "MSTest.TestAdapter": "[3.1.1, )", - "MSTest.TestFramework": "[3.3.1, )", + "MSTest.TestFramework": "[3.4.3, )", "Microsoft.NET.Test.Sdk": "[17.10.0, )" } }, @@ -1549,7 +1549,7 @@ "FluentAssertions": "[6.12.0, )", "JsonDiffPatch.Net": "[2.3.0, )", "MSTest.TestAdapter": "[3.1.1, )", - "MSTest.TestFramework": "[3.3.1, )", + "MSTest.TestFramework": "[3.4.3, )", "Microsoft.NET.Test.Sdk": "[17.10.0, )", "Moq": "[4.20.70, )", "Newtonsoft.Json.Schema": "[4.0.1, )", diff --git a/src/Bicep.LangServer.UnitTests/Bicep.LangServer.UnitTests.csproj b/src/Bicep.LangServer.UnitTests/Bicep.LangServer.UnitTests.csproj index 1c33fda8e88..301e67bd2ee 100644 --- a/src/Bicep.LangServer.UnitTests/Bicep.LangServer.UnitTests.csproj +++ b/src/Bicep.LangServer.UnitTests/Bicep.LangServer.UnitTests.csproj @@ -14,8 +14,8 @@ - - + + all diff --git a/src/Bicep.LangServer.UnitTests/packages.lock.json b/src/Bicep.LangServer.UnitTests/packages.lock.json index 94a106fab44..a1a0adf4114 100644 --- a/src/Bicep.LangServer.UnitTests/packages.lock.json +++ b/src/Bicep.LangServer.UnitTests/packages.lock.json @@ -60,20 +60,19 @@ }, "MSTest.TestAdapter": { "type": "Direct", - "requested": "[3.2.2, )", - "resolved": "3.2.2", - "contentHash": "E3dnR9KTNCP61O4yIRBPV0KFXQszW2IJv3O+LqNIK6rUrXNSsXc9QeZBnFYBYwA21uTv3e27xDyreddqe9eUHg==", + "requested": "[3.4.3, )", + "resolved": "3.4.3", + "contentHash": "5ul31wYr17590gDumPxWMiBLPREfPF/ggtdPGfaKoYSsO0EW6H1GWY+7xnVCKa2SB4I/dSEZLDYSwRLDjA0LEQ==", "dependencies": { - "Microsoft.Testing.Extensions.Telemetry": "1.0.2", - "Microsoft.Testing.Extensions.VSTestBridge": "1.0.2", - "Microsoft.Testing.Platform.MSBuild": "1.0.2" + "Microsoft.Testing.Extensions.VSTestBridge": "1.2.1", + "Microsoft.Testing.Platform.MSBuild": "1.2.1" } }, "MSTest.TestFramework": { "type": "Direct", - "requested": "[3.3.1, )", - "resolved": "3.3.1", - "contentHash": "020SuA2p8N7o+/AHC0SLgzGpyS1hNjR8m5tWxnuGqJ3HeJhArUbuPAU8RZr8Ll38ij8oiutGCkQ/G+ymyO51Ow==" + "requested": "[3.4.3, )", + "resolved": "3.4.3", + "contentHash": "hu7F0PyRe47LScY2SCjRFIzP2QYxq1oeHMAIdao9onUm5WhobO9tfZrFAAkJ4v+66EQjilloEbA4kspVHCZpTg==" }, "Nerdbank.GitVersioning": { "type": "Direct", @@ -412,8 +411,8 @@ }, "Microsoft.ApplicationInsights": { "type": "Transitive", - "resolved": "2.21.0", - "contentHash": "btZEDWAFNo9CoYliMCriSMTX3ruRGZTtYw4mo2XyyfLlowFicYVM2Xszi5evDG95QRYV7MbbH3D2RqVwfZlJHw==", + "resolved": "2.22.0", + "contentHash": "3AOM9bZtku7RQwHyMEY3tQMrHIgjcfRDa6YQpd/QG2LDGvMydSlL9Di+8LLMt7J2RDdfJ7/2jdYv6yHcMJAnNw==", "dependencies": { "System.Diagnostics.DiagnosticSource": "5.0.0" } @@ -679,42 +678,44 @@ }, "Microsoft.Testing.Extensions.Telemetry": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "32YnySeewFl0IAgI27bTbFZdfA+Tvmg5p7kxgPcFAPKLjW1HTNKlKMrEYFgCIIT1Onak2Iod0tvsHYqXzV3a+w==", + "resolved": "1.2.1", + "contentHash": "MKGxwQhDDEoTS/ntFb21Z6Bxh9VvknmSLgEWH+NFD86fbcIqE2Al8lrXkQPeH+AqCvlhx2WnPLKd81T2PXc2dw==", "dependencies": { - "Microsoft.ApplicationInsights": "2.21.0", - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.ApplicationInsights": "2.22.0", + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.Testing.Extensions.TrxReport.Abstractions": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "MPHXtnoaf3lESF7eXbYSzvb12K1SZslEpQ1evf3GZAvtfXXyBeFwpcSMd+l3jW8z+zhmniC2gAc6jq/GEgFW2Q==", + "resolved": "1.2.1", + "contentHash": "46SnzaLR+SDaTtBWy49xdFm/rI40I8nZtziqnt2d4lgILKovWPnkM8Pehnga/uwl+OznVIh0XuRsN3NokkX1TQ==", "dependencies": { - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.Testing.Extensions.VSTestBridge": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "68/CZ2mmtdNx8QrMenQ90HVb0gYGpFP54GLRwvMyaDgnhwYgN55TDU+ypBS3X5xThJda42mckfFhBqpjjeYz+A==", + "resolved": "1.2.1", + "contentHash": "Tu8CWHEwV/92WM2DRr/qeIdH243diV5s43ODPLl13XeRqGbZlu9lk7X0a7kcxhp0BLRlA3fqMW3F6RynrnDrPw==", "dependencies": { + "Microsoft.ApplicationInsights": "2.22.0", "Microsoft.TestPlatform.ObjectModel": "17.5.0", - "Microsoft.Testing.Extensions.TrxReport.Abstractions": "1.0.2", - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.Testing.Extensions.Telemetry": "1.2.1", + "Microsoft.Testing.Extensions.TrxReport.Abstractions": "1.2.1", + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.Testing.Platform": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "pVZqxU3LsZLF7Cle0GH+j1+uz5FhmcxEe9sS5sZvONeqgv/EP/p7aI3bIaeoVs0YAVH3UmlqDAsWP5oXcT294A==" + "resolved": "1.2.1", + "contentHash": "mb7irPwqjgusJ05BxuQ5KP6uofWaoDr/dfjFNItX1Q1Ntv3EDMr3CeLInrlU2PNcPwwObw4X6bZG7wJvvFjKZQ==" }, "Microsoft.Testing.Platform.MSBuild": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "9f5JiIEEEkI/MvCi9zCxbX8k9D4xtyqJkaWKtDIt4R/CAJEYN5op3LcUyfbMAKhsFUTn1D+DGTfu5XPoh6fwJw==", + "resolved": "1.2.1", + "contentHash": "leUhW4iQNy7vmPk5uRHd4OROqfRtugWDQkWL/4AD17gxZwAAwGCaTcrqG0YVPi7uuZ+lj2Loa6kU7hBLA/v5+w==", "dependencies": { - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.TestPlatform.ObjectModel": { @@ -1598,7 +1599,7 @@ "Bicep.Core.UnitTests": "[1.0.0, )", "FluentAssertions": "[6.12.0, )", "MSTest.TestAdapter": "[3.1.1, )", - "MSTest.TestFramework": "[3.3.1, )", + "MSTest.TestFramework": "[3.4.3, )", "Microsoft.NET.Test.Sdk": "[17.10.0, )" } }, @@ -1611,7 +1612,7 @@ "FluentAssertions": "[6.12.0, )", "JsonDiffPatch.Net": "[2.3.0, )", "MSTest.TestAdapter": "[3.1.1, )", - "MSTest.TestFramework": "[3.3.1, )", + "MSTest.TestFramework": "[3.4.3, )", "Microsoft.NET.Test.Sdk": "[17.10.0, )", "Moq": "[4.20.70, )", "Newtonsoft.Json.Schema": "[4.0.1, )", @@ -1640,7 +1641,7 @@ "Bicep.LangServer": "[1.0.0, )", "FluentAssertions": "[6.12.0, )", "MSTest.TestAdapter": "[3.1.1, )", - "MSTest.TestFramework": "[3.3.1, )", + "MSTest.TestFramework": "[3.4.3, )", "Microsoft.NET.Test.Sdk": "[17.10.0, )", "Microsoft.VisualStudio.Threading": "[17.10.48, )", "Moq": "[4.20.70, )", diff --git a/src/Bicep.Local.Deploy.IntegrationTests/Bicep.Local.Deploy.IntegrationTests.csproj b/src/Bicep.Local.Deploy.IntegrationTests/Bicep.Local.Deploy.IntegrationTests.csproj index c3ec86f5203..3cd3cd2015e 100644 --- a/src/Bicep.Local.Deploy.IntegrationTests/Bicep.Local.Deploy.IntegrationTests.csproj +++ b/src/Bicep.Local.Deploy.IntegrationTests/Bicep.Local.Deploy.IntegrationTests.csproj @@ -11,8 +11,8 @@ - - + + diff --git a/src/Bicep.Local.Deploy.IntegrationTests/packages.lock.json b/src/Bicep.Local.Deploy.IntegrationTests/packages.lock.json index 8080db31159..9ea55d7aa27 100644 --- a/src/Bicep.Local.Deploy.IntegrationTests/packages.lock.json +++ b/src/Bicep.Local.Deploy.IntegrationTests/packages.lock.json @@ -69,20 +69,19 @@ }, "MSTest.TestAdapter": { "type": "Direct", - "requested": "[3.2.2, )", - "resolved": "3.2.2", - "contentHash": "E3dnR9KTNCP61O4yIRBPV0KFXQszW2IJv3O+LqNIK6rUrXNSsXc9QeZBnFYBYwA21uTv3e27xDyreddqe9eUHg==", + "requested": "[3.4.3, )", + "resolved": "3.4.3", + "contentHash": "5ul31wYr17590gDumPxWMiBLPREfPF/ggtdPGfaKoYSsO0EW6H1GWY+7xnVCKa2SB4I/dSEZLDYSwRLDjA0LEQ==", "dependencies": { - "Microsoft.Testing.Extensions.Telemetry": "1.0.2", - "Microsoft.Testing.Extensions.VSTestBridge": "1.0.2", - "Microsoft.Testing.Platform.MSBuild": "1.0.2" + "Microsoft.Testing.Extensions.VSTestBridge": "1.2.1", + "Microsoft.Testing.Platform.MSBuild": "1.2.1" } }, "MSTest.TestFramework": { "type": "Direct", - "requested": "[3.3.1, )", - "resolved": "3.3.1", - "contentHash": "020SuA2p8N7o+/AHC0SLgzGpyS1hNjR8m5tWxnuGqJ3HeJhArUbuPAU8RZr8Ll38ij8oiutGCkQ/G+ymyO51Ow==" + "requested": "[3.4.3, )", + "resolved": "3.4.3", + "contentHash": "hu7F0PyRe47LScY2SCjRFIzP2QYxq1oeHMAIdao9onUm5WhobO9tfZrFAAkJ4v+66EQjilloEbA4kspVHCZpTg==" }, "Nerdbank.GitVersioning": { "type": "Direct", @@ -394,8 +393,8 @@ }, "Microsoft.ApplicationInsights": { "type": "Transitive", - "resolved": "2.21.0", - "contentHash": "btZEDWAFNo9CoYliMCriSMTX3ruRGZTtYw4mo2XyyfLlowFicYVM2Xszi5evDG95QRYV7MbbH3D2RqVwfZlJHw==", + "resolved": "2.22.0", + "contentHash": "3AOM9bZtku7RQwHyMEY3tQMrHIgjcfRDa6YQpd/QG2LDGvMydSlL9Di+8LLMt7J2RDdfJ7/2jdYv6yHcMJAnNw==", "dependencies": { "System.Diagnostics.DiagnosticSource": "5.0.0" } @@ -661,42 +660,44 @@ }, "Microsoft.Testing.Extensions.Telemetry": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "32YnySeewFl0IAgI27bTbFZdfA+Tvmg5p7kxgPcFAPKLjW1HTNKlKMrEYFgCIIT1Onak2Iod0tvsHYqXzV3a+w==", + "resolved": "1.2.1", + "contentHash": "MKGxwQhDDEoTS/ntFb21Z6Bxh9VvknmSLgEWH+NFD86fbcIqE2Al8lrXkQPeH+AqCvlhx2WnPLKd81T2PXc2dw==", "dependencies": { - "Microsoft.ApplicationInsights": "2.21.0", - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.ApplicationInsights": "2.22.0", + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.Testing.Extensions.TrxReport.Abstractions": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "MPHXtnoaf3lESF7eXbYSzvb12K1SZslEpQ1evf3GZAvtfXXyBeFwpcSMd+l3jW8z+zhmniC2gAc6jq/GEgFW2Q==", + "resolved": "1.2.1", + "contentHash": "46SnzaLR+SDaTtBWy49xdFm/rI40I8nZtziqnt2d4lgILKovWPnkM8Pehnga/uwl+OznVIh0XuRsN3NokkX1TQ==", "dependencies": { - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.Testing.Extensions.VSTestBridge": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "68/CZ2mmtdNx8QrMenQ90HVb0gYGpFP54GLRwvMyaDgnhwYgN55TDU+ypBS3X5xThJda42mckfFhBqpjjeYz+A==", + "resolved": "1.2.1", + "contentHash": "Tu8CWHEwV/92WM2DRr/qeIdH243diV5s43ODPLl13XeRqGbZlu9lk7X0a7kcxhp0BLRlA3fqMW3F6RynrnDrPw==", "dependencies": { + "Microsoft.ApplicationInsights": "2.22.0", "Microsoft.TestPlatform.ObjectModel": "17.5.0", - "Microsoft.Testing.Extensions.TrxReport.Abstractions": "1.0.2", - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.Testing.Extensions.Telemetry": "1.2.1", + "Microsoft.Testing.Extensions.TrxReport.Abstractions": "1.2.1", + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.Testing.Platform": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "pVZqxU3LsZLF7Cle0GH+j1+uz5FhmcxEe9sS5sZvONeqgv/EP/p7aI3bIaeoVs0YAVH3UmlqDAsWP5oXcT294A==" + "resolved": "1.2.1", + "contentHash": "mb7irPwqjgusJ05BxuQ5KP6uofWaoDr/dfjFNItX1Q1Ntv3EDMr3CeLInrlU2PNcPwwObw4X6bZG7wJvvFjKZQ==" }, "Microsoft.Testing.Platform.MSBuild": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "9f5JiIEEEkI/MvCi9zCxbX8k9D4xtyqJkaWKtDIt4R/CAJEYN5op3LcUyfbMAKhsFUTn1D+DGTfu5XPoh6fwJw==", + "resolved": "1.2.1", + "contentHash": "leUhW4iQNy7vmPk5uRHd4OROqfRtugWDQkWL/4AD17gxZwAAwGCaTcrqG0YVPi7uuZ+lj2Loa6kU7hBLA/v5+w==", "dependencies": { - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.TestPlatform.ObjectModel": { @@ -1590,7 +1591,7 @@ "FluentAssertions": "[6.12.0, )", "JsonDiffPatch.Net": "[2.3.0, )", "MSTest.TestAdapter": "[3.1.1, )", - "MSTest.TestFramework": "[3.3.1, )", + "MSTest.TestFramework": "[3.4.3, )", "Microsoft.NET.Test.Sdk": "[17.10.0, )", "Moq": "[4.20.70, )", "Newtonsoft.Json.Schema": "[4.0.1, )", diff --git a/src/Bicep.RegistryModuleTool.IntegrationTests/Bicep.RegistryModuleTool.IntegrationTests.csproj b/src/Bicep.RegistryModuleTool.IntegrationTests/Bicep.RegistryModuleTool.IntegrationTests.csproj index 4233f40f80f..44ac04bf549 100644 --- a/src/Bicep.RegistryModuleTool.IntegrationTests/Bicep.RegistryModuleTool.IntegrationTests.csproj +++ b/src/Bicep.RegistryModuleTool.IntegrationTests/Bicep.RegistryModuleTool.IntegrationTests.csproj @@ -2,8 +2,8 @@ - - + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/Bicep.RegistryModuleTool.IntegrationTests/packages.lock.json b/src/Bicep.RegistryModuleTool.IntegrationTests/packages.lock.json index 182aa860c85..f791b396c20 100644 --- a/src/Bicep.RegistryModuleTool.IntegrationTests/packages.lock.json +++ b/src/Bicep.RegistryModuleTool.IntegrationTests/packages.lock.json @@ -42,20 +42,19 @@ }, "MSTest.TestAdapter": { "type": "Direct", - "requested": "[3.2.2, )", - "resolved": "3.2.2", - "contentHash": "E3dnR9KTNCP61O4yIRBPV0KFXQszW2IJv3O+LqNIK6rUrXNSsXc9QeZBnFYBYwA21uTv3e27xDyreddqe9eUHg==", + "requested": "[3.4.3, )", + "resolved": "3.4.3", + "contentHash": "5ul31wYr17590gDumPxWMiBLPREfPF/ggtdPGfaKoYSsO0EW6H1GWY+7xnVCKa2SB4I/dSEZLDYSwRLDjA0LEQ==", "dependencies": { - "Microsoft.Testing.Extensions.Telemetry": "1.0.2", - "Microsoft.Testing.Extensions.VSTestBridge": "1.0.2", - "Microsoft.Testing.Platform.MSBuild": "1.0.2" + "Microsoft.Testing.Extensions.VSTestBridge": "1.2.1", + "Microsoft.Testing.Platform.MSBuild": "1.2.1" } }, "MSTest.TestFramework": { "type": "Direct", - "requested": "[3.3.1, )", - "resolved": "3.3.1", - "contentHash": "020SuA2p8N7o+/AHC0SLgzGpyS1hNjR8m5tWxnuGqJ3HeJhArUbuPAU8RZr8Ll38ij8oiutGCkQ/G+ymyO51Ow==" + "requested": "[3.4.3, )", + "resolved": "3.4.3", + "contentHash": "hu7F0PyRe47LScY2SCjRFIzP2QYxq1oeHMAIdao9onUm5WhobO9tfZrFAAkJ4v+66EQjilloEbA4kspVHCZpTg==" }, "Nerdbank.GitVersioning": { "type": "Direct", @@ -389,8 +388,8 @@ }, "Microsoft.ApplicationInsights": { "type": "Transitive", - "resolved": "2.21.0", - "contentHash": "btZEDWAFNo9CoYliMCriSMTX3ruRGZTtYw4mo2XyyfLlowFicYVM2Xszi5evDG95QRYV7MbbH3D2RqVwfZlJHw==", + "resolved": "2.22.0", + "contentHash": "3AOM9bZtku7RQwHyMEY3tQMrHIgjcfRDa6YQpd/QG2LDGvMydSlL9Di+8LLMt7J2RDdfJ7/2jdYv6yHcMJAnNw==", "dependencies": { "System.Diagnostics.DiagnosticSource": "5.0.0" } @@ -794,42 +793,44 @@ }, "Microsoft.Testing.Extensions.Telemetry": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "32YnySeewFl0IAgI27bTbFZdfA+Tvmg5p7kxgPcFAPKLjW1HTNKlKMrEYFgCIIT1Onak2Iod0tvsHYqXzV3a+w==", + "resolved": "1.2.1", + "contentHash": "MKGxwQhDDEoTS/ntFb21Z6Bxh9VvknmSLgEWH+NFD86fbcIqE2Al8lrXkQPeH+AqCvlhx2WnPLKd81T2PXc2dw==", "dependencies": { - "Microsoft.ApplicationInsights": "2.21.0", - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.ApplicationInsights": "2.22.0", + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.Testing.Extensions.TrxReport.Abstractions": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "MPHXtnoaf3lESF7eXbYSzvb12K1SZslEpQ1evf3GZAvtfXXyBeFwpcSMd+l3jW8z+zhmniC2gAc6jq/GEgFW2Q==", + "resolved": "1.2.1", + "contentHash": "46SnzaLR+SDaTtBWy49xdFm/rI40I8nZtziqnt2d4lgILKovWPnkM8Pehnga/uwl+OznVIh0XuRsN3NokkX1TQ==", "dependencies": { - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.Testing.Extensions.VSTestBridge": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "68/CZ2mmtdNx8QrMenQ90HVb0gYGpFP54GLRwvMyaDgnhwYgN55TDU+ypBS3X5xThJda42mckfFhBqpjjeYz+A==", + "resolved": "1.2.1", + "contentHash": "Tu8CWHEwV/92WM2DRr/qeIdH243diV5s43ODPLl13XeRqGbZlu9lk7X0a7kcxhp0BLRlA3fqMW3F6RynrnDrPw==", "dependencies": { + "Microsoft.ApplicationInsights": "2.22.0", "Microsoft.TestPlatform.ObjectModel": "17.5.0", - "Microsoft.Testing.Extensions.TrxReport.Abstractions": "1.0.2", - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.Testing.Extensions.Telemetry": "1.2.1", + "Microsoft.Testing.Extensions.TrxReport.Abstractions": "1.2.1", + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.Testing.Platform": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "pVZqxU3LsZLF7Cle0GH+j1+uz5FhmcxEe9sS5sZvONeqgv/EP/p7aI3bIaeoVs0YAVH3UmlqDAsWP5oXcT294A==" + "resolved": "1.2.1", + "contentHash": "mb7irPwqjgusJ05BxuQ5KP6uofWaoDr/dfjFNItX1Q1Ntv3EDMr3CeLInrlU2PNcPwwObw4X6bZG7wJvvFjKZQ==" }, "Microsoft.Testing.Platform.MSBuild": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "9f5JiIEEEkI/MvCi9zCxbX8k9D4xtyqJkaWKtDIt4R/CAJEYN5op3LcUyfbMAKhsFUTn1D+DGTfu5XPoh6fwJw==", + "resolved": "1.2.1", + "contentHash": "leUhW4iQNy7vmPk5uRHd4OROqfRtugWDQkWL/4AD17gxZwAAwGCaTcrqG0YVPi7uuZ+lj2Loa6kU7hBLA/v5+w==", "dependencies": { - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.TestPlatform.ObjectModel": { @@ -1816,7 +1817,7 @@ "FluentAssertions": "[6.12.0, )", "JsonDiffPatch.Net": "[2.3.0, )", "MSTest.TestAdapter": "[3.1.1, )", - "MSTest.TestFramework": "[3.3.1, )", + "MSTest.TestFramework": "[3.4.3, )", "Microsoft.NET.Test.Sdk": "[17.10.0, )", "Moq": "[4.20.70, )", "Newtonsoft.Json.Schema": "[4.0.1, )", diff --git a/src/Bicep.RegistryModuleTool.TestFixtures/packages.lock.json b/src/Bicep.RegistryModuleTool.TestFixtures/packages.lock.json index 99ef1823762..b1e60ec7ea7 100644 --- a/src/Bicep.RegistryModuleTool.TestFixtures/packages.lock.json +++ b/src/Bicep.RegistryModuleTool.TestFixtures/packages.lock.json @@ -877,8 +877,8 @@ }, "MSTest.TestFramework": { "type": "Transitive", - "resolved": "3.3.1", - "contentHash": "020SuA2p8N7o+/AHC0SLgzGpyS1hNjR8m5tWxnuGqJ3HeJhArUbuPAU8RZr8Ll38ij8oiutGCkQ/G+ymyO51Ow==" + "resolved": "3.4.3", + "contentHash": "hu7F0PyRe47LScY2SCjRFIzP2QYxq1oeHMAIdao9onUm5WhobO9tfZrFAAkJ4v+66EQjilloEbA4kspVHCZpTg==" }, "Nerdbank.Streams": { "type": "Transitive", @@ -1757,7 +1757,7 @@ "FluentAssertions": "[6.12.0, )", "JsonDiffPatch.Net": "[2.3.0, )", "MSTest.TestAdapter": "[3.1.1, )", - "MSTest.TestFramework": "[3.3.1, )", + "MSTest.TestFramework": "[3.4.3, )", "Microsoft.NET.Test.Sdk": "[17.10.0, )", "Moq": "[4.20.70, )", "Newtonsoft.Json.Schema": "[4.0.1, )", diff --git a/src/Bicep.RegistryModuleTool.UnitTests/Bicep.RegistryModuleTool.UnitTests.csproj b/src/Bicep.RegistryModuleTool.UnitTests/Bicep.RegistryModuleTool.UnitTests.csproj index 2d440968858..47ded35b82d 100644 --- a/src/Bicep.RegistryModuleTool.UnitTests/Bicep.RegistryModuleTool.UnitTests.csproj +++ b/src/Bicep.RegistryModuleTool.UnitTests/Bicep.RegistryModuleTool.UnitTests.csproj @@ -6,8 +6,8 @@ - - + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/Bicep.RegistryModuleTool.UnitTests/packages.lock.json b/src/Bicep.RegistryModuleTool.UnitTests/packages.lock.json index 182aa860c85..f791b396c20 100644 --- a/src/Bicep.RegistryModuleTool.UnitTests/packages.lock.json +++ b/src/Bicep.RegistryModuleTool.UnitTests/packages.lock.json @@ -42,20 +42,19 @@ }, "MSTest.TestAdapter": { "type": "Direct", - "requested": "[3.2.2, )", - "resolved": "3.2.2", - "contentHash": "E3dnR9KTNCP61O4yIRBPV0KFXQszW2IJv3O+LqNIK6rUrXNSsXc9QeZBnFYBYwA21uTv3e27xDyreddqe9eUHg==", + "requested": "[3.4.3, )", + "resolved": "3.4.3", + "contentHash": "5ul31wYr17590gDumPxWMiBLPREfPF/ggtdPGfaKoYSsO0EW6H1GWY+7xnVCKa2SB4I/dSEZLDYSwRLDjA0LEQ==", "dependencies": { - "Microsoft.Testing.Extensions.Telemetry": "1.0.2", - "Microsoft.Testing.Extensions.VSTestBridge": "1.0.2", - "Microsoft.Testing.Platform.MSBuild": "1.0.2" + "Microsoft.Testing.Extensions.VSTestBridge": "1.2.1", + "Microsoft.Testing.Platform.MSBuild": "1.2.1" } }, "MSTest.TestFramework": { "type": "Direct", - "requested": "[3.3.1, )", - "resolved": "3.3.1", - "contentHash": "020SuA2p8N7o+/AHC0SLgzGpyS1hNjR8m5tWxnuGqJ3HeJhArUbuPAU8RZr8Ll38ij8oiutGCkQ/G+ymyO51Ow==" + "requested": "[3.4.3, )", + "resolved": "3.4.3", + "contentHash": "hu7F0PyRe47LScY2SCjRFIzP2QYxq1oeHMAIdao9onUm5WhobO9tfZrFAAkJ4v+66EQjilloEbA4kspVHCZpTg==" }, "Nerdbank.GitVersioning": { "type": "Direct", @@ -389,8 +388,8 @@ }, "Microsoft.ApplicationInsights": { "type": "Transitive", - "resolved": "2.21.0", - "contentHash": "btZEDWAFNo9CoYliMCriSMTX3ruRGZTtYw4mo2XyyfLlowFicYVM2Xszi5evDG95QRYV7MbbH3D2RqVwfZlJHw==", + "resolved": "2.22.0", + "contentHash": "3AOM9bZtku7RQwHyMEY3tQMrHIgjcfRDa6YQpd/QG2LDGvMydSlL9Di+8LLMt7J2RDdfJ7/2jdYv6yHcMJAnNw==", "dependencies": { "System.Diagnostics.DiagnosticSource": "5.0.0" } @@ -794,42 +793,44 @@ }, "Microsoft.Testing.Extensions.Telemetry": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "32YnySeewFl0IAgI27bTbFZdfA+Tvmg5p7kxgPcFAPKLjW1HTNKlKMrEYFgCIIT1Onak2Iod0tvsHYqXzV3a+w==", + "resolved": "1.2.1", + "contentHash": "MKGxwQhDDEoTS/ntFb21Z6Bxh9VvknmSLgEWH+NFD86fbcIqE2Al8lrXkQPeH+AqCvlhx2WnPLKd81T2PXc2dw==", "dependencies": { - "Microsoft.ApplicationInsights": "2.21.0", - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.ApplicationInsights": "2.22.0", + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.Testing.Extensions.TrxReport.Abstractions": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "MPHXtnoaf3lESF7eXbYSzvb12K1SZslEpQ1evf3GZAvtfXXyBeFwpcSMd+l3jW8z+zhmniC2gAc6jq/GEgFW2Q==", + "resolved": "1.2.1", + "contentHash": "46SnzaLR+SDaTtBWy49xdFm/rI40I8nZtziqnt2d4lgILKovWPnkM8Pehnga/uwl+OznVIh0XuRsN3NokkX1TQ==", "dependencies": { - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.Testing.Extensions.VSTestBridge": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "68/CZ2mmtdNx8QrMenQ90HVb0gYGpFP54GLRwvMyaDgnhwYgN55TDU+ypBS3X5xThJda42mckfFhBqpjjeYz+A==", + "resolved": "1.2.1", + "contentHash": "Tu8CWHEwV/92WM2DRr/qeIdH243diV5s43ODPLl13XeRqGbZlu9lk7X0a7kcxhp0BLRlA3fqMW3F6RynrnDrPw==", "dependencies": { + "Microsoft.ApplicationInsights": "2.22.0", "Microsoft.TestPlatform.ObjectModel": "17.5.0", - "Microsoft.Testing.Extensions.TrxReport.Abstractions": "1.0.2", - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.Testing.Extensions.Telemetry": "1.2.1", + "Microsoft.Testing.Extensions.TrxReport.Abstractions": "1.2.1", + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.Testing.Platform": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "pVZqxU3LsZLF7Cle0GH+j1+uz5FhmcxEe9sS5sZvONeqgv/EP/p7aI3bIaeoVs0YAVH3UmlqDAsWP5oXcT294A==" + "resolved": "1.2.1", + "contentHash": "mb7irPwqjgusJ05BxuQ5KP6uofWaoDr/dfjFNItX1Q1Ntv3EDMr3CeLInrlU2PNcPwwObw4X6bZG7wJvvFjKZQ==" }, "Microsoft.Testing.Platform.MSBuild": { "type": "Transitive", - "resolved": "1.0.2", - "contentHash": "9f5JiIEEEkI/MvCi9zCxbX8k9D4xtyqJkaWKtDIt4R/CAJEYN5op3LcUyfbMAKhsFUTn1D+DGTfu5XPoh6fwJw==", + "resolved": "1.2.1", + "contentHash": "leUhW4iQNy7vmPk5uRHd4OROqfRtugWDQkWL/4AD17gxZwAAwGCaTcrqG0YVPi7uuZ+lj2Loa6kU7hBLA/v5+w==", "dependencies": { - "Microsoft.Testing.Platform": "1.0.2" + "Microsoft.Testing.Platform": "1.2.1" } }, "Microsoft.TestPlatform.ObjectModel": { @@ -1816,7 +1817,7 @@ "FluentAssertions": "[6.12.0, )", "JsonDiffPatch.Net": "[2.3.0, )", "MSTest.TestAdapter": "[3.1.1, )", - "MSTest.TestFramework": "[3.3.1, )", + "MSTest.TestFramework": "[3.4.3, )", "Microsoft.NET.Test.Sdk": "[17.10.0, )", "Moq": "[4.20.70, )", "Newtonsoft.Json.Schema": "[4.0.1, )", diff --git a/src/Bicep.Tools.Benchmark/packages.lock.json b/src/Bicep.Tools.Benchmark/packages.lock.json index 0c2e5637e76..7d01671feed 100644 --- a/src/Bicep.Tools.Benchmark/packages.lock.json +++ b/src/Bicep.Tools.Benchmark/packages.lock.json @@ -811,8 +811,8 @@ }, "MSTest.TestFramework": { "type": "Transitive", - "resolved": "3.3.1", - "contentHash": "020SuA2p8N7o+/AHC0SLgzGpyS1hNjR8m5tWxnuGqJ3HeJhArUbuPAU8RZr8Ll38ij8oiutGCkQ/G+ymyO51Ow==" + "resolved": "3.4.3", + "contentHash": "hu7F0PyRe47LScY2SCjRFIzP2QYxq1oeHMAIdao9onUm5WhobO9tfZrFAAkJ4v+66EQjilloEbA4kspVHCZpTg==" }, "Nerdbank.Streams": { "type": "Transitive", @@ -1623,7 +1623,7 @@ "Bicep.Core.UnitTests": "[1.0.0, )", "FluentAssertions": "[6.12.0, )", "MSTest.TestAdapter": "[3.1.1, )", - "MSTest.TestFramework": "[3.3.1, )", + "MSTest.TestFramework": "[3.4.3, )", "Microsoft.NET.Test.Sdk": "[17.10.0, )" } }, @@ -1636,7 +1636,7 @@ "FluentAssertions": "[6.12.0, )", "JsonDiffPatch.Net": "[2.3.0, )", "MSTest.TestAdapter": "[3.1.1, )", - "MSTest.TestFramework": "[3.3.1, )", + "MSTest.TestFramework": "[3.4.3, )", "Microsoft.NET.Test.Sdk": "[17.10.0, )", "Moq": "[4.20.70, )", "Newtonsoft.Json.Schema": "[4.0.1, )", @@ -1665,7 +1665,7 @@ "Bicep.LangServer": "[1.0.0, )", "FluentAssertions": "[6.12.0, )", "MSTest.TestAdapter": "[3.1.1, )", - "MSTest.TestFramework": "[3.3.1, )", + "MSTest.TestFramework": "[3.4.3, )", "Microsoft.NET.Test.Sdk": "[17.10.0, )", "Microsoft.VisualStudio.Threading": "[17.10.48, )", "Moq": "[4.20.70, )",