diff --git a/run-ui-tests.ps1 b/run-ui-tests.ps1 new file mode 100644 index 00000000..92051de1 --- /dev/null +++ b/run-ui-tests.ps1 @@ -0,0 +1,131 @@ +[CmdletBinding()] +param( + [string]$ExecutablePath, + [string]$Filter = 'TestCategory=UI', + [string]$Logger = 'console;verbosity=normal', + [switch]$NoBuild, + [switch]$ListTests, + [switch]$ConfirmIsolatedProfile, + [string[]]$AdditionalDotNetArguments = @() +) + +Set-StrictMode -Version Latest +$ErrorActionPreference = 'Stop' + +$repositoryRoot = $PSScriptRoot +$testProject = Join-Path $repositoryRoot 'tests\FileManager.UiTests\FileManager.UiTests.csproj' + +function Resolve-FileManagerExecutable { + param([string]$RequestedPath) + + $candidates = [System.Collections.Generic.List[string]]::new() + if (-not [string]::IsNullOrWhiteSpace($RequestedPath)) { + # An explicit path is authoritative so a typo cannot silently test a different checkout build. + if (-not (Test-Path -LiteralPath $RequestedPath -PathType Leaf)) { + throw "The requested FileManager executable was not found: $RequestedPath" + } + return (Resolve-Path -LiteralPath $RequestedPath).Path + } + if (-not [string]::IsNullOrWhiteSpace($env:FILEMANAGER_UI_EXE)) { + # Preserve an explicit caller selection before trying checkout-relative or installed locations. + $candidates.Add($env:FILEMANAGER_UI_EXE) + } + + # Repository-relative candidates make the runner portable across drive letters and checkout directories. + foreach ($relativePath in @( + 'src\vcxproj\salamander\Debug_x64\salamand.exe', + 'src\vcxproj\salamander\Release_x64\salamand.exe', + 'src\vcxproj\salamander\Debug_x86\salamand.exe', + 'src\vcxproj\salamander\Release_x86\salamand.exe' + )) { + $candidates.Add((Join-Path $repositoryRoot $relativePath)) + } + + foreach ($appPathKey in @( + 'HKCU:\Software\Microsoft\Windows\CurrentVersion\App Paths\salamand.exe', + 'HKLM:\Software\Microsoft\Windows\CurrentVersion\App Paths\salamand.exe', + 'HKLM:\Software\WOW6432Node\Microsoft\Windows\CurrentVersion\App Paths\salamand.exe' + )) { + if (Test-Path -LiteralPath $appPathKey) { + # App Paths is the authoritative Windows registration when Salamander was installed outside this checkout. + $registeredPath = (Get-Item -LiteralPath $appPathKey).GetValue('') + if (-not [string]::IsNullOrWhiteSpace($registeredPath)) { + $candidates.Add($registeredPath) + } + } + } + + foreach ($candidate in $candidates) { + if (-not [string]::IsNullOrWhiteSpace($candidate) -and + (Test-Path -LiteralPath $candidate -PathType Leaf)) { + return (Resolve-Path -LiteralPath $candidate).Path + } + } + + throw 'salamand.exe was not found. Build Debug x64 or pass -ExecutablePath with the installed application path.' +} + +if (-not $ConfirmIsolatedProfile) { + # The application writes HKCU configuration, so require an explicit acknowledgement before enabling the test gate. + throw 'UI tests modify the current Windows profile. Re-run with -ConfirmIsolatedProfile under a dedicated disposable test account.' +} +if (-not (Test-Path -LiteralPath $testProject -PathType Leaf)) { + throw "The UI test project was not found: $testProject" +} +if ($null -eq (Get-Command dotnet -ErrorAction SilentlyContinue)) { + throw 'dotnet was not found on PATH.' +} + +$resolvedExecutable = Resolve-FileManagerExecutable $ExecutablePath +$previousIsolated = $env:FILEMANAGER_UI_ISOLATED +$previousExecutable = $env:FILEMANAGER_UI_EXE +$testExitCode = 1 + +try { + $env:FILEMANAGER_UI_ISOLATED = '1' + $env:FILEMANAGER_UI_EXE = $resolvedExecutable + + $arguments = [System.Collections.Generic.List[string]]::new() + $arguments.Add('test') + $arguments.Add($testProject) + if ($NoBuild) { + # A no-build rerun must also avoid restore, which would regenerate ignored NuGet obj metadata unnecessarily. + $arguments.Add('--no-build') + $arguments.Add('--no-restore') + } + if ($ListTests) { + $arguments.Add('--list-tests') + } + if (-not [string]::IsNullOrWhiteSpace($Filter)) { + $arguments.Add('--filter') + $arguments.Add($Filter) + } + if (-not [string]::IsNullOrWhiteSpace($Logger)) { + $arguments.Add('--logger') + $arguments.Add($Logger) + } + foreach ($argument in $AdditionalDotNetArguments) { + $arguments.Add($argument) + } + + Write-Host "Running FileManager UI tests" + Write-Host " Project: $testProject" + Write-Host " Executable: $resolvedExecutable" + Write-Host " Filter: $Filter" + + Push-Location $repositoryRoot + try { + & dotnet @arguments + $testExitCode = $LASTEXITCODE + } + finally { + Pop-Location + } +} +finally { + # Restore the caller's process environment so focused reruns do not affect later shell commands. + $env:FILEMANAGER_UI_ISOLATED = $previousIsolated + $env:FILEMANAGER_UI_EXE = $previousExecutable +} + +exit $testExitCode diff --git a/src/async_copy.cpp b/src/async_copy.cpp index 5e5595b6..428c1b4f 100644 --- a/src/async_copy.cpp +++ b/src/async_copy.cpp @@ -6273,6 +6273,7 @@ BOOL DoDeleteFile(HWND hProgressDlg, COperation* operation, const CQuadWord& siz DeleteFileWithVerifiedIdentity(name, operation->SourceIdentity, &err); } DELETE_READY: + ; // A label must own a statement even when identity rejection only skips deletion. } else { diff --git a/tests/FileManager.UiTests/README.md b/tests/FileManager.UiTests/README.md index c18e4477..a7dbaa55 100644 --- a/tests/FileManager.UiTests/README.md +++ b/tests/FileManager.UiTests/README.md @@ -1,11 +1,13 @@ # FileManager UI tests -This project contains seven primary parameterized FlaUI/UIA3 lifecycle cases plus focused file-operation characterization cases for the native FileManager UI. Repetition belongs to the separately scheduled lock-stress soak. The cases cover application launch, accessibility-tree discovery, Configuration dialog cancel/commit/restart flows, a committed setting verified after restart, FTP bookmark creation plus edit verified after restart, and native disk create/copy/rename/move/delete/find/view/edit commands. +This project contains a seven-case parameterized FlaUI/UIA3 lifecycle group, together with focused file-operation, recovery, plug-in, toolbar, TLS, and native-safety characterization tests. The cases cover application launch, accessibility-tree discovery, Configuration dialog cancel/commit/restart flows, a committed setting verified after restart, FTP bookmark creation plus edit verified after restart, and native disk create/copy/rename/move/delete/find/view/edit commands. The tests intentionally refuse to run unless `FILEMANAGER_UI_ISOLATED=1` is set. The application persists configuration under the current user registry hive, so run them under a dedicated Windows test account or another isolated user profile. Set these environment variables before running: +The `run-ui-tests.ps1` entry point described below sets `FILEMANAGER_UI_ISOLATED` and `FILEMANAGER_UI_EXE` for its child test process. Configure the remaining variables only when their optional test lanes are required. When calling `dotnet test` directly, set the first two variables manually. + - `FILEMANAGER_UI_ISOLATED=1` — confirms that the current Windows profile is disposable. - `FILEMANAGER_UI_EXE` — absolute path to `salamand.exe` or a debug build of the executable. - `FILEMANAGER_UI_ARGUMENTS` — optional command-line arguments, for example a test-only `-c` configuration file. @@ -18,12 +20,22 @@ Set these environment variables before running: - `FILEMANAGER_UI_HELP_SEARCH_TERM` — a search term known to exist in the language-specific deployed `salamand.chm`. - `FILEMANAGER_UI_HELP_EXPECTED_RESULT` — text expected in the Help Search result for that term. -Run the suite on an interactive Windows desktop session: +Run the interactive UI category on an interactive Windows desktop session. This is the runner default and currently selects approximately 60 cases: ```powershell -dotnet test tests/FileManager.UiTests/FileManager.UiTests.csproj --filter TestCategory=UI +.\run-ui-tests.ps1 -ConfirmIsolatedProfile ``` +Run the entire test project, currently 125 discovered cases, by explicitly clearing the default category filter: + +```powershell +.\run-ui-tests.ps1 -ConfirmIsolatedProfile -Filter '' +``` + +The complete run includes UI, native-safety, TLS, toolbar-contract, and other non-UI tests. Tests whose optional prerequisites are unavailable—such as the ZIP plug-in, deployed Help content, a second volume, fault injection, or Recycle Bin configuration—are reported as skipped rather than omitted from discovery. + +The runner derives paths from its repository location, prefers an existing checkout build, and otherwise checks the Windows `App Paths` registration for an installed `salamand.exe`. Use `-ExecutablePath 'C:\Program Files\Open Salamander\salamand.exe'` to select another installation, `-Filter 'Name~Copy_file'` for a focused run, or `-NoBuild` after the managed test project is already built. The confirmation switch is intentionally required because the application writes configuration under the current user profile. File-operation tests create their own disposable source and target directories; callers do not need to configure shared test folders. + The configuration dialog is opened through its stable native command ID only to avoid locale-dependent menu text. All window discovery, control inspection, focus, dialog lifecycle, and restart assertions use FlaUI/UIA3. File-operation cases create a fresh disposable directory tree under the system temporary directory for every test, start the left and right panels with `-l`/`-r`, and use the host's stable native command IDs. They verify files and nested directory trees after normal operations, copy and move overwrite/skip conflict choices, rename overwrite-decline and case-only behavior, mixed-selection deletion, continuation after a skipped delete error, file search, internal viewing, configured-editor launch, metadata preservation, cancellation after the worker has started, and destination/name failures. ADS cases create named, empty, large, and edge-named streams; exercise overwrite and retry after a temporarily denied stream; and verify cross-volume preservation or explicit source retention when an ADS-unsupported target reports metadata loss. The recovery fixture seeds an incomplete durable journal with a ready transactional sibling file before launch, then verifies the real startup reconciliation flow. The tests never use a caller-supplied directory as their mutation target; cross-volume cases use only a GUID child under the explicitly configured disposable root. diff --git a/tests/FileManager.UiTests/obj/FileManager.UiTests.csproj.nuget.dgspec.json b/tests/FileManager.UiTests/obj/FileManager.UiTests.csproj.nuget.dgspec.json deleted file mode 100644 index 2a9d925c..00000000 --- a/tests/FileManager.UiTests/obj/FileManager.UiTests.csproj.nuget.dgspec.json +++ /dev/null @@ -1,102 +0,0 @@ -{ - "format": 1, - "restore": { - "D:\\FileManager\\tests\\FileManager.UiTests\\FileManager.UiTests.csproj": {} - }, - "projects": { - "D:\\FileManager\\tests\\FileManager.UiTests\\FileManager.UiTests.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\FileManager\\tests\\FileManager.UiTests\\FileManager.UiTests.csproj", - "projectName": "FileManager.UiTests", - "projectPath": "D:\\FileManager\\tests\\FileManager.UiTests\\FileManager.UiTests.csproj", - "packagesPath": "C:\\Users\\plesz\\.nuget\\packages\\", - "outputPath": "D:\\FileManager\\tests\\FileManager.UiTests\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\plesz\\AppData\\Roaming\\NuGet\\NuGet.Config" - ], - "originalTargetFrameworks": [ - "net8.0-windows" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net8.0-windows": { - "framework": "net8.0-windows7.0", - "targetAlias": "net8.0-windows", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "direct" - }, - "SdkAnalysisLevel": "10.0.400" - }, - "frameworks": { - "net8.0-windows": { - "framework": "net8.0-windows7.0", - "targetAlias": "net8.0-windows", - "dependencies": { - "FlaUI.UIA3": { - "target": "Package", - "version": "[5.0.0, )" - }, - "Microsoft.NET.Test.Sdk": { - "target": "Package", - "version": "[17.12.0, )" - }, - "NUnit": { - "target": "Package", - "version": "[4.3.2, )" - }, - "NUnit3TestAdapter": { - "suppressParent": "All", - "target": "Package", - "version": "[5.0.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "downloadDependencies": [ - { - "name": "Microsoft.AspNetCore.App.Ref", - "version": "[8.0.30, 8.0.30]" - }, - { - "name": "Microsoft.NETCore.App.Ref", - "version": "[8.0.30, 8.0.30]" - }, - { - "name": "Microsoft.WindowsDesktop.App.Ref", - "version": "[8.0.30, 8.0.30]" - } - ], - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.400/PortableRuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/tests/FileManager.UiTests/obj/FileManager.UiTests.csproj.nuget.g.props b/tests/FileManager.UiTests/obj/FileManager.UiTests.csproj.nuget.g.props deleted file mode 100644 index bdcc9fee..00000000 --- a/tests/FileManager.UiTests/obj/FileManager.UiTests.csproj.nuget.g.props +++ /dev/null @@ -1,28 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\plesz\.nuget\packages\ - PackageReference - 7.0.0 - - - - - - - - - - - - - - - - C:\Users\plesz\.nuget\packages\interop.uiautomationclient\10.19041.0 - - \ No newline at end of file diff --git a/tests/FileManager.UiTests/obj/project.assets.json b/tests/FileManager.UiTests/obj/project.assets.json deleted file mode 100644 index 6a94405e..00000000 --- a/tests/FileManager.UiTests/obj/project.assets.json +++ /dev/null @@ -1,2490 +0,0 @@ -{ - "version": 4, - "targets": { - "net8.0-windows": { - "FlaUI.Core/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Registry": "5.0.0", - "System.Diagnostics.PerformanceCounter": "8.0.1", - "System.Drawing.Common": "8.0.10", - "System.Management": "8.0.0", - "System.Security.Permissions": "8.0.0" - }, - "compile": { - "lib/net8.0-windows7.0/FlaUI.Core.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0-windows7.0/FlaUI.Core.dll": { - "related": ".xml" - } - }, - "frameworkReferences": [ - "Microsoft.WindowsDesktop.App.WindowsForms" - ] - }, - "FlaUI.UIA3/5.0.0": { - "type": "package", - "dependencies": { - "FlaUI.Core": "5.0.0", - "Interop.UIAutomationClient": "10.19041.0" - }, - "compile": { - "lib/net8.0-windows7.0/FlaUI.UIA3.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0-windows7.0/FlaUI.UIA3.dll": { - "related": ".xml" - } - } - }, - "Interop.UIAutomationClient/10.19041.0": { - "type": "package", - "compile": { - "lib/netcoreapp3.0/Interop.UIAutomationClient.dll": {} - }, - "runtime": { - "lib/netcoreapp3.0/Interop.UIAutomationClient.dll": {} - }, - "build": { - "build/_._": {} - } - }, - "Microsoft.ApplicationInsights/2.22.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.DiagnosticSource": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": { - "related": ".pdb;.xml" - } - } - }, - "Microsoft.CodeCoverage/17.12.0": { - "type": "package", - "compile": { - "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} - }, - "build": { - "build/netstandard2.0/Microsoft.CodeCoverage.props": {}, - "build/netstandard2.0/Microsoft.CodeCoverage.targets": {} - } - }, - "Microsoft.NET.Test.Sdk/17.12.0": { - "type": "package", - "dependencies": { - "Microsoft.CodeCoverage": "17.12.0", - "Microsoft.TestPlatform.TestHost": "17.12.0" - }, - "compile": { - "lib/netcoreapp3.1/_._": {} - }, - "runtime": { - "lib/netcoreapp3.1/_._": {} - }, - "build": { - "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.props": {}, - "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.targets": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {} - } - }, - "Microsoft.NETCore.Platforms/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.Testing.Extensions.Telemetry/1.5.3": { - "type": "package", - "dependencies": { - "Microsoft.ApplicationInsights": "2.22.0", - "Microsoft.Testing.Platform": "1.5.3" - }, - "compile": { - "lib/net8.0/Microsoft.Testing.Extensions.Telemetry.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.Testing.Extensions.Telemetry.dll": { - "related": ".xml" - } - }, - "resource": { - "lib/net8.0/cs/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "cs" - }, - "lib/net8.0/de/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "de" - }, - "lib/net8.0/es/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "es" - }, - "lib/net8.0/fr/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "fr" - }, - "lib/net8.0/it/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "it" - }, - "lib/net8.0/ja/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "ja" - }, - "lib/net8.0/ko/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "ko" - }, - "lib/net8.0/pl/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "pl" - }, - "lib/net8.0/pt-BR/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "pt-BR" - }, - "lib/net8.0/ru/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "ru" - }, - "lib/net8.0/tr/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "tr" - }, - "lib/net8.0/zh-Hans/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net8.0/zh-Hant/Microsoft.Testing.Extensions.Telemetry.resources.dll": { - "locale": "zh-Hant" - } - }, - "build": { - "buildTransitive/net8.0/Microsoft.Testing.Extensions.Telemetry.props": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Microsoft.Testing.Extensions.Telemetry.props": {} - } - }, - "Microsoft.Testing.Extensions.TrxReport.Abstractions/1.5.3": { - "type": "package", - "dependencies": { - "Microsoft.Testing.Platform": "1.5.3" - }, - "compile": { - "lib/net8.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Testing.Extensions.VSTestBridge/1.5.3": { - "type": "package", - "dependencies": { - "Microsoft.ApplicationInsights": "2.22.0", - "Microsoft.TestPlatform.ObjectModel": "17.12.0", - "Microsoft.Testing.Extensions.Telemetry": "1.5.3", - "Microsoft.Testing.Extensions.TrxReport.Abstractions": "1.5.3", - "Microsoft.Testing.Platform": "1.5.3" - }, - "compile": { - "lib/net8.0/Microsoft.Testing.Extensions.VSTestBridge.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.Testing.Extensions.VSTestBridge.dll": { - "related": ".xml" - } - }, - "resource": { - "lib/net8.0/cs/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": { - "locale": "cs" - }, - "lib/net8.0/de/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": { - "locale": "de" - }, - "lib/net8.0/es/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": { - "locale": "es" - }, - "lib/net8.0/fr/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": { - "locale": "fr" - }, - "lib/net8.0/it/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": { - "locale": "it" - }, - "lib/net8.0/ja/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": { - "locale": "ja" - }, - "lib/net8.0/ko/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": { - "locale": "ko" - }, - "lib/net8.0/pl/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": { - "locale": "pl" - }, - "lib/net8.0/pt-BR/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": { - "locale": "pt-BR" - }, - "lib/net8.0/ru/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": { - "locale": "ru" - }, - "lib/net8.0/tr/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": { - "locale": "tr" - }, - "lib/net8.0/zh-Hans/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net8.0/zh-Hant/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.Testing.Platform/1.5.3": { - "type": "package", - "compile": { - "lib/net8.0/Microsoft.Testing.Platform.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.Testing.Platform.dll": { - "related": ".xml" - } - }, - "resource": { - "lib/net8.0/cs/Microsoft.Testing.Platform.resources.dll": { - "locale": "cs" - }, - "lib/net8.0/de/Microsoft.Testing.Platform.resources.dll": { - "locale": "de" - }, - "lib/net8.0/es/Microsoft.Testing.Platform.resources.dll": { - "locale": "es" - }, - "lib/net8.0/fr/Microsoft.Testing.Platform.resources.dll": { - "locale": "fr" - }, - "lib/net8.0/it/Microsoft.Testing.Platform.resources.dll": { - "locale": "it" - }, - "lib/net8.0/ja/Microsoft.Testing.Platform.resources.dll": { - "locale": "ja" - }, - "lib/net8.0/ko/Microsoft.Testing.Platform.resources.dll": { - "locale": "ko" - }, - "lib/net8.0/pl/Microsoft.Testing.Platform.resources.dll": { - "locale": "pl" - }, - "lib/net8.0/pt-BR/Microsoft.Testing.Platform.resources.dll": { - "locale": "pt-BR" - }, - "lib/net8.0/ru/Microsoft.Testing.Platform.resources.dll": { - "locale": "ru" - }, - "lib/net8.0/tr/Microsoft.Testing.Platform.resources.dll": { - "locale": "tr" - }, - "lib/net8.0/zh-Hans/Microsoft.Testing.Platform.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net8.0/zh-Hant/Microsoft.Testing.Platform.resources.dll": { - "locale": "zh-Hant" - } - }, - "build": { - "buildTransitive/net8.0/Microsoft.Testing.Platform.props": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Microsoft.Testing.Platform.props": {} - } - }, - "Microsoft.Testing.Platform.MSBuild/1.5.3": { - "type": "package", - "dependencies": { - "Microsoft.Testing.Platform": "1.5.3" - }, - "compile": { - "lib/net8.0/Microsoft.Testing.Extensions.MSBuild.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.Testing.Extensions.MSBuild.dll": { - "related": ".xml" - } - }, - "resource": { - "lib/net8.0/cs/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "cs" - }, - "lib/net8.0/de/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "de" - }, - "lib/net8.0/es/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "es" - }, - "lib/net8.0/fr/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "fr" - }, - "lib/net8.0/it/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "it" - }, - "lib/net8.0/ja/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "ja" - }, - "lib/net8.0/ko/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "ko" - }, - "lib/net8.0/pl/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "pl" - }, - "lib/net8.0/pt-BR/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "pt-BR" - }, - "lib/net8.0/ru/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "ru" - }, - "lib/net8.0/tr/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "tr" - }, - "lib/net8.0/zh-Hans/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net8.0/zh-Hant/Microsoft.Testing.Extensions.MSBuild.resources.dll": { - "locale": "zh-Hant" - } - }, - "build": { - "buildTransitive/Microsoft.Testing.Platform.MSBuild.props": {}, - "buildTransitive/Microsoft.Testing.Platform.MSBuild.targets": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Microsoft.Testing.Platform.MSBuild.props": {}, - "buildMultiTargeting/Microsoft.Testing.Platform.MSBuild.targets": {} - } - }, - "Microsoft.TestPlatform.ObjectModel/17.12.0": { - "type": "package", - "dependencies": { - "System.Reflection.Metadata": "1.6.0" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.TestPlatform.TestHost/17.12.0": { - "type": "package", - "dependencies": { - "Microsoft.TestPlatform.ObjectModel": "17.12.0", - "Newtonsoft.Json": "13.0.1" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": {}, - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, - "lib/netcoreapp3.1/testhost.dll": { - "related": ".deps.json" - } - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": {}, - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, - "lib/netcoreapp3.1/testhost.dll": { - "related": ".deps.json" - } - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hant" - } - }, - "build": { - "build/netcoreapp3.1/Microsoft.TestPlatform.TestHost.props": {} - } - }, - "Microsoft.Win32.Registry/5.0.0": { - "type": "package", - "dependencies": { - "System.Security.AccessControl": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - }, - "compile": { - "ref/netstandard2.0/Microsoft.Win32.Registry.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { - "related": ".xml" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "Microsoft.Win32.SystemEvents/8.0.0": { - "type": "package", - "compile": { - "lib/net8.0/Microsoft.Win32.SystemEvents.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.Win32.SystemEvents.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net8.0/Microsoft.Win32.SystemEvents.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "Newtonsoft.Json/13.0.1": { - "type": "package", - "compile": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "related": ".xml" - } - } - }, - "NUnit/4.3.2": { - "type": "package", - "compile": { - "lib/net8.0/nunit.framework.dll": { - "related": ".legacy.xml;.xml" - }, - "lib/net8.0/nunit.framework.legacy.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/nunit.framework.dll": { - "related": ".legacy.xml;.xml" - }, - "lib/net8.0/nunit.framework.legacy.dll": { - "related": ".xml" - } - }, - "build": { - "build/NUnit.props": {} - } - }, - "NUnit3TestAdapter/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Testing.Extensions.VSTestBridge": "1.5.3", - "Microsoft.Testing.Platform.MSBuild": "1.5.3" - }, - "build": { - "build/netcoreapp3.1/NUnit3TestAdapter.props": {}, - "build/netcoreapp3.1/NUnit3TestAdapter.targets": {} - } - }, - "System.CodeDom/8.0.0": { - "type": "package", - "compile": { - "lib/net8.0/System.CodeDom.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/System.CodeDom.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "System.Configuration.ConfigurationManager/8.0.1": { - "type": "package", - "dependencies": { - "System.Diagnostics.EventLog": "8.0.1", - "System.Security.Cryptography.ProtectedData": "8.0.0" - }, - "compile": { - "lib/net8.0/System.Configuration.ConfigurationManager.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/System.Configuration.ConfigurationManager.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "System.Diagnostics.DiagnosticSource/5.0.0": { - "type": "package", - "compile": { - "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": { - "related": ".xml" - } - } - }, - "System.Diagnostics.EventLog/8.0.1": { - "type": "package", - "compile": { - "lib/net8.0/System.Diagnostics.EventLog.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/System.Diagnostics.EventLog.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": { - "assetType": "runtime", - "rid": "win" - }, - "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Diagnostics.PerformanceCounter/8.0.1": { - "type": "package", - "dependencies": { - "System.Configuration.ConfigurationManager": "8.0.1" - }, - "compile": { - "lib/net8.0/System.Diagnostics.PerformanceCounter.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/System.Diagnostics.PerformanceCounter.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net8.0/System.Diagnostics.PerformanceCounter.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Drawing.Common/8.0.10": { - "type": "package", - "dependencies": { - "Microsoft.Win32.SystemEvents": "8.0.0" - }, - "compile": { - "lib/net8.0/System.Drawing.Common.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/net8.0/System.Drawing.Common.dll": { - "related": ".pdb;.xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "System.Management/8.0.0": { - "type": "package", - "dependencies": { - "System.CodeDom": "8.0.0" - }, - "compile": { - "lib/net8.0/System.Management.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/System.Management.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net8.0/System.Management.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Reflection.Metadata/1.6.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/System.Reflection.Metadata.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.Reflection.Metadata.dll": { - "related": ".xml" - } - } - }, - "System.Security.AccessControl/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - }, - "compile": { - "ref/netstandard2.0/System.Security.AccessControl.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.Security.AccessControl.dll": { - "related": ".xml" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.ProtectedData/8.0.0": { - "type": "package", - "compile": { - "lib/net8.0/System.Security.Cryptography.ProtectedData.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/System.Security.Cryptography.ProtectedData.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "System.Security.Permissions/8.0.0": { - "type": "package", - "dependencies": { - "System.Windows.Extensions": "8.0.0" - }, - "compile": { - "lib/net8.0/System.Security.Permissions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/System.Security.Permissions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "System.Security.Principal.Windows/5.0.0": { - "type": "package", - "compile": { - "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.Security.Principal.Windows.dll": { - "related": ".xml" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Windows.Extensions/8.0.0": { - "type": "package", - "compile": { - "lib/net8.0/System.Windows.Extensions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/System.Windows.Extensions.dll": { - "related": ".xml" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net8.0/System.Windows.Extensions.dll": { - "assetType": "runtime", - "rid": "win" - } - } - } - } - }, - "libraries": { - "FlaUI.Core/5.0.0": { - "sha512": "VWWYqwjsYkii2BrUsz5+bpXEp27NherKhLt19hTxHwJP4KrfyZoeo1FdBov4ZTh655wZAKDGIjR7NJLDesuzeg==", - "type": "package", - "path": "flaui.core/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "CHANGELOG.md", - "FlaUI.png", - "LICENSE.txt", - "flaui.core.5.0.0.nupkg.sha512", - "flaui.core.nuspec", - "lib/net48/FlaUI.Core.dll", - "lib/net48/FlaUI.Core.xml", - "lib/net6.0-windows7.0/FlaUI.Core.dll", - "lib/net6.0-windows7.0/FlaUI.Core.xml", - "lib/net8.0-windows7.0/FlaUI.Core.dll", - "lib/net8.0-windows7.0/FlaUI.Core.xml" - ] - }, - "FlaUI.UIA3/5.0.0": { - "sha512": "s1Yy1RsRJ0OXvmtxQlNJd0cu4sfvN3PFFu6skBGK8VlwPl/b38E0V5kCbo2gvkuhRIu4Itfxjdo7DUMF7qJw4Q==", - "type": "package", - "path": "flaui.uia3/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "CHANGELOG.md", - "FlaUI.png", - "LICENSE.txt", - "flaui.uia3.5.0.0.nupkg.sha512", - "flaui.uia3.nuspec", - "lib/net48/FlaUI.UIA3.dll", - "lib/net48/FlaUI.UIA3.xml", - "lib/net6.0-windows7.0/FlaUI.UIA3.dll", - "lib/net6.0-windows7.0/FlaUI.UIA3.xml", - "lib/net8.0-windows7.0/FlaUI.UIA3.dll", - "lib/net8.0-windows7.0/FlaUI.UIA3.xml" - ] - }, - "Interop.UIAutomationClient/10.19041.0": { - "sha512": "Me5vKNZ1JSg6txTsPQXaWx7fVNh+fmcUPPwtDKJtqvbMM0N8aoa/l/QPolkJIRnasCabCNt4v2zG4p1Q9HU98A==", - "type": "package", - "path": "interop.uiautomationclient/10.19041.0", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.txt", - "build/Interop.UIAutomationClient.targets", - "interop.uiautomationclient.10.19041.0.nupkg.sha512", - "interop.uiautomationclient.nuspec", - "lib/net35/Interop.UIAutomationClient.dll", - "lib/net40/Interop.UIAutomationClient.dll", - "lib/net45/Interop.UIAutomationClient.dll", - "lib/netcoreapp3.0/Interop.UIAutomationClient.dll", - "lib/netstandard2.0/Interop.UIAutomationClient.dll", - "tools/install.ps1" - ] - }, - "Microsoft.ApplicationInsights/2.22.0": { - "sha512": "3AOM9bZtku7RQwHyMEY3tQMrHIgjcfRDa6YQpd/QG2LDGvMydSlL9Di+8LLMt7J2RDdfJ7/2jdYv6yHcMJAnNw==", - "type": "package", - "path": "microsoft.applicationinsights/2.22.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "icon.png", - "lib/net452/Microsoft.ApplicationInsights.dll", - "lib/net452/Microsoft.ApplicationInsights.pdb", - "lib/net452/Microsoft.ApplicationInsights.xml", - "lib/net46/Microsoft.ApplicationInsights.dll", - "lib/net46/Microsoft.ApplicationInsights.pdb", - "lib/net46/Microsoft.ApplicationInsights.xml", - "lib/netstandard2.0/Microsoft.ApplicationInsights.dll", - "lib/netstandard2.0/Microsoft.ApplicationInsights.pdb", - "lib/netstandard2.0/Microsoft.ApplicationInsights.xml", - "microsoft.applicationinsights.2.22.0.nupkg.sha512", - "microsoft.applicationinsights.nuspec" - ] - }, - "Microsoft.CodeCoverage/17.12.0": { - "sha512": "4svMznBd5JM21JIG2xZKGNanAHNXplxf/kQDFfLHXQ3OnpJkayRK/TjacFjA+EYmoyuNXHo/sOETEfcYtAzIrA==", - "type": "package", - "path": "microsoft.codecoverage/17.12.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "ThirdPartyNotices.txt", - "build/netstandard2.0/CodeCoverage/CodeCoverage.config", - "build/netstandard2.0/CodeCoverage/CodeCoverage.exe", - "build/netstandard2.0/CodeCoverage/Cov_x86.config", - "build/netstandard2.0/CodeCoverage/amd64/CodeCoverage.exe", - "build/netstandard2.0/CodeCoverage/amd64/Cov_x64.config", - "build/netstandard2.0/CodeCoverage/amd64/covrun64.dll", - "build/netstandard2.0/CodeCoverage/amd64/msdia140.dll", - "build/netstandard2.0/CodeCoverage/arm64/Cov_arm64.config", - "build/netstandard2.0/CodeCoverage/arm64/covrunarm64.dll", - "build/netstandard2.0/CodeCoverage/arm64/msdia140.dll", - "build/netstandard2.0/CodeCoverage/codecoveragemessages.dll", - "build/netstandard2.0/CodeCoverage/coreclr/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "build/netstandard2.0/CodeCoverage/covrun32.dll", - "build/netstandard2.0/CodeCoverage/msdia140.dll", - "build/netstandard2.0/Microsoft.CodeCoverage.Core.dll", - "build/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.Core.dll", - "build/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.dll", - "build/netstandard2.0/Microsoft.CodeCoverage.Interprocess.dll", - "build/netstandard2.0/Microsoft.CodeCoverage.props", - "build/netstandard2.0/Microsoft.CodeCoverage.targets", - "build/netstandard2.0/Microsoft.DiaSymReader.dll", - "build/netstandard2.0/Microsoft.VisualStudio.TraceDataCollector.dll", - "build/netstandard2.0/Mono.Cecil.Pdb.dll", - "build/netstandard2.0/Mono.Cecil.Rocks.dll", - "build/netstandard2.0/Mono.Cecil.dll", - "build/netstandard2.0/ThirdPartyNotices.txt", - "build/netstandard2.0/alpine/x64/Cov_x64.config", - "build/netstandard2.0/alpine/x64/libCoverageInstrumentationMethod.so", - "build/netstandard2.0/alpine/x64/libInstrumentationEngine.so", - "build/netstandard2.0/arm64/MicrosoftInstrumentationEngine_arm64.dll", - "build/netstandard2.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/macos/x64/Cov_x64.config", - "build/netstandard2.0/macos/x64/libCoverageInstrumentationMethod.dylib", - "build/netstandard2.0/macos/x64/libInstrumentationEngine.dylib", - "build/netstandard2.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/ubuntu/x64/Cov_x64.config", - "build/netstandard2.0/ubuntu/x64/libCoverageInstrumentationMethod.so", - "build/netstandard2.0/ubuntu/x64/libInstrumentationEngine.so", - "build/netstandard2.0/x64/MicrosoftInstrumentationEngine_x64.dll", - "build/netstandard2.0/x86/MicrosoftInstrumentationEngine_x86.dll", - "build/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "lib/net462/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "microsoft.codecoverage.17.12.0.nupkg.sha512", - "microsoft.codecoverage.nuspec" - ] - }, - "Microsoft.NET.Test.Sdk/17.12.0": { - "sha512": "kt/PKBZ91rFCWxVIJZSgVLk+YR+4KxTuHf799ho8WNiK5ZQpJNAEZCAWX86vcKrs+DiYjiibpYKdGZP6+/N17w==", - "type": "package", - "path": "microsoft.net.test.sdk/17.12.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "build/net462/Microsoft.NET.Test.Sdk.props", - "build/net462/Microsoft.NET.Test.Sdk.targets", - "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.cs", - "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.fs", - "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.vb", - "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.props", - "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.targets", - "buildMultiTargeting/Microsoft.NET.Test.Sdk.props", - "lib/net462/_._", - "lib/netcoreapp3.1/_._", - "microsoft.net.test.sdk.17.12.0.nupkg.sha512", - "microsoft.net.test.sdk.nuspec" - ] - }, - "Microsoft.NETCore.Platforms/5.0.0": { - "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", - "type": "package", - "path": "microsoft.netcore.platforms/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netstandard1.0/_._", - "microsoft.netcore.platforms.5.0.0.nupkg.sha512", - "microsoft.netcore.platforms.nuspec", - "runtime.json", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Testing.Extensions.Telemetry/1.5.3": { - "sha512": "U9pGd5DQuX1PfkrdFI+xH34JGgQ2nes5QAwIITTk+MQfLvRITqsZjJeHTjpGWh33D/0q1l7aA8/LQHR7UuCgLQ==", - "type": "package", - "path": "microsoft.testing.extensions.telemetry/1.5.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "build/net6.0/Microsoft.Testing.Extensions.Telemetry.props", - "build/net7.0/Microsoft.Testing.Extensions.Telemetry.props", - "build/net8.0/Microsoft.Testing.Extensions.Telemetry.props", - "build/net9.0/Microsoft.Testing.Extensions.Telemetry.props", - "build/netstandard2.0/Microsoft.Testing.Extensions.Telemetry.props", - "buildMultiTargeting/Microsoft.Testing.Extensions.Telemetry.props", - "buildTransitive/net6.0/Microsoft.Testing.Extensions.Telemetry.props", - "buildTransitive/net7.0/Microsoft.Testing.Extensions.Telemetry.props", - "buildTransitive/net8.0/Microsoft.Testing.Extensions.Telemetry.props", - "buildTransitive/net9.0/Microsoft.Testing.Extensions.Telemetry.props", - "buildTransitive/netstandard2.0/Microsoft.Testing.Extensions.Telemetry.props", - "lib/net6.0/Microsoft.Testing.Extensions.Telemetry.dll", - "lib/net6.0/Microsoft.Testing.Extensions.Telemetry.xml", - "lib/net6.0/cs/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net6.0/de/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net6.0/es/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net6.0/fr/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net6.0/it/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net6.0/ja/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net6.0/ko/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net6.0/pl/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net6.0/pt-BR/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net6.0/ru/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net6.0/tr/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net6.0/zh-Hans/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net6.0/zh-Hant/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net7.0/Microsoft.Testing.Extensions.Telemetry.dll", - "lib/net7.0/Microsoft.Testing.Extensions.Telemetry.xml", - "lib/net7.0/cs/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net7.0/de/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net7.0/es/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net7.0/fr/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net7.0/it/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net7.0/ja/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net7.0/ko/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net7.0/pl/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net7.0/pt-BR/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net7.0/ru/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net7.0/tr/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net7.0/zh-Hans/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net7.0/zh-Hant/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net8.0/Microsoft.Testing.Extensions.Telemetry.dll", - "lib/net8.0/Microsoft.Testing.Extensions.Telemetry.xml", - "lib/net8.0/cs/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net8.0/de/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net8.0/es/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net8.0/fr/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net8.0/it/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net8.0/ja/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net8.0/ko/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net8.0/pl/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net8.0/pt-BR/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net8.0/ru/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net8.0/tr/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net8.0/zh-Hans/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net8.0/zh-Hant/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net9.0/Microsoft.Testing.Extensions.Telemetry.dll", - "lib/net9.0/Microsoft.Testing.Extensions.Telemetry.xml", - "lib/net9.0/cs/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net9.0/de/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net9.0/es/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net9.0/fr/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net9.0/it/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net9.0/ja/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net9.0/ko/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net9.0/pl/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net9.0/pt-BR/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net9.0/ru/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net9.0/tr/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net9.0/zh-Hans/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/net9.0/zh-Hant/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/netstandard2.0/Microsoft.Testing.Extensions.Telemetry.dll", - "lib/netstandard2.0/Microsoft.Testing.Extensions.Telemetry.xml", - "lib/netstandard2.0/cs/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/netstandard2.0/de/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/netstandard2.0/es/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/netstandard2.0/fr/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/netstandard2.0/it/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/netstandard2.0/ja/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/netstandard2.0/ko/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/netstandard2.0/pl/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/netstandard2.0/ru/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/netstandard2.0/tr/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.Testing.Extensions.Telemetry.resources.dll", - "microsoft.testing.extensions.telemetry.1.5.3.nupkg.sha512", - "microsoft.testing.extensions.telemetry.nuspec" - ] - }, - "Microsoft.Testing.Extensions.TrxReport.Abstractions/1.5.3": { - "sha512": "h34zKNpGyni66VH738mRHeXSnf3klSShUdavUWNhSfWICUUi5aXeI0LBvoX/ad93N0+9xBDU3Fyi6WfxrwKQGw==", - "type": "package", - "path": "microsoft.testing.extensions.trxreport.abstractions/1.5.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "lib/net6.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.dll", - "lib/net6.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.xml", - "lib/net7.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.dll", - "lib/net7.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.xml", - "lib/net8.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.dll", - "lib/net8.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.xml", - "lib/net9.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.dll", - "lib/net9.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.xml", - "microsoft.testing.extensions.trxreport.abstractions.1.5.3.nupkg.sha512", - "microsoft.testing.extensions.trxreport.abstractions.nuspec" - ] - }, - "Microsoft.Testing.Extensions.VSTestBridge/1.5.3": { - "sha512": "cJD67YfDT98wEWyazKVD/yPVW6+H1usXeuselCnRes7JZBTIYWtrCchcOzOahnmajT79eDKqt9sta7DXwTDU4Q==", - "type": "package", - "path": "microsoft.testing.extensions.vstestbridge/1.5.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "lib/net6.0/Microsoft.Testing.Extensions.VSTestBridge.dll", - "lib/net6.0/Microsoft.Testing.Extensions.VSTestBridge.xml", - "lib/net6.0/cs/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net6.0/de/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net6.0/es/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net6.0/fr/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net6.0/it/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net6.0/ja/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net6.0/ko/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net6.0/pl/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net6.0/pt-BR/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net6.0/ru/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net6.0/tr/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net6.0/zh-Hans/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net6.0/zh-Hant/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net7.0/Microsoft.Testing.Extensions.VSTestBridge.dll", - "lib/net7.0/Microsoft.Testing.Extensions.VSTestBridge.xml", - "lib/net7.0/cs/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net7.0/de/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net7.0/es/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net7.0/fr/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net7.0/it/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net7.0/ja/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net7.0/ko/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net7.0/pl/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net7.0/pt-BR/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net7.0/ru/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net7.0/tr/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net7.0/zh-Hans/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net7.0/zh-Hant/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net8.0/Microsoft.Testing.Extensions.VSTestBridge.dll", - "lib/net8.0/Microsoft.Testing.Extensions.VSTestBridge.xml", - "lib/net8.0/cs/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net8.0/de/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net8.0/es/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net8.0/fr/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net8.0/it/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net8.0/ja/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net8.0/ko/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net8.0/pl/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net8.0/pt-BR/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net8.0/ru/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net8.0/tr/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net8.0/zh-Hans/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net8.0/zh-Hant/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net9.0/Microsoft.Testing.Extensions.VSTestBridge.dll", - "lib/net9.0/Microsoft.Testing.Extensions.VSTestBridge.xml", - "lib/net9.0/cs/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net9.0/de/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net9.0/es/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net9.0/fr/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net9.0/it/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net9.0/ja/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net9.0/ko/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net9.0/pl/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net9.0/pt-BR/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net9.0/ru/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net9.0/tr/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net9.0/zh-Hans/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/net9.0/zh-Hant/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/netstandard2.0/Microsoft.Testing.Extensions.VSTestBridge.dll", - "lib/netstandard2.0/Microsoft.Testing.Extensions.VSTestBridge.xml", - "lib/netstandard2.0/cs/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/netstandard2.0/de/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/netstandard2.0/es/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/netstandard2.0/fr/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/netstandard2.0/it/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/netstandard2.0/ja/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/netstandard2.0/ko/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/netstandard2.0/pl/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/netstandard2.0/ru/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/netstandard2.0/tr/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.Testing.Extensions.VSTestBridge.resources.dll", - "microsoft.testing.extensions.vstestbridge.1.5.3.nupkg.sha512", - "microsoft.testing.extensions.vstestbridge.nuspec" - ] - }, - "Microsoft.Testing.Platform/1.5.3": { - "sha512": "WqJydnJ99dEKtquR9HwINz104ehWJKTXbQQrydGatlLRw14bmsx0pa8+E6KUXMYXZAimN0swWlDmcJGjjW4TIg==", - "type": "package", - "path": "microsoft.testing.platform/1.5.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "build/net6.0/Microsoft.Testing.Platform.props", - "build/net7.0/Microsoft.Testing.Platform.props", - "build/net8.0/Microsoft.Testing.Platform.props", - "build/net9.0/Microsoft.Testing.Platform.props", - "build/netstandard2.0/Microsoft.Testing.Platform.props", - "buildMultiTargeting/Microsoft.Testing.Platform.props", - "buildTransitive/net6.0/Microsoft.Testing.Platform.props", - "buildTransitive/net7.0/Microsoft.Testing.Platform.props", - "buildTransitive/net8.0/Microsoft.Testing.Platform.props", - "buildTransitive/net9.0/Microsoft.Testing.Platform.props", - "buildTransitive/netstandard2.0/Microsoft.Testing.Platform.props", - "lib/net6.0/Microsoft.Testing.Platform.dll", - "lib/net6.0/Microsoft.Testing.Platform.xml", - "lib/net6.0/cs/Microsoft.Testing.Platform.resources.dll", - "lib/net6.0/de/Microsoft.Testing.Platform.resources.dll", - "lib/net6.0/es/Microsoft.Testing.Platform.resources.dll", - "lib/net6.0/fr/Microsoft.Testing.Platform.resources.dll", - "lib/net6.0/it/Microsoft.Testing.Platform.resources.dll", - "lib/net6.0/ja/Microsoft.Testing.Platform.resources.dll", - "lib/net6.0/ko/Microsoft.Testing.Platform.resources.dll", - "lib/net6.0/pl/Microsoft.Testing.Platform.resources.dll", - "lib/net6.0/pt-BR/Microsoft.Testing.Platform.resources.dll", - "lib/net6.0/ru/Microsoft.Testing.Platform.resources.dll", - "lib/net6.0/tr/Microsoft.Testing.Platform.resources.dll", - "lib/net6.0/zh-Hans/Microsoft.Testing.Platform.resources.dll", - "lib/net6.0/zh-Hant/Microsoft.Testing.Platform.resources.dll", - "lib/net7.0/Microsoft.Testing.Platform.dll", - "lib/net7.0/Microsoft.Testing.Platform.xml", - "lib/net7.0/cs/Microsoft.Testing.Platform.resources.dll", - "lib/net7.0/de/Microsoft.Testing.Platform.resources.dll", - "lib/net7.0/es/Microsoft.Testing.Platform.resources.dll", - "lib/net7.0/fr/Microsoft.Testing.Platform.resources.dll", - "lib/net7.0/it/Microsoft.Testing.Platform.resources.dll", - "lib/net7.0/ja/Microsoft.Testing.Platform.resources.dll", - "lib/net7.0/ko/Microsoft.Testing.Platform.resources.dll", - "lib/net7.0/pl/Microsoft.Testing.Platform.resources.dll", - "lib/net7.0/pt-BR/Microsoft.Testing.Platform.resources.dll", - "lib/net7.0/ru/Microsoft.Testing.Platform.resources.dll", - "lib/net7.0/tr/Microsoft.Testing.Platform.resources.dll", - "lib/net7.0/zh-Hans/Microsoft.Testing.Platform.resources.dll", - "lib/net7.0/zh-Hant/Microsoft.Testing.Platform.resources.dll", - "lib/net8.0/Microsoft.Testing.Platform.dll", - "lib/net8.0/Microsoft.Testing.Platform.xml", - "lib/net8.0/cs/Microsoft.Testing.Platform.resources.dll", - "lib/net8.0/de/Microsoft.Testing.Platform.resources.dll", - "lib/net8.0/es/Microsoft.Testing.Platform.resources.dll", - "lib/net8.0/fr/Microsoft.Testing.Platform.resources.dll", - "lib/net8.0/it/Microsoft.Testing.Platform.resources.dll", - "lib/net8.0/ja/Microsoft.Testing.Platform.resources.dll", - "lib/net8.0/ko/Microsoft.Testing.Platform.resources.dll", - "lib/net8.0/pl/Microsoft.Testing.Platform.resources.dll", - "lib/net8.0/pt-BR/Microsoft.Testing.Platform.resources.dll", - "lib/net8.0/ru/Microsoft.Testing.Platform.resources.dll", - "lib/net8.0/tr/Microsoft.Testing.Platform.resources.dll", - "lib/net8.0/zh-Hans/Microsoft.Testing.Platform.resources.dll", - "lib/net8.0/zh-Hant/Microsoft.Testing.Platform.resources.dll", - "lib/net9.0/Microsoft.Testing.Platform.dll", - "lib/net9.0/Microsoft.Testing.Platform.xml", - "lib/net9.0/cs/Microsoft.Testing.Platform.resources.dll", - "lib/net9.0/de/Microsoft.Testing.Platform.resources.dll", - "lib/net9.0/es/Microsoft.Testing.Platform.resources.dll", - "lib/net9.0/fr/Microsoft.Testing.Platform.resources.dll", - "lib/net9.0/it/Microsoft.Testing.Platform.resources.dll", - "lib/net9.0/ja/Microsoft.Testing.Platform.resources.dll", - "lib/net9.0/ko/Microsoft.Testing.Platform.resources.dll", - "lib/net9.0/pl/Microsoft.Testing.Platform.resources.dll", - "lib/net9.0/pt-BR/Microsoft.Testing.Platform.resources.dll", - "lib/net9.0/ru/Microsoft.Testing.Platform.resources.dll", - "lib/net9.0/tr/Microsoft.Testing.Platform.resources.dll", - "lib/net9.0/zh-Hans/Microsoft.Testing.Platform.resources.dll", - "lib/net9.0/zh-Hant/Microsoft.Testing.Platform.resources.dll", - "lib/netstandard2.0/Microsoft.Testing.Platform.dll", - "lib/netstandard2.0/Microsoft.Testing.Platform.xml", - "lib/netstandard2.0/cs/Microsoft.Testing.Platform.resources.dll", - "lib/netstandard2.0/de/Microsoft.Testing.Platform.resources.dll", - "lib/netstandard2.0/es/Microsoft.Testing.Platform.resources.dll", - "lib/netstandard2.0/fr/Microsoft.Testing.Platform.resources.dll", - "lib/netstandard2.0/it/Microsoft.Testing.Platform.resources.dll", - "lib/netstandard2.0/ja/Microsoft.Testing.Platform.resources.dll", - "lib/netstandard2.0/ko/Microsoft.Testing.Platform.resources.dll", - "lib/netstandard2.0/pl/Microsoft.Testing.Platform.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.Testing.Platform.resources.dll", - "lib/netstandard2.0/ru/Microsoft.Testing.Platform.resources.dll", - "lib/netstandard2.0/tr/Microsoft.Testing.Platform.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.Testing.Platform.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.Testing.Platform.resources.dll", - "microsoft.testing.platform.1.5.3.nupkg.sha512", - "microsoft.testing.platform.nuspec" - ] - }, - "Microsoft.Testing.Platform.MSBuild/1.5.3": { - "sha512": "bOtpRMSPeT5YLQo+NNY8EtdNTphAUcmALjW4ABU7P0rb6yR2XAZau3TzNieLmR3lRuwudguWzzBhgcLRXwZh0A==", - "type": "package", - "path": "microsoft.testing.platform.msbuild/1.5.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "_MSBuildTasks/netstandard2.0/Microsoft.Testing.Platform.MSBuild.dll", - "_MSBuildTasks/netstandard2.0/Microsoft.Testing.Platform.MSBuild.xml", - "_MSBuildTasks/netstandard2.0/Microsoft.Testing.Platform.dll", - "_MSBuildTasks/netstandard2.0/Microsoft.Testing.Platform.xml", - "_MSBuildTasks/netstandard2.0/cs/Microsoft.Testing.Platform.MSBuild.resources.dll", - "_MSBuildTasks/netstandard2.0/cs/Microsoft.Testing.Platform.resources.dll", - "_MSBuildTasks/netstandard2.0/de/Microsoft.Testing.Platform.MSBuild.resources.dll", - "_MSBuildTasks/netstandard2.0/de/Microsoft.Testing.Platform.resources.dll", - "_MSBuildTasks/netstandard2.0/es/Microsoft.Testing.Platform.MSBuild.resources.dll", - "_MSBuildTasks/netstandard2.0/es/Microsoft.Testing.Platform.resources.dll", - "_MSBuildTasks/netstandard2.0/fr/Microsoft.Testing.Platform.MSBuild.resources.dll", - "_MSBuildTasks/netstandard2.0/fr/Microsoft.Testing.Platform.resources.dll", - "_MSBuildTasks/netstandard2.0/it/Microsoft.Testing.Platform.MSBuild.resources.dll", - "_MSBuildTasks/netstandard2.0/it/Microsoft.Testing.Platform.resources.dll", - "_MSBuildTasks/netstandard2.0/ja/Microsoft.Testing.Platform.MSBuild.resources.dll", - "_MSBuildTasks/netstandard2.0/ja/Microsoft.Testing.Platform.resources.dll", - "_MSBuildTasks/netstandard2.0/ko/Microsoft.Testing.Platform.MSBuild.resources.dll", - "_MSBuildTasks/netstandard2.0/ko/Microsoft.Testing.Platform.resources.dll", - "_MSBuildTasks/netstandard2.0/pl/Microsoft.Testing.Platform.MSBuild.resources.dll", - "_MSBuildTasks/netstandard2.0/pl/Microsoft.Testing.Platform.resources.dll", - "_MSBuildTasks/netstandard2.0/pt-BR/Microsoft.Testing.Platform.MSBuild.resources.dll", - "_MSBuildTasks/netstandard2.0/pt-BR/Microsoft.Testing.Platform.resources.dll", - "_MSBuildTasks/netstandard2.0/ru/Microsoft.Testing.Platform.MSBuild.resources.dll", - "_MSBuildTasks/netstandard2.0/ru/Microsoft.Testing.Platform.resources.dll", - "_MSBuildTasks/netstandard2.0/tr/Microsoft.Testing.Platform.MSBuild.resources.dll", - "_MSBuildTasks/netstandard2.0/tr/Microsoft.Testing.Platform.resources.dll", - "_MSBuildTasks/netstandard2.0/zh-Hans/Microsoft.Testing.Platform.MSBuild.resources.dll", - "_MSBuildTasks/netstandard2.0/zh-Hans/Microsoft.Testing.Platform.resources.dll", - "_MSBuildTasks/netstandard2.0/zh-Hant/Microsoft.Testing.Platform.MSBuild.resources.dll", - "_MSBuildTasks/netstandard2.0/zh-Hant/Microsoft.Testing.Platform.resources.dll", - "build/Microsoft.Testing.Platform.MSBuild.props", - "build/Microsoft.Testing.Platform.MSBuild.targets", - "buildMultiTargeting/Microsoft.Testing.Platform.MSBuild.VSTest.targets", - "buildMultiTargeting/Microsoft.Testing.Platform.MSBuild.props", - "buildMultiTargeting/Microsoft.Testing.Platform.MSBuild.targets", - "buildTransitive/Microsoft.Testing.Platform.MSBuild.props", - "buildTransitive/Microsoft.Testing.Platform.MSBuild.targets", - "lib/net6.0/Microsoft.Testing.Extensions.MSBuild.dll", - "lib/net6.0/Microsoft.Testing.Extensions.MSBuild.xml", - "lib/net6.0/cs/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net6.0/de/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net6.0/es/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net6.0/fr/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net6.0/it/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net6.0/ja/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net6.0/ko/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net6.0/pl/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net6.0/pt-BR/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net6.0/ru/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net6.0/tr/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net6.0/zh-Hans/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net6.0/zh-Hant/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net7.0/Microsoft.Testing.Extensions.MSBuild.dll", - "lib/net7.0/Microsoft.Testing.Extensions.MSBuild.xml", - "lib/net7.0/cs/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net7.0/de/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net7.0/es/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net7.0/fr/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net7.0/it/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net7.0/ja/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net7.0/ko/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net7.0/pl/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net7.0/pt-BR/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net7.0/ru/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net7.0/tr/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net7.0/zh-Hans/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net7.0/zh-Hant/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net8.0/Microsoft.Testing.Extensions.MSBuild.dll", - "lib/net8.0/Microsoft.Testing.Extensions.MSBuild.xml", - "lib/net8.0/cs/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net8.0/de/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net8.0/es/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net8.0/fr/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net8.0/it/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net8.0/ja/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net8.0/ko/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net8.0/pl/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net8.0/pt-BR/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net8.0/ru/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net8.0/tr/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net8.0/zh-Hans/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net8.0/zh-Hant/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net9.0/Microsoft.Testing.Extensions.MSBuild.dll", - "lib/net9.0/Microsoft.Testing.Extensions.MSBuild.xml", - "lib/net9.0/cs/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net9.0/de/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net9.0/es/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net9.0/fr/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net9.0/it/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net9.0/ja/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net9.0/ko/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net9.0/pl/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net9.0/pt-BR/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net9.0/ru/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net9.0/tr/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net9.0/zh-Hans/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/net9.0/zh-Hant/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/netstandard2.0/Microsoft.Testing.Extensions.MSBuild.dll", - "lib/netstandard2.0/Microsoft.Testing.Extensions.MSBuild.xml", - "lib/netstandard2.0/cs/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/netstandard2.0/de/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/netstandard2.0/es/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/netstandard2.0/fr/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/netstandard2.0/it/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/netstandard2.0/ja/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/netstandard2.0/ko/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/netstandard2.0/pl/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/netstandard2.0/ru/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/netstandard2.0/tr/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.Testing.Extensions.MSBuild.resources.dll", - "microsoft.testing.platform.msbuild.1.5.3.nupkg.sha512", - "microsoft.testing.platform.msbuild.nuspec" - ] - }, - "Microsoft.TestPlatform.ObjectModel/17.12.0": { - "sha512": "TDqkTKLfQuAaPcEb3pDDWnh7b3SyZF+/W9OZvWFp6eJCIiiYFdSB6taE2I6tWrFw5ywhzOb6sreoGJTI6m3rSQ==", - "type": "package", - "path": "microsoft.testplatform.objectmodel/17.12.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/net462/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/net462/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/net462/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/net462/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "microsoft.testplatform.objectmodel.17.12.0.nupkg.sha512", - "microsoft.testplatform.objectmodel.nuspec" - ] - }, - "Microsoft.TestPlatform.TestHost/17.12.0": { - "sha512": "MiPEJQNyADfwZ4pJNpQex+t9/jOClBGMiCiVVFuELCMSX2nmNfvUor3uFVxNNCg30uxDP8JDYfPnMXQzsfzYyg==", - "type": "package", - "path": "microsoft.testplatform.testhost/17.12.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "ThirdPartyNotices.txt", - "build/netcoreapp3.1/Microsoft.TestPlatform.TestHost.props", - "build/netcoreapp3.1/x64/testhost.dll", - "build/netcoreapp3.1/x64/testhost.exe", - "build/netcoreapp3.1/x86/testhost.x86.dll", - "build/netcoreapp3.1/x86/testhost.x86.exe", - "lib/net462/_._", - "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll", - "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll", - "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll", - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll", - "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/testhost.deps.json", - "lib/netcoreapp3.1/testhost.dll", - "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/x64/msdia140.dll", - "lib/netcoreapp3.1/x86/msdia140.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "microsoft.testplatform.testhost.17.12.0.nupkg.sha512", - "microsoft.testplatform.testhost.nuspec" - ] - }, - "Microsoft.Win32.Registry/5.0.0": { - "sha512": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", - "type": "package", - "path": "microsoft.win32.registry/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/Microsoft.Win32.Registry.dll", - "lib/net461/Microsoft.Win32.Registry.dll", - "lib/net461/Microsoft.Win32.Registry.xml", - "lib/netstandard1.3/Microsoft.Win32.Registry.dll", - "lib/netstandard2.0/Microsoft.Win32.Registry.dll", - "lib/netstandard2.0/Microsoft.Win32.Registry.xml", - "microsoft.win32.registry.5.0.0.nupkg.sha512", - "microsoft.win32.registry.nuspec", - "ref/net46/Microsoft.Win32.Registry.dll", - "ref/net461/Microsoft.Win32.Registry.dll", - "ref/net461/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/Microsoft.Win32.Registry.dll", - "ref/netstandard1.3/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", - "ref/netstandard2.0/Microsoft.Win32.Registry.dll", - "ref/netstandard2.0/Microsoft.Win32.Registry.xml", - "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", - "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Win32.SystemEvents/8.0.0": { - "sha512": "9opKRyOKMCi2xJ7Bj7kxtZ1r9vbzosMvRrdEhVhDz8j8MoBGgB+WmC94yH839NPH+BclAjtQ/pyagvi/8gDLkw==", - "type": "package", - "path": "microsoft.win32.systemevents/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Win32.SystemEvents.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets", - "lib/net462/Microsoft.Win32.SystemEvents.dll", - "lib/net462/Microsoft.Win32.SystemEvents.xml", - "lib/net6.0/Microsoft.Win32.SystemEvents.dll", - "lib/net6.0/Microsoft.Win32.SystemEvents.xml", - "lib/net7.0/Microsoft.Win32.SystemEvents.dll", - "lib/net7.0/Microsoft.Win32.SystemEvents.xml", - "lib/net8.0/Microsoft.Win32.SystemEvents.dll", - "lib/net8.0/Microsoft.Win32.SystemEvents.xml", - "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", - "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", - "microsoft.win32.systemevents.8.0.0.nupkg.sha512", - "microsoft.win32.systemevents.nuspec", - "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll", - "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml", - "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll", - "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.xml", - "runtimes/win/lib/net8.0/Microsoft.Win32.SystemEvents.dll", - "runtimes/win/lib/net8.0/Microsoft.Win32.SystemEvents.xml", - "useSharedDesignerContext.txt" - ] - }, - "Newtonsoft.Json/13.0.1": { - "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", - "type": "package", - "path": "newtonsoft.json/13.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.md", - "lib/net20/Newtonsoft.Json.dll", - "lib/net20/Newtonsoft.Json.xml", - "lib/net35/Newtonsoft.Json.dll", - "lib/net35/Newtonsoft.Json.xml", - "lib/net40/Newtonsoft.Json.dll", - "lib/net40/Newtonsoft.Json.xml", - "lib/net45/Newtonsoft.Json.dll", - "lib/net45/Newtonsoft.Json.xml", - "lib/netstandard1.0/Newtonsoft.Json.dll", - "lib/netstandard1.0/Newtonsoft.Json.xml", - "lib/netstandard1.3/Newtonsoft.Json.dll", - "lib/netstandard1.3/Newtonsoft.Json.xml", - "lib/netstandard2.0/Newtonsoft.Json.dll", - "lib/netstandard2.0/Newtonsoft.Json.xml", - "newtonsoft.json.13.0.1.nupkg.sha512", - "newtonsoft.json.nuspec", - "packageIcon.png" - ] - }, - "NUnit/4.3.2": { - "sha512": "puVXayXNmEu7MFQSUswGmUjOy3M3baprMbkLl5PAutpeDoGTr+jPv33qAYsqxywi2wJCq8l/O3EhHoLulPE1iQ==", - "type": "package", - "path": "nunit/4.3.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.txt", - "NOTICES.md", - "README.md", - "THIRD_PARTY_NOTICES.md", - "build/NUnit.props", - "icon.png", - "lib/net462/nunit.framework.dll", - "lib/net462/nunit.framework.legacy.dll", - "lib/net462/nunit.framework.legacy.xml", - "lib/net462/nunit.framework.xml", - "lib/net6.0/nunit.framework.dll", - "lib/net6.0/nunit.framework.legacy.dll", - "lib/net6.0/nunit.framework.legacy.xml", - "lib/net6.0/nunit.framework.xml", - "lib/net8.0/nunit.framework.dll", - "lib/net8.0/nunit.framework.legacy.dll", - "lib/net8.0/nunit.framework.legacy.xml", - "lib/net8.0/nunit.framework.xml", - "nunit.4.3.2.nupkg.sha512", - "nunit.nuspec" - ] - }, - "NUnit3TestAdapter/5.0.0": { - "sha512": "sy4cLoUAdE6TDM4wNX5gmNCyhMev5wUz4cA6ZRf/aON9vf9t4xTVGLj/4huhDKcS4dFfmVVcgcP70yC7WC9kKg==", - "type": "package", - "path": "nunit3testadapter/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/net462/NUnit3.TestAdapter.dll", - "build/net462/NUnit3.TestAdapter.pdb", - "build/net462/NUnit3TestAdapter.props", - "build/net462/NUnit3TestAdapter.targets", - "build/net462/nunit.engine.api.dll", - "build/net462/nunit.engine.core.dll", - "build/net462/nunit.engine.dll", - "build/net462/testcentric.engine.metadata.dll", - "build/netcoreapp3.1/NUnit3.TestAdapter.dll", - "build/netcoreapp3.1/NUnit3.TestAdapter.pdb", - "build/netcoreapp3.1/NUnit3TestAdapter.props", - "build/netcoreapp3.1/NUnit3TestAdapter.targets", - "build/netcoreapp3.1/nunit.engine.api.dll", - "build/netcoreapp3.1/nunit.engine.core.dll", - "build/netcoreapp3.1/nunit.engine.dll", - "build/netcoreapp3.1/testcentric.engine.metadata.dll", - "docs/README.md", - "nunit3testadapter.5.0.0.nupkg.sha512", - "nunit3testadapter.nuspec", - "nunit_256.png" - ] - }, - "System.CodeDom/8.0.0": { - "sha512": "WTlRjL6KWIMr/pAaq3rYqh0TJlzpouaQ/W1eelssHgtlwHAH25jXTkUphTYx9HaIIf7XA6qs/0+YhtLEQRkJ+Q==", - "type": "package", - "path": "system.codedom/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/System.CodeDom.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/System.CodeDom.targets", - "lib/net462/System.CodeDom.dll", - "lib/net462/System.CodeDom.xml", - "lib/net6.0/System.CodeDom.dll", - "lib/net6.0/System.CodeDom.xml", - "lib/net7.0/System.CodeDom.dll", - "lib/net7.0/System.CodeDom.xml", - "lib/net8.0/System.CodeDom.dll", - "lib/net8.0/System.CodeDom.xml", - "lib/netstandard2.0/System.CodeDom.dll", - "lib/netstandard2.0/System.CodeDom.xml", - "system.codedom.8.0.0.nupkg.sha512", - "system.codedom.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Configuration.ConfigurationManager/8.0.1": { - "sha512": "gPYFPDyohW2gXNhdQRSjtmeS6FymL2crg4Sral1wtvEJ7DUqFCDWDVbbLobASbzxfic8U1hQEdC7hmg9LHncMw==", - "type": "package", - "path": "system.configuration.configurationmanager/8.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/System.Configuration.ConfigurationManager.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets", - "lib/net462/System.Configuration.ConfigurationManager.dll", - "lib/net462/System.Configuration.ConfigurationManager.xml", - "lib/net6.0/System.Configuration.ConfigurationManager.dll", - "lib/net6.0/System.Configuration.ConfigurationManager.xml", - "lib/net7.0/System.Configuration.ConfigurationManager.dll", - "lib/net7.0/System.Configuration.ConfigurationManager.xml", - "lib/net8.0/System.Configuration.ConfigurationManager.dll", - "lib/net8.0/System.Configuration.ConfigurationManager.xml", - "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", - "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", - "system.configuration.configurationmanager.8.0.1.nupkg.sha512", - "system.configuration.configurationmanager.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Diagnostics.DiagnosticSource/5.0.0": { - "sha512": "tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==", - "type": "package", - "path": "system.diagnostics.diagnosticsource/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net45/System.Diagnostics.DiagnosticSource.dll", - "lib/net45/System.Diagnostics.DiagnosticSource.xml", - "lib/net46/System.Diagnostics.DiagnosticSource.dll", - "lib/net46/System.Diagnostics.DiagnosticSource.xml", - "lib/net5.0/System.Diagnostics.DiagnosticSource.dll", - "lib/net5.0/System.Diagnostics.DiagnosticSource.xml", - "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", - "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", - "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", - "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", - "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512", - "system.diagnostics.diagnosticsource.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Diagnostics.EventLog/8.0.1": { - "sha512": "n1ZP7NM2Gkn/MgD8+eOT5MulMj6wfeQMNS2Pizvq5GHCZfjlFMXV2irQlQmJhwA2VABC57M0auudO89Iu2uRLg==", - "type": "package", - "path": "system.diagnostics.eventlog/8.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/System.Diagnostics.EventLog.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets", - "lib/net462/System.Diagnostics.EventLog.dll", - "lib/net462/System.Diagnostics.EventLog.xml", - "lib/net6.0/System.Diagnostics.EventLog.dll", - "lib/net6.0/System.Diagnostics.EventLog.xml", - "lib/net7.0/System.Diagnostics.EventLog.dll", - "lib/net7.0/System.Diagnostics.EventLog.xml", - "lib/net8.0/System.Diagnostics.EventLog.dll", - "lib/net8.0/System.Diagnostics.EventLog.xml", - "lib/netstandard2.0/System.Diagnostics.EventLog.dll", - "lib/netstandard2.0/System.Diagnostics.EventLog.xml", - "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll", - "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll", - "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml", - "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll", - "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll", - "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.xml", - "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll", - "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll", - "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.xml", - "system.diagnostics.eventlog.8.0.1.nupkg.sha512", - "system.diagnostics.eventlog.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Diagnostics.PerformanceCounter/8.0.1": { - "sha512": "9RfEDiEjlUADeThs8IPdDVTXSnPRSqjfgTQJALpmGFPKC0k2mbdufOXnb/9JZ4I0TkmxOfy3VTJxrHOJSs8cXg==", - "type": "package", - "path": "system.diagnostics.performancecounter/8.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/System.Diagnostics.PerformanceCounter.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/System.Diagnostics.PerformanceCounter.targets", - "lib/net462/System.Diagnostics.PerformanceCounter.dll", - "lib/net462/System.Diagnostics.PerformanceCounter.xml", - "lib/net6.0/System.Diagnostics.PerformanceCounter.dll", - "lib/net6.0/System.Diagnostics.PerformanceCounter.xml", - "lib/net7.0/System.Diagnostics.PerformanceCounter.dll", - "lib/net7.0/System.Diagnostics.PerformanceCounter.xml", - "lib/net8.0/System.Diagnostics.PerformanceCounter.dll", - "lib/net8.0/System.Diagnostics.PerformanceCounter.xml", - "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll", - "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml", - "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll", - "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.xml", - "runtimes/win/lib/net7.0/System.Diagnostics.PerformanceCounter.dll", - "runtimes/win/lib/net7.0/System.Diagnostics.PerformanceCounter.xml", - "runtimes/win/lib/net8.0/System.Diagnostics.PerformanceCounter.dll", - "runtimes/win/lib/net8.0/System.Diagnostics.PerformanceCounter.xml", - "system.diagnostics.performancecounter.8.0.1.nupkg.sha512", - "system.diagnostics.performancecounter.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Drawing.Common/8.0.10": { - "sha512": "MdajRp3P+FOlThgY6FBjAqnmLiVl5t2yWEC/2AsDMqx1zYbJG3G5TnscFBQ4obqcaGqvN5UnhQHSFaJFG2HftQ==", - "type": "package", - "path": "system.drawing.common/8.0.10", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/System.Drawing.Common.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net462/System.Drawing.Common.dll", - "lib/net462/System.Drawing.Common.pdb", - "lib/net462/System.Drawing.Common.xml", - "lib/net6.0/System.Drawing.Common.dll", - "lib/net6.0/System.Drawing.Common.pdb", - "lib/net6.0/System.Drawing.Common.xml", - "lib/net7.0/System.Drawing.Common.dll", - "lib/net7.0/System.Drawing.Common.pdb", - "lib/net7.0/System.Drawing.Common.xml", - "lib/net8.0/System.Drawing.Common.dll", - "lib/net8.0/System.Drawing.Common.pdb", - "lib/net8.0/System.Drawing.Common.xml", - "lib/netstandard2.0/System.Drawing.Common.dll", - "lib/netstandard2.0/System.Drawing.Common.pdb", - "lib/netstandard2.0/System.Drawing.Common.xml", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "system.drawing.common.8.0.10.nupkg.sha512", - "system.drawing.common.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Management/8.0.0": { - "sha512": "jrK22i5LRzxZCfGb+tGmke2VH7oE0DvcDlJ1HAKYU8cPmD8XnpUT0bYn2Gy98GEhGjtfbR/sxKTVb+dE770pfA==", - "type": "package", - "path": "system.management/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/System.Management.targets", - "lib/net462/_._", - "lib/net6.0/System.Management.dll", - "lib/net6.0/System.Management.xml", - "lib/net7.0/System.Management.dll", - "lib/net7.0/System.Management.xml", - "lib/net8.0/System.Management.dll", - "lib/net8.0/System.Management.xml", - "lib/netstandard2.0/System.Management.dll", - "lib/netstandard2.0/System.Management.xml", - "runtimes/win/lib/net6.0/System.Management.dll", - "runtimes/win/lib/net6.0/System.Management.xml", - "runtimes/win/lib/net7.0/System.Management.dll", - "runtimes/win/lib/net7.0/System.Management.xml", - "runtimes/win/lib/net8.0/System.Management.dll", - "runtimes/win/lib/net8.0/System.Management.xml", - "system.management.8.0.0.nupkg.sha512", - "system.management.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Reflection.Metadata/1.6.0": { - "sha512": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==", - "type": "package", - "path": "system.reflection.metadata/1.6.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netstandard1.1/System.Reflection.Metadata.dll", - "lib/netstandard1.1/System.Reflection.Metadata.xml", - "lib/netstandard2.0/System.Reflection.Metadata.dll", - "lib/netstandard2.0/System.Reflection.Metadata.xml", - "lib/portable-net45+win8/System.Reflection.Metadata.dll", - "lib/portable-net45+win8/System.Reflection.Metadata.xml", - "system.reflection.metadata.1.6.0.nupkg.sha512", - "system.reflection.metadata.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Security.AccessControl/5.0.0": { - "sha512": "dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", - "type": "package", - "path": "system.security.accesscontrol/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/System.Security.AccessControl.dll", - "lib/net461/System.Security.AccessControl.dll", - "lib/net461/System.Security.AccessControl.xml", - "lib/netstandard1.3/System.Security.AccessControl.dll", - "lib/netstandard2.0/System.Security.AccessControl.dll", - "lib/netstandard2.0/System.Security.AccessControl.xml", - "lib/uap10.0.16299/_._", - "ref/net46/System.Security.AccessControl.dll", - "ref/net461/System.Security.AccessControl.dll", - "ref/net461/System.Security.AccessControl.xml", - "ref/netstandard1.3/System.Security.AccessControl.dll", - "ref/netstandard1.3/System.Security.AccessControl.xml", - "ref/netstandard1.3/de/System.Security.AccessControl.xml", - "ref/netstandard1.3/es/System.Security.AccessControl.xml", - "ref/netstandard1.3/fr/System.Security.AccessControl.xml", - "ref/netstandard1.3/it/System.Security.AccessControl.xml", - "ref/netstandard1.3/ja/System.Security.AccessControl.xml", - "ref/netstandard1.3/ko/System.Security.AccessControl.xml", - "ref/netstandard1.3/ru/System.Security.AccessControl.xml", - "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", - "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", - "ref/netstandard2.0/System.Security.AccessControl.dll", - "ref/netstandard2.0/System.Security.AccessControl.xml", - "ref/uap10.0.16299/_._", - "runtimes/win/lib/net46/System.Security.AccessControl.dll", - "runtimes/win/lib/net461/System.Security.AccessControl.dll", - "runtimes/win/lib/net461/System.Security.AccessControl.xml", - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", - "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", - "runtimes/win/lib/uap10.0.16299/_._", - "system.security.accesscontrol.5.0.0.nupkg.sha512", - "system.security.accesscontrol.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Security.Cryptography.ProtectedData/8.0.0": { - "sha512": "+TUFINV2q2ifyXauQXRwy4CiBhqvDEDZeVJU7qfxya4aRYOKzVBpN+4acx25VcPB9ywUN6C0n8drWl110PhZEg==", - "type": "package", - "path": "system.security.cryptography.protecteddata/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/System.Security.Cryptography.ProtectedData.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net462/System.Security.Cryptography.ProtectedData.dll", - "lib/net462/System.Security.Cryptography.ProtectedData.xml", - "lib/net6.0/System.Security.Cryptography.ProtectedData.dll", - "lib/net6.0/System.Security.Cryptography.ProtectedData.xml", - "lib/net7.0/System.Security.Cryptography.ProtectedData.dll", - "lib/net7.0/System.Security.Cryptography.ProtectedData.xml", - "lib/net8.0/System.Security.Cryptography.ProtectedData.dll", - "lib/net8.0/System.Security.Cryptography.ProtectedData.xml", - "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", - "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "system.security.cryptography.protecteddata.8.0.0.nupkg.sha512", - "system.security.cryptography.protecteddata.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Security.Permissions/8.0.0": { - "sha512": "v/BBylw7XevuAsHXoX9dDUUfmBIcUf7Lkz8K3ZXIKz3YRKpw8YftpSir4n4e/jDTKFoaK37AsC3xnk+GNFI1Ow==", - "type": "package", - "path": "system.security.permissions/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/System.Security.Permissions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets", - "lib/net462/System.Security.Permissions.dll", - "lib/net462/System.Security.Permissions.xml", - "lib/net6.0/System.Security.Permissions.dll", - "lib/net6.0/System.Security.Permissions.xml", - "lib/net7.0/System.Security.Permissions.dll", - "lib/net7.0/System.Security.Permissions.xml", - "lib/net8.0/System.Security.Permissions.dll", - "lib/net8.0/System.Security.Permissions.xml", - "lib/netstandard2.0/System.Security.Permissions.dll", - "lib/netstandard2.0/System.Security.Permissions.xml", - "system.security.permissions.8.0.0.nupkg.sha512", - "system.security.permissions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Security.Principal.Windows/5.0.0": { - "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", - "type": "package", - "path": "system.security.principal.windows/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/System.Security.Principal.Windows.dll", - "lib/net461/System.Security.Principal.Windows.dll", - "lib/net461/System.Security.Principal.Windows.xml", - "lib/netstandard1.3/System.Security.Principal.Windows.dll", - "lib/netstandard2.0/System.Security.Principal.Windows.dll", - "lib/netstandard2.0/System.Security.Principal.Windows.xml", - "lib/uap10.0.16299/_._", - "ref/net46/System.Security.Principal.Windows.dll", - "ref/net461/System.Security.Principal.Windows.dll", - "ref/net461/System.Security.Principal.Windows.xml", - "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", - "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/System.Security.Principal.Windows.dll", - "ref/netstandard1.3/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", - "ref/netstandard2.0/System.Security.Principal.Windows.dll", - "ref/netstandard2.0/System.Security.Principal.Windows.xml", - "ref/uap10.0.16299/_._", - "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", - "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", - "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", - "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", - "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", - "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", - "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", - "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", - "runtimes/win/lib/uap10.0.16299/_._", - "system.security.principal.windows.5.0.0.nupkg.sha512", - "system.security.principal.windows.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Windows.Extensions/8.0.0": { - "sha512": "Obg3a90MkOw9mYKxrardLpY2u0axDMrSmy4JCdq2cYbelM2cUwmUir5Bomvd1yxmPL9h5LVHU1tuKBZpUjfASg==", - "type": "package", - "path": "system.windows.extensions/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net6.0/System.Windows.Extensions.dll", - "lib/net6.0/System.Windows.Extensions.xml", - "lib/net7.0/System.Windows.Extensions.dll", - "lib/net7.0/System.Windows.Extensions.xml", - "lib/net8.0/System.Windows.Extensions.dll", - "lib/net8.0/System.Windows.Extensions.xml", - "runtimes/win/lib/net6.0/System.Windows.Extensions.dll", - "runtimes/win/lib/net6.0/System.Windows.Extensions.xml", - "runtimes/win/lib/net7.0/System.Windows.Extensions.dll", - "runtimes/win/lib/net7.0/System.Windows.Extensions.xml", - "runtimes/win/lib/net8.0/System.Windows.Extensions.dll", - "runtimes/win/lib/net8.0/System.Windows.Extensions.xml", - "system.windows.extensions.8.0.0.nupkg.sha512", - "system.windows.extensions.nuspec", - "useSharedDesignerContext.txt" - ] - } - }, - "projectFileDependencyGroups": { - "net8.0-windows": [ - "FlaUI.UIA3 >= 5.0.0", - "Microsoft.NET.Test.Sdk >= 17.12.0", - "NUnit >= 4.3.2", - "NUnit3TestAdapter >= 5.0.0" - ] - }, - "packageFolders": { - "C:\\Users\\plesz\\.nuget\\packages\\": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\FileManager\\tests\\FileManager.UiTests\\FileManager.UiTests.csproj", - "projectName": "FileManager.UiTests", - "projectPath": "D:\\FileManager\\tests\\FileManager.UiTests\\FileManager.UiTests.csproj", - "packagesPath": "C:\\Users\\plesz\\.nuget\\packages\\", - "outputPath": "D:\\FileManager\\tests\\FileManager.UiTests\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\plesz\\AppData\\Roaming\\NuGet\\NuGet.Config" - ], - "originalTargetFrameworks": [ - "net8.0-windows" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net8.0-windows": { - "framework": "net8.0-windows7.0", - "targetAlias": "net8.0-windows", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "direct" - }, - "SdkAnalysisLevel": "10.0.400" - }, - "frameworks": { - "net8.0-windows": { - "framework": "net8.0-windows7.0", - "targetAlias": "net8.0-windows", - "dependencies": { - "FlaUI.UIA3": { - "target": "Package", - "version": "[5.0.0, )" - }, - "Microsoft.NET.Test.Sdk": { - "target": "Package", - "version": "[17.12.0, )" - }, - "NUnit": { - "target": "Package", - "version": "[4.3.2, )" - }, - "NUnit3TestAdapter": { - "suppressParent": "All", - "target": "Package", - "version": "[5.0.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "downloadDependencies": [ - { - "name": "Microsoft.AspNetCore.App.Ref", - "version": "[8.0.30, 8.0.30]" - }, - { - "name": "Microsoft.NETCore.App.Ref", - "version": "[8.0.30, 8.0.30]" - }, - { - "name": "Microsoft.WindowsDesktop.App.Ref", - "version": "[8.0.30, 8.0.30]" - } - ], - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.400/PortableRuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/tests/FileManager.UiTests/obj/project.nuget.cache b/tests/FileManager.UiTests/obj/project.nuget.cache deleted file mode 100644 index 98cd1498..00000000 --- a/tests/FileManager.UiTests/obj/project.nuget.cache +++ /dev/null @@ -1,44 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "mMB6YJ3PAdo=", - "success": true, - "projectFilePath": "D:\\FileManager\\tests\\FileManager.UiTests\\FileManager.UiTests.csproj", - "expectedPackageFiles": [ - "C:\\Users\\plesz\\.nuget\\packages\\flaui.core\\5.0.0\\flaui.core.5.0.0.nupkg.sha512", - "C:\\Users\\plesz\\.nuget\\packages\\flaui.uia3\\5.0.0\\flaui.uia3.5.0.0.nupkg.sha512", - "C:\\Users\\plesz\\.nuget\\packages\\interop.uiautomationclient\\10.19041.0\\interop.uiautomationclient.10.19041.0.nupkg.sha512", - "C:\\Users\\plesz\\.nuget\\packages\\microsoft.applicationinsights\\2.22.0\\microsoft.applicationinsights.2.22.0.nupkg.sha512", - "C:\\Users\\plesz\\.nuget\\packages\\microsoft.codecoverage\\17.12.0\\microsoft.codecoverage.17.12.0.nupkg.sha512", - "C:\\Users\\plesz\\.nuget\\packages\\microsoft.net.test.sdk\\17.12.0\\microsoft.net.test.sdk.17.12.0.nupkg.sha512", - "C:\\Users\\plesz\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512", - "C:\\Users\\plesz\\.nuget\\packages\\microsoft.testing.extensions.telemetry\\1.5.3\\microsoft.testing.extensions.telemetry.1.5.3.nupkg.sha512", - "C:\\Users\\plesz\\.nuget\\packages\\microsoft.testing.extensions.trxreport.abstractions\\1.5.3\\microsoft.testing.extensions.trxreport.abstractions.1.5.3.nupkg.sha512", - "C:\\Users\\plesz\\.nuget\\packages\\microsoft.testing.extensions.vstestbridge\\1.5.3\\microsoft.testing.extensions.vstestbridge.1.5.3.nupkg.sha512", - "C:\\Users\\plesz\\.nuget\\packages\\microsoft.testing.platform\\1.5.3\\microsoft.testing.platform.1.5.3.nupkg.sha512", - "C:\\Users\\plesz\\.nuget\\packages\\microsoft.testing.platform.msbuild\\1.5.3\\microsoft.testing.platform.msbuild.1.5.3.nupkg.sha512", - "C:\\Users\\plesz\\.nuget\\packages\\microsoft.testplatform.objectmodel\\17.12.0\\microsoft.testplatform.objectmodel.17.12.0.nupkg.sha512", - "C:\\Users\\plesz\\.nuget\\packages\\microsoft.testplatform.testhost\\17.12.0\\microsoft.testplatform.testhost.17.12.0.nupkg.sha512", - "C:\\Users\\plesz\\.nuget\\packages\\microsoft.win32.registry\\5.0.0\\microsoft.win32.registry.5.0.0.nupkg.sha512", - "C:\\Users\\plesz\\.nuget\\packages\\microsoft.win32.systemevents\\8.0.0\\microsoft.win32.systemevents.8.0.0.nupkg.sha512", - "C:\\Users\\plesz\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", - "C:\\Users\\plesz\\.nuget\\packages\\nunit\\4.3.2\\nunit.4.3.2.nupkg.sha512", - "C:\\Users\\plesz\\.nuget\\packages\\nunit3testadapter\\5.0.0\\nunit3testadapter.5.0.0.nupkg.sha512", - "C:\\Users\\plesz\\.nuget\\packages\\system.codedom\\8.0.0\\system.codedom.8.0.0.nupkg.sha512", - "C:\\Users\\plesz\\.nuget\\packages\\system.configuration.configurationmanager\\8.0.1\\system.configuration.configurationmanager.8.0.1.nupkg.sha512", - "C:\\Users\\plesz\\.nuget\\packages\\system.diagnostics.diagnosticsource\\5.0.0\\system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512", - "C:\\Users\\plesz\\.nuget\\packages\\system.diagnostics.eventlog\\8.0.1\\system.diagnostics.eventlog.8.0.1.nupkg.sha512", - "C:\\Users\\plesz\\.nuget\\packages\\system.diagnostics.performancecounter\\8.0.1\\system.diagnostics.performancecounter.8.0.1.nupkg.sha512", - "C:\\Users\\plesz\\.nuget\\packages\\system.drawing.common\\8.0.10\\system.drawing.common.8.0.10.nupkg.sha512", - "C:\\Users\\plesz\\.nuget\\packages\\system.management\\8.0.0\\system.management.8.0.0.nupkg.sha512", - "C:\\Users\\plesz\\.nuget\\packages\\system.reflection.metadata\\1.6.0\\system.reflection.metadata.1.6.0.nupkg.sha512", - "C:\\Users\\plesz\\.nuget\\packages\\system.security.accesscontrol\\5.0.0\\system.security.accesscontrol.5.0.0.nupkg.sha512", - "C:\\Users\\plesz\\.nuget\\packages\\system.security.cryptography.protecteddata\\8.0.0\\system.security.cryptography.protecteddata.8.0.0.nupkg.sha512", - "C:\\Users\\plesz\\.nuget\\packages\\system.security.permissions\\8.0.0\\system.security.permissions.8.0.0.nupkg.sha512", - "C:\\Users\\plesz\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", - "C:\\Users\\plesz\\.nuget\\packages\\system.windows.extensions\\8.0.0\\system.windows.extensions.8.0.0.nupkg.sha512", - "C:\\Users\\plesz\\.nuget\\packages\\microsoft.netcore.app.ref\\8.0.30\\microsoft.netcore.app.ref.8.0.30.nupkg.sha512", - "C:\\Users\\plesz\\.nuget\\packages\\microsoft.windowsdesktop.app.ref\\8.0.30\\microsoft.windowsdesktop.app.ref.8.0.30.nupkg.sha512", - "C:\\Users\\plesz\\.nuget\\packages\\microsoft.aspnetcore.app.ref\\8.0.30\\microsoft.aspnetcore.app.ref.8.0.30.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/tools/test-bzip2-compatibility.ps1 b/tools/test-bzip2-compatibility.ps1 index 2614b70f..6a5b3ae9 100644 --- a/tools/test-bzip2-compatibility.ps1 +++ b/tools/test-bzip2-compatibility.ps1 @@ -36,8 +36,9 @@ try { $probeExecutable = Join-Path $temporaryDirectory 'bzip2_compatibility_probe.exe' $compilerCommand = ( 'call "' + $vsDevCmd + '" -arch=' + $Architecture + ' -host_arch=x64 && cd /d "' + $temporaryDirectory + '" && ' + - # Upstream's portable integer aliases intentionally trigger these MSVC-only conversion diagnostics. - 'cl /nologo /TC /W4 /WX /wd4100 /wd4244 /wd4245 /DBZ_NO_STDIO /I"' + $bzip2Directory + '" ' + + # Upstream's portability and assertion macros intentionally trigger these + # MSVC-only constant-condition and integer-conversion diagnostics. + 'cl /nologo /TC /W4 /WX /wd4100 /wd4127 /wd4244 /wd4245 /DBZ_NO_STDIO /I"' + $bzip2Directory + '" ' + '/Fe"' + $probeExecutable + '" "' + $probeSource + '" ' + ($sourceFiles -join ' ') )