diff --git a/CODEOWNERS b/CODEOWNERS
index 2ff501c43e..bf0b2d225a 100644
--- a/CODEOWNERS
+++ b/CODEOWNERS
@@ -9,6 +9,6 @@ PublicAPI.Unshipped.txt @nohwnd @MarcoRossignoli
TelemetryDataConstants.cs @cvpoienaru @nohwnd
# Changes here might break our contracts with other adapters, and possibly
-# Visual Studio.
-/src/Microsoft.TestPlatform.AdapterUtilities/ @haplois @Evangelink
-/test/Microsoft.TestPlatform.AdapterUtilities.UnitTests/ @haplois @Evangelink
\ No newline at end of file
+# Visual Studio.
+/src/Microsoft.TestPlatform.AdapterUtilities/ @nohwnd @Evangelink
+/test/Microsoft.TestPlatform.AdapterUtilities.UnitTests/ @nohwnd @Evangelink
diff --git a/Directory.Build.targets b/Directory.Build.targets
index 5077c4638d..b720568ba0 100644
--- a/Directory.Build.targets
+++ b/Directory.Build.targets
@@ -11,11 +11,6 @@
$(NetCurrent)
-
-
-
-
-
diff --git a/NuGet.config b/NuGet.config
index 2d5b1c116b..f519a75093 100644
--- a/NuGet.config
+++ b/NuGet.config
@@ -7,6 +7,7 @@
+
@@ -15,8 +16,10 @@
+
+
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index d090c259b0..962d9395c5 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -1,7 +1,19 @@
# Branches that trigger a build on commit
trigger:
-- main
-- rel/*
+ branches:
+ include:
+ - main
+ - rel/*
+ exclude:
+ - rel/15.*
+ - rel/16.*
+ - rel/17.0
+ - rel/17.1
+ - rel/17.2
+ - rel/17.3
+ - rel/17.4
+ - rel/17.5
+ - rel/17.6
# Branch(es) that trigger(s) build(s) on PR
pr:
@@ -23,7 +35,7 @@ pr:
parameters:
- name: isRTM
- displayName: "Release a RTM version?"
+ displayName: "Produce RTM version?"
type: boolean
default: False
@@ -50,7 +62,7 @@ variables:
# under some circumstances, but we don't respect that in our code and try to find them
# in .packages. Force the location of packages to that folder.
- name: NUGET_PACKAGES
- value: '$(Build.SourcesDirectory)/.packages'
+ value: '$(Build.SourcesDirectory)/.packages/'
# Produce real signed binaries for Internal builds
- ${{ if eq(variables._RunAsInternal, True) }}:
@@ -76,6 +88,11 @@ variables:
/p:DotNetSymbolServerTokenSymWeb=$(symweb-symbol-server-pat)
/p:OfficialBuildId=$(BUILD.BUILDNUMBER)
/p:VisualStudioDropName=$(VisualStudioDropName)
+ /p:GenerateSbom=true
+
+ - ${{ if eq(parameters.isRTM, True) }}:
+ - name: _InternalBuildArgs
+ value: $(_InternalBuildArgs) /p:DotNetFinalVersionKind=release
stages:
@@ -119,6 +136,10 @@ stages:
command: custom
custom: '--info'
+ # Restore internal tools required for SBOM generation
+ - ${{ if eq(variables._RunAsInternal, True) }}:
+ - template: /eng/restore-internal-tools.yml
+
- powershell: eng\common\CIBuild.cmd
-configuration $(_BuildConfig)
-prepareMachine
@@ -144,7 +165,7 @@ stages:
PathtoPublish: '$(Build.SourcesDirectory)/artifacts/TestResults/$(_BuildConfig)'
ArtifactName: TestResults
condition: failed()
-
+
# Public pipeline does not upload packages into artifacts, but we need them for tests on Linux and MacOS.
- ${{ if eq(variables._RunAsPublic, True) }}:
- task: PublishBuildArtifacts@1
@@ -164,7 +185,7 @@ stages:
inputs:
PathtoPublish: '$(Build.SourcesDirectory)/artifacts/VSSetup/$(_BuildConfig)'
ArtifactName: VSSetupArtifacts
-
+
- job: OtherOSes
dependsOn: Windows
workspace:
@@ -188,7 +209,7 @@ stages:
- checkout: self
fetchDepth: 1
clean: true
-
+
# Build but don't pack, packing does not work on non-windows and we want to test what we built on Windows
# anyway. Because that is what we will publish.
- script: ./build.sh
@@ -196,14 +217,14 @@ stages:
--ci
name: Build
displayName: Build
-
+
# Download the built packages into local package source, as if we built them on this machine.
- task: DownloadPipelineArtifact@2
displayName: Download Package Artifacts
inputs:
artifactName: PackageArtifacts
targetPath: '$(Build.SourcesDirectory)/artifacts/packages/$(_BuildConfig)/Shipping'
-
+
- script: ./test.sh
--configuration $(_BuildConfig)
--ci
@@ -211,7 +232,7 @@ stages:
--performanceTest
name: Test
displayName: Test
-
+
# This step is only helpful for diagnosing some issues with vstest/test host that would not appear
# through the console or trx
- task: PublishBuildArtifacts@1
@@ -221,39 +242,34 @@ stages:
ArtifactName: TestResults
condition: failed()
- - job: Publish
- dependsOn: OtherOSes
- pool:
- ${{ if eq(variables._RunAsPublic, True) }}:
- name: NetCore-Public
- demands: ImageOverride -equals windows.vs2022.amd64.open
- ${{ if eq(variables._RunAsInternal, True) }}:
- name: NetCore1ESPool-Internal
- demands: ImageOverride -equals 1es-windows-2022
- strategy:
- matrix:
- Release:
- _BuildConfig: Release
- # ${{ if eq(variables._RunAsPublic, True) }}:
- # Debug:
- # _BuildConfig: Debug
- steps:
- # Download the built packages into local package source, as if we built them on this machine.
- - task: DownloadPipelineArtifact@2
- displayName: Download Package Artifacts
- inputs:
- artifactName: PackageArtifacts
- targetPath: '$(Build.SourcesDirectory)/artifacts/packages/$(_BuildConfig)/Shipping'
-
- - task: DownloadPipelineArtifact@2
- displayName: Download VSSetup Artifacts
- inputs:
- artifactName: VSSetupArtifacts
- targetPath: '$(Build.SourcesDirectory)/artifacts/VSSetup/$(_BuildConfig)'
-
- # TODO: Publishing to the feeds is making non-arcade CI acceptance tests fail so we disable these steps for now.
- # They will need to be re-enabled once this is merged to main.
- - ${{ if eq(variables._RunAsInternal, True) }}:
+ - ${{ if eq(variables._RunAsInternal, True) }}:
+ - job: Publish
+ dependsOn: OtherOSes
+ pool:
+ name: NetCore1ESPool-Internal
+ demands: ImageOverride -equals 1es-windows-2022
+ strategy:
+ matrix:
+ Release:
+ _BuildConfig: Release
+ steps:
+ # The template job needs a log, otherwise it writes a warning. We can disable log uploading only for
+ # the whole stage, which is not what we want to do. So we write an empty file instead.
+ - pwsh: 'New-Item -Type file -Force "$(Build.SourcesDirectory)/artifacts/log/$(_BuildConfig)/empty.log"'
+ name: 'Add_empty_logfile'
+ # Download the built packages into local package source, as if we built them on this machine.
+ - task: DownloadPipelineArtifact@2
+ displayName: Download Package Artifacts
+ inputs:
+ artifactName: PackageArtifacts
+ targetPath: '$(Build.SourcesDirectory)/artifacts/packages/$(_BuildConfig)/Shipping'
+
+ - task: DownloadPipelineArtifact@2
+ displayName: Download VSSetup Artifacts
+ inputs:
+ artifactName: VSSetupArtifacts
+ targetPath: '$(Build.SourcesDirectory)/artifacts/VSSetup/$(_BuildConfig)'
+
- task: NuGetAuthenticate@0
displayName: 'NuGet Authenticate to dotnet-tools and test-tools feeds'
diff --git a/docs/releases.md b/docs/releases.md
index 4dee1c37ee..4dff5241d5 100644
--- a/docs/releases.md
+++ b/docs/releases.md
@@ -1,5 +1,34 @@
# Release Notes
+## 17.6.1 and newer
+
+Please see release notes directly in the release page: https://github.com/microsoft/vstest/releases
+
+## 17.6.0
+
+### Issues Fixed
+
+* Add legacy feeds
+* [rel/17.6] Fix Newtonsoft versions in testhost.deps.json [#4372](https://github.com/microsoft/vstest/pull/4372)
+* Revert "Revert "Fix signature verification" (#4333" [#4345](https://github.com/microsoft/vstest/pull/4345)
+* Revert "Fix signature verification" [#4333](https://github.com/microsoft/vstest/pull/4333)
+* Fix signature verification [#4331](https://github.com/microsoft/vstest/pull/4331)
+* Pre-start testhosts [#3666](https://github.com/microsoft/vstest/pull/3666)
+* Add `dotnet vstest` deprecation message [#4297](https://github.com/microsoft/vstest/pull/4297)
+* Catch unhandled exception and avoid crash on test host exit [#4291](https://github.com/microsoft/vstest/pull/4291)
+* Remove chutzpah [#4249](https://github.com/microsoft/vstest/pull/4249)
+* Fix string conversion of `Microsoft.TestPlatform.Extensions.TrxLogger.ObjectMode.TestOutcome` [#4243](https://github.com/microsoft/vstest/pull/4243)
+* Fix potential trx logger NRE [#4240](https://github.com/microsoft/vstest/pull/4240)
+* handle object disposed exception [#4221](https://github.com/microsoft/vstest/pull/4221)
+* Added support for checking testhost compatibility with test sessions [#4199](https://github.com/microsoft/vstest/pull/4199)
+
+See full log [here](https://github.com/microsoft/vstest/compare/v17.5.0...v17.6.0)
+
+### Artifacts
+
+* TestPlatform vsix: [17.6.0](https://vsdrop.corp.microsoft.com/file/v1/Products/DevDiv/microsoft/vstest/17.6/20230515-01;/TestPlatform.vsix)
+* Microsoft.TestPlatform.ObjectModel : [17.6.0](https://www.nuget.org/packages/Microsoft.TestPlatform.ObjectModel/17.6.0)
+
## 17.3.3
### Issues Fixed
diff --git a/eng/Localize/LocProject.json b/eng/Localize/LocProject.json
deleted file mode 100644
index ee9a4cef71..0000000000
--- a/eng/Localize/LocProject.json
+++ /dev/null
@@ -1,215 +0,0 @@
-{
- "Projects": [
- {
- "LanguageSet": "VS_Main_Languages",
- "LocItems": [
- {
- "LclFile": "Localize\\lcl\\{Lang}\\src\\DataCollectors\\Microsoft.TestPlatform.Extensions.EventLogCollector\\Resources\\xlf\\Resources.xlf.lcl",
- "CopyOption": "LangIDOnName",
- "Languages": "",
- "OutputPath": "src\\DataCollectors\\Microsoft.TestPlatform.Extensions.EventLogCollector\\Resources\\xlf",
- "SourceFile": "src\\DataCollectors\\Microsoft.TestPlatform.Extensions.EventLogCollector\\Resources\\xlf\\Resources.xlf"
- }
- ]
- },
- {
- "LanguageSet": "VS_Main_Languages",
- "LocItems": [
- {
- "LclFile": "Localize\\lcl\\{Lang}\\src\\Microsoft.TestPlatform.AdapterUtilities\\Resources\\xlf\\Resources.xlf.lcl",
- "CopyOption": "LangIDOnName",
- "Languages": "",
- "OutputPath": "src\\Microsoft.TestPlatform.AdapterUtilities\\Resources\\xlf",
- "SourceFile": "src\\Microsoft.TestPlatform.AdapterUtilities\\Resources\\xlf\\Resources.xlf"
- }
- ]
- },
- {
- "LanguageSet": "VS_Main_Languages",
- "LocItems": [
- {
- "LclFile": "Localize\\lcl\\{Lang}\\src\\Microsoft.TestPlatform.Build\\Resources\\xlf\\Resources.xlf.lcl",
- "CopyOption": "LangIDOnName",
- "Languages": "",
- "OutputPath": "src\\Microsoft.TestPlatform.Build\\Resources\\xlf",
- "SourceFile": "src\\Microsoft.TestPlatform.Build\\Resources\\xlf\\Resources.xlf"
- }
- ]
- },
- {
- "LanguageSet": "VS_Main_Languages",
- "LocItems": [
- {
- "LclFile": "Localize\\lcl\\{Lang}\\src\\Microsoft.TestPlatform.Client\\Resources\\xlf\\Resources.xlf.lcl",
- "CopyOption": "LangIDOnName",
- "Languages": "",
- "OutputPath": "src\\Microsoft.TestPlatform.Client\\Resources\\xlf",
- "SourceFile": "src\\Microsoft.TestPlatform.Client\\Resources\\xlf\\Resources.xlf"
- }
- ]
- },
- {
- "LanguageSet": "VS_Main_Languages",
- "LocItems": [
- {
- "LclFile": "Localize\\lcl\\{Lang}\\src\\Microsoft.TestPlatform.Common\\Resources\\xlf\\Resources.xlf.lcl",
- "CopyOption": "LangIDOnName",
- "Languages": "",
- "OutputPath": "src\\Microsoft.TestPlatform.Common\\Resources\\xlf",
- "SourceFile": "src\\Microsoft.TestPlatform.Common\\Resources\\xlf\\Resources.xlf"
- }
- ]
- },
- {
- "LanguageSet": "VS_Main_Languages",
- "LocItems": [
- {
- "LclFile": "Localize\\lcl\\{Lang}\\src\\Microsoft.TestPlatform.CommunicationUtilities\\Resources\\xlf\\Resources.xlf.lcl",
- "CopyOption": "LangIDOnName",
- "Languages": "",
- "OutputPath": "src\\Microsoft.TestPlatform.CommunicationUtilities\\Resources\\xlf",
- "SourceFile": "src\\Microsoft.TestPlatform.CommunicationUtilities\\Resources\\xlf\\Resources.xlf"
- }
- ]
- },
- {
- "LanguageSet": "VS_Main_Languages",
- "LocItems": [
- {
- "LclFile": "Localize\\lcl\\{Lang}\\src\\Microsoft.TestPlatform.CoreUtilities\\Resources\\xlf\\Resources.xlf.lcl",
- "CopyOption": "LangIDOnName",
- "Languages": "",
- "OutputPath": "src\\Microsoft.TestPlatform.CoreUtilities\\Resources\\xlf",
- "SourceFile": "src\\Microsoft.TestPlatform.CoreUtilities\\Resources\\xlf\\Resources.xlf"
- }
- ]
- },
- {
- "LanguageSet": "VS_Main_Languages",
- "LocItems": [
- {
- "LclFile": "Localize\\lcl\\{Lang}\\src\\Microsoft.TestPlatform.CrossPlatEngine\\Resources\\xlf\\Resources.xlf.lcl",
- "CopyOption": "LangIDOnName",
- "Languages": "",
- "OutputPath": "src\\Microsoft.TestPlatform.CrossPlatEngine\\Resources\\xlf",
- "SourceFile": "src\\Microsoft.TestPlatform.CrossPlatEngine\\Resources\\xlf\\Resources.xlf"
- }
- ]
- },
- {
- "LanguageSet": "VS_Main_Languages",
- "LocItems": [
- {
- "LclFile": "Localize\\lcl\\{Lang}\\src\\Microsoft.TestPlatform.Extensions.BlameDataCollector\\Resources\\xlf\\Resources.xlf.lcl",
- "CopyOption": "LangIDOnName",
- "Languages": "",
- "OutputPath": "src\\Microsoft.TestPlatform.Extensions.BlameDataCollector\\Resources\\xlf",
- "SourceFile": "src\\Microsoft.TestPlatform.Extensions.BlameDataCollector\\Resources\\xlf\\Resources.xlf"
- }
- ]
- },
- {
- "LanguageSet": "VS_Main_Languages",
- "LocItems": [
- {
- "LclFile": "Localize\\lcl\\{Lang}\\src\\Microsoft.TestPlatform.Extensions.HtmlLogger\\Resources\\xlf\\Resources.xlf.lcl",
- "CopyOption": "LangIDOnName",
- "Languages": "",
- "OutputPath": "src\\Microsoft.TestPlatform.Extensions.HtmlLogger\\Resources\\xlf",
- "SourceFile": "src\\Microsoft.TestPlatform.Extensions.HtmlLogger\\Resources\\xlf\\Resources.xlf"
- }
- ]
- },
- {
- "LanguageSet": "VS_Main_Languages",
- "LocItems": [
- {
- "LclFile": "Localize\\lcl\\{Lang}\\src\\Microsoft.TestPlatform.ObjectModel\\Resources\\xlf\\CommonResources.xlf.lcl",
- "CopyOption": "LangIDOnName",
- "Languages": "",
- "OutputPath": "src\\Microsoft.TestPlatform.ObjectModel\\Resources\\xlf",
- "SourceFile": "src\\Microsoft.TestPlatform.ObjectModel\\Resources\\xlf\\CommonResources.xlf"
- }
- ]
- },
- {
- "LanguageSet": "VS_Main_Languages",
- "LocItems": [
- {
- "LclFile": "Localize\\lcl\\{Lang}\\src\\Microsoft.TestPlatform.ObjectModel\\Resources\\xlf\\Resources.xlf.lcl",
- "CopyOption": "LangIDOnName",
- "Languages": "",
- "OutputPath": "src\\Microsoft.TestPlatform.ObjectModel\\Resources\\xlf",
- "SourceFile": "src\\Microsoft.TestPlatform.ObjectModel\\Resources\\xlf\\Resources.xlf"
- }
- ]
- },
- {
- "LanguageSet": "VS_Main_Languages",
- "LocItems": [
- {
- "LclFile": "Localize\\lcl\\{Lang}\\src\\Microsoft.TestPlatform.TestHostProvider\\Resources\\xlf\\Resources.xlf.lcl",
- "CopyOption": "LangIDOnName",
- "Languages": "",
- "OutputPath": "src\\Microsoft.TestPlatform.TestHostProvider\\Resources\\xlf",
- "SourceFile": "src\\Microsoft.TestPlatform.TestHostProvider\\Resources\\xlf\\Resources.xlf"
- }
- ]
- },
- {
- "LanguageSet": "VS_Main_Languages",
- "LocItems": [
- {
- "LclFile": "Localize\\lcl\\{Lang}\\src\\Microsoft.TestPlatform.Utilities\\Resources\\xlf\\Resources.xlf.lcl",
- "CopyOption": "LangIDOnName",
- "Languages": "",
- "OutputPath": "src\\Microsoft.TestPlatform.Utilities\\Resources\\xlf",
- "SourceFile": "src\\Microsoft.TestPlatform.Utilities\\Resources\\xlf\\Resources.xlf"
- }
- ]
- },
- {
- "LanguageSet": "VS_Main_Languages",
- "LocItems": [
- {
- "LclFile": "Localize\\lcl\\{Lang}\\src\\Microsoft.TestPlatform.VsTestConsole.TranslationLayer\\Resources\\xlf\\Resources.xlf.lcl",
- "CopyOption": "LangIDOnName",
- "Languages": "",
- "OutputPath": "src\\Microsoft.TestPlatform.VsTestConsole.TranslationLayer\\Resources\\xlf",
- "SourceFile": "src\\Microsoft.TestPlatform.VsTestConsole.TranslationLayer\\Resources\\xlf\\Resources.xlf"
- },
- {
- "LclFile": "Localize\\lcl\\{Lang}\\src\\Microsoft.TestPlatform.VsTestConsole.TranslationLayer\\Resources\\xlf\\InternalResources.xlf.lcl",
- "CopyOption": "LangIDOnName",
- "Languages": "",
- "OutputPath": "src\\Microsoft.TestPlatform.VsTestConsole.TranslationLayer\\Resources\\xlf",
- "SourceFile": "src\\Microsoft.TestPlatform.VsTestConsole.TranslationLayer\\Resources\\xlf\\InternalResources.xlf"
- }
- ]
- },
- {
- "LanguageSet": "VS_Main_Languages",
- "LocItems": [
- {
- "LclFile": "Localize\\lcl\\{Lang}\\src\\SettingsMigrator\\Resources\\xlf\\Resources.xlf.lcl",
- "CopyOption": "LangIDOnName",
- "Languages": "",
- "OutputPath": "src\\SettingsMigrator\\Resources\\xlf",
- "SourceFile": "src\\SettingsMigrator\\Resources\\xlf\\Resources.xlf"
- }
- ]
- },
- {
- "LanguageSet": "VS_Main_Languages",
- "LocItems": [
- {
- "LclFile": "Localize\\lcl\\{Lang}\\src\\vstest.console\\Resources\\xlf\\Resources.xlf.lcl",
- "CopyOption": "LangIDOnName",
- "Languages": "",
- "OutputPath": "src\\vstest.console\\Resources\\xlf",
- "SourceFile": "src\\vstest.console\\Resources\\xlf\\Resources.xlf"
- }
- ]
- }
- ]
-}
diff --git a/eng/Localize/lcl/cs/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/cs/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 7b56b47a55..0000000000
--- a/eng/Localize/lcl/cs/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/cs/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/cs/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 8107d7ac88..0000000000
--- a/eng/Localize/lcl/cs/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 079ced38c6..0000000000
--- a/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,116 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index b89490f2eb..0000000000
--- a/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true" property to project file.]]>
-
- true.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 8956e310d5..0000000000
--- a/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 60af084f4f..0000000000
--- a/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,372 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true is not supported for sources test run.]]>
-
- true se pro testovací běh zdrojů nepodporuje.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index d4fd5be0e2..0000000000
--- a/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,117 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 03f3f7dfd1..0000000000
--- a/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,159 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index e346449b07..0000000000
--- a/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,357 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 1de1dd89d7..0000000000
--- a/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,174 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 2169753289..0000000000
--- a/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl b/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl
deleted file mode 100644
index 7669434f4c..0000000000
--- a/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl
+++ /dev/null
@@ -1,312 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl b/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl
deleted file mode 100644
index c37073d4a4..0000000000
--- a/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl b/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl
deleted file mode 100644
index d0529e7522..0000000000
--- a/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 1e6ab2d326..0000000000
--- a/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,627 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- .]]>
-
- .]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 7cd9936503..0000000000
--- a/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 3d3919c0ef..0000000000
--- a/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,78 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl b/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl
deleted file mode 100644
index a8f77cfa5d..0000000000
--- a/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 0a39700d0c..0000000000
--- a/eng/Localize/lcl/cs/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,105 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/cs/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/cs/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 509b39c830..0000000000
--- a/eng/Localize/lcl/cs/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A;SettingsMigrator.exe ]D;]A;Examples:]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings E:\MyTest\MyNewRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings E:\MyTest\MyNewRunSettings.runsettings]]>
-
- ]D;]A;SettingsMigrator.exe <Úplná cesta k souboru testsettings nebo runsettings, který se má migrovat> <Úplná cesta k souboru runsettings, který se má vytvořit>]D;]A;Příklady:]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings E:\MyTest\MyNewRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings E:\MyTest\MyNewRunSettings.runsettings]]>
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/cs/src/vstest.console/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/cs/src/vstest.console/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index f6d70af0d0..0000000000
--- a/eng/Localize/lcl/cs/src/vstest.console/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,1794 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The directory containing the temporary outputs.]]>
-
- ]D;]A; Adresář, který obsahuje dočasné výstupy]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Enables data collector for the test run. More info here : https://aka.ms/vstest-collect]]>
-
- ]D;]A; Povolit kolekci dat pro testovací běh. Další informace: https://aka.ms/vstest-collect]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The configuration the project is built for i.e. Debug/Release]]>
-
- ]D;]A; Konfigurace, pro kterou se projekt sestaví, tj. Debug/Release]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Example: /DisableAutoFakes:true]]>
-
- ]D;]A; Příklad: /DisableAutoFakes:true]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Enable logs for test platform.]D;]A; Logs are written to the provided file.]D;]A;]D;]A; Change the trace level for logs as shown below]D;]A; Example: /Diag:;tracelevel=]D;]A; Allowed values for tracelevel: off, error, warning, info and verbose.]]>
-
- ]D;]A; Povolit protokoly pro testovací platformu]D;]A; Protokoly se zapisují do zadaného souboru.]D;]A;]D;]A; Změňte úroveň trasování pro protokoly tak, jak je uvedeno níže.]D;]A; Příklad: /Diag:;tracelevel=]D;]A; Povolené hodnoty pro tracelevel: off, error, warning, info a verbose]]>
-
-
-
-
-
-
- ]D;]A; Specify a logger for test results. For example, to log results into a ]D;]A; Visual Studio Test Results File (TRX) use /logger:trx[;LogFileName=]5D;]D;]A; Creates file in TestResults directory with given LogFileName.]D;]A;]D;]A; Change the verbosity level in log messages for console logger as shown below]D;]A; Example: /logger:console;verbosity=]D;]A; Allowed values for verbosity: quiet, minimal, normal and detailed.]D;]A;]D;]A; Change the diagnostic level prefix for console logger as shown below]D;]A; Example: /logger:console;prefix=]D;]A; More info on Console Logger here : https://aka.ms/console-logger]]>
-
- ]D;]A; Určuje protokolovací nástroj pro výsledky testu. Pokud chcete protokolovat výsledky třeba]D;]A; do souboru výsledků testu sady Visual Studio (TRX), použijte /logger:trx[;LogFileName=]5D;]D;]A; Vytvoří soubor v adresáři TestResults s daným LogFileName.]D;]A;]D;]A; Změní úroveň podrobností ve zprávách protokolu pro protokolovací nástroj konzoly tak, jak je uvedeno níže.]D;]A; Příklad: /logger:console;verbosity=]D;]A; Povolené hodnoty pro verbosity: quiet, minimal, normal a detailed]D;]A;]D;]A; Změní předponu úrovně diagnostiky pro protokolovací nástroj konzoly tak, jak je uvedeno níže.]D;]A; Příklad: /logger:console;prefix=]D;]A; Další informace o protokolovacím nástroji konzoly: https://aka.ms/console-logger]]>
-
-
-
-
-
-
- ]D;]A; Specify a logger for test results. For example, to log results into a ]D;]A; Visual Studio Test Results File (TRX) use /logger:trx[;LogFileName=]5D;]D;]A; Creates file in TestResults directory with given LogFileName.]D;]A;]D;]A; Change the verbosity level in log messages for console logger as shown below]D;]A; Example: /logger:console;verbosity=]D;]A; Allowed values for verbosity: quiet, minimal, normal and detailed.]D;]A;]D;]A; Change the diagnostic level prefix for console logger as shown below]D;]A; Example: /logger:console;prefix=]D;]A; More info on Console Logger here : https://aka.ms/console-logger]]>
-
- ]D;]A; Určuje protokolovací nástroj pro výsledky testu. Pokud chcete protokolovat výsledky třeba]D;]A; do souboru výsledků testu sady Visual Studio (TRX), použijte /logger:trx[;LogFileName=]5D;]D;]A; Vytvoří soubor v adresáři TestResults s daným LogFileName.]D;]A;]D;]A; Změní úroveň podrobností ve zprávách protokolu pro protokolovací nástroj konzoly tak, jak je uvedeno níže.]D;]A; Příklad: /logger:console;verbosity=]D;]A; Povolené hodnoty pro verbosity: quiet, minimal, normal a detailed]D;]A;]D;]A; Změní předponu úrovně diagnostiky pro protokolovací nástroj konzoly tak, jak je uvedeno níže.]D;]A; Příklad: /logger:console;prefix=]D;]A; Další informace o protokolovacím nástroji konzoly: https://aka.ms/console-logger]]>
-
-
-
-
-
-
- =]D;]A; Sets the value of an environment variable. Creates the variable if it does not exist, overrides if it does. This will imply /InIsolation switch and force the tests to be run in an isolated process.]D;]A; ]D;]A; This argument can be specified multiple times to provide multiple variables.]D;]A;]D;]A; Example: -e:VARIABLE1=VALUE1]D;]A; -e:ANOTHER_VARIABLE="VALUE WITH SPACES"]D;]A; -e:ANOTHER_VARIABLE="VALUE;seperated with;semicolons"]]>
-
- =]D;]A; Nastaví hodnotu proměnné prostředí. Pokud proměnná neexistuje, vytvoří ji, a pokud existuje, přepíše ji. Tato možnost bude znamenat, že se použije přepínač /InIsolation a vynutí se spuštění testů v izolovaném procesu.]D;]A; ]D;]A; Tento argument se dá zadat vícekrát, může se tak poskytnout více proměnných.]D;]A;]D;]A; Příklad: -e:PROMENNA1=HODNOTA1]D;]A; -e:JINA_PROMENNA="HODNOTA S MEZERAMI"]D;]A; -e:JINA_PROMENNA="HODNOTA;oddělená;středníky"]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- vstest.console.exe tests.dll ]D;]A; To run tests with additional settings such as data collectors:]D;]A; >vstest.console.exe tests.dll /Settings:Local.RunSettings]]>
-
- vstest.console.exe tests.dll ]D;]A; Pro spuštění testů s dalšími nastaveními, třeba kolekcemi dat:]D;]A; >vstest.console.exe tests.dll /Settings:Local.RunSettings]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Target .Net Framework version to be used for test execution. ]D;]A; Valid values are ".NETFramework,Version=v4.5.1", ".NETCoreApp,Version=v1.0" etc.]D;]A; Other supported values are Framework40, Framework45, FrameworkCore10 and FrameworkUap10.]]>
-
- ]D;]A; Cílová verze rozhraní .NET Framework, která se použije ke spuštění testu. ]D;]A; Platné hodnoty jsou .NETFramework,Version=v4.5.1, .NETCoreApp,Version=v1.0 apod.]D;]A; Další podporované hodnoty jsou Framework40, Framework45, FrameworkCore10 a FrameworkUap10.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ...]5D;]5D;]]>
-
- ...]5D;]5D;]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- \", value=\"\")]]>
-
- \", value=\"\")]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Lists all discovered tests from the given test container.]]>
-
- ]D;]A; Vypíše všechny zjištěné testy z daného kontejneru testů.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The directory containing the binaries to run.]]>
-
- ]D;]A; Adresář, který obsahuje binární soubory, které se mají spustit]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Process Id of the Parent Process responsible for launching current process.]]>
-
- ]D;]A; ID nadřazeného procesu, který je odpovědný za spuštění aktuálního procesu]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Target platform architecture to be used for test execution. ]D;]A; Valid values are x86, x64 and ARM.]]>
-
- ]D;]A; Cílová architektura platformy, která se použije ke spuštění testu. ]D;]A; Platné hodnoty jsou x86, x64 a ARM.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The Port for socket connection and receiving the event messages.]]>
-
- ]D;]A; Port pro připojení soketu a přijímání zpráv událostí]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Read response file for more options.]]>
-
- ]D;]A; Načte další možnosti ze souboru odpovědí.]]>
-
-
-
-
-
-
- ]]>
-
- ]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Settings to use when running tests.]]>
-
- ]D;]A; Nastavení, která se použijí při testování.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Run tests with names that match the provided values. To provide multiple]D;]A; values, separate them by commas.]D;]A; Examples: /Tests:TestMethod1]D;]A; /Tests:TestMethod1,testMethod2]]>
-
- ]D;]A; Spustí testy s názvy odpovídajícími zadaným hodnotám. Chcete-li zadat více]D;]A; hodnot, oddělte je čárkami.]D;]A; Příklady: /Tests:TestMethod1]D;]A; /Tests:TestMethod1,testMethod2]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- .]]>
-
- .]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; This affects adapter loading behavior.]D;]A;]D;]A; Currently supported behaviors:]D;]A; - Explicit: Test Platform will only load adapters specified by /TestAdapterPath (or RunConfiguration.TestAdaptersPaths node). ]D;]A; If a specific adapter path is provided, adapter will be loaded; if a directory path is provided adapters directly in that folder will be loaded, unless Recursive option is also specified.]D;]A; If no adapter path is specified, test run will fail.]D;]A; This will imply /InIsolation switch and force the tests to be run in an isolated process.]D;]A; ]D;]A; - Default: Test Platform will load adapters is if this argument has not been specified. ]D;]A; It will pick up extensions from next to source, provided additional adapter paths and from the default directory.]D;]A;]D;]A; - DefaultRuntimeProviders: Load default runtime providers shipped with Test Platform. ]D;]A; If this is not specified when "Explicit" option is set, a test host provider need to be specified explicitly.]D;]A;]D;]A; - ExtensionsDirectory: Load adapters inside Extensions folder.]D;]A;]D;]A; - NextToSource: Load adapters next to source. ]D;]A;]D;]A; - Recursive: Recursively search folders when loading adapters. This requires "Explicit" or "NextToSource" to be specified too.]]>
-
- ]D;]A; Toto má dopad na chování při načítání adaptéru.]D;]A;]D;]A; Aktuálně podporovaná chování:]D;]A; – Explicit: Testovací platforma načte pouze adaptéry určené přes /TestAdapterPath (nebo uzel RunConfiguration.TestAdaptersPaths). ]D;]A; Pokud je poskytnuta určená cesta k adaptéru, adaptér se načte; pokud je poskytnuta cesta adresáře, načtou se adaptér přímo v dané složce, pokud není zároveň určená rekurzivní možnost.]D;]A; Pokud není určena žádná cesta k adaptéru, testovací běh se nezdaří.]D;]A; To bude znamenat přepnutí na /InIsolation a vynutí spuštění testů v izolovaném procesu.]D;]A; ]D;]A; – Výchozí: Testovací platforma načte adaptéry pokud nedošlo k určení tohoto argumentu.]D;]A; Vyzvedne rozšíření z okolí zdroje, z poskytnutých dodatečných cest k adaptéru a z výchozího adresáře. ]D;]A;]D;]A; – DefaultRuntimeProviders: Načte výchozí poskytovatele modulů runtime doručené spolu s Testovací platformou.]D;]A; Pokud toto není výslovně určeno, když je nastavena možnost „Explicit“, poskytovatel hostitele testu musí být explicitně určen.]D;]A;]D;]A; – ExtensionsDirectory: Načte adaptéry ve složce Rozšíření.]D;]A;]D;]A; – NextToSource: Načte adaptéry v okolí zdroje. ]D;]A;]D;]A; – Recursive: Rekurzivně prohledá složky při načítání adaptérů. Toto vyžaduje, aby bylo zároveň určeno „Explicit“ a „NextToSource“.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]]>
-
- ]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Run tests that match the given expression.]D;]A; is of the format Operator[|&]5D;]D;]A; where Operator is one of =, != or ~ (Operator ~ has 'contains']D;]A; semantics and is applicable for string properties like DisplayName).]D;]A; Parenthesis () can be used to group sub-expressions.]D;]A; Examples: /TestCaseFilter:"Priority=1"]D;]A; /TestCaseFilter:"(FullyQualifiedName~Nightly]D;]A; |Name=MyTestMethod)"]]>
-
- ]D;]A; Spustí testy, které odpovídají danému výrazu.]D;]A; musí být formátu operátor[|&]5D;,]D;]A; kde operátor je =, != nebo ~ (operátor ~ má sémantiku]D;]A; contains a je použitelný na vlastnosti řetězce, jako je DisplayName).]D;]A; Závorky () mohou být použity pro seskupení podvýrazů.]D;]A; Příklady: /TestCaseFilter:"Priority=1"]D;]A; /TestCaseFilter:"(FullyQualifiedName~Nightly]D;]A; |Name=MyTestMethod)"]]>
-
-
-
-
-
-
- = type.]D;]A; Examples: "Priority=1", "TestCategory=Nightly"]]>
-
- =.]D;]A; Příklady: "Priority=1", "TestCategory=Nightly"]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/de/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/de/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 58b2cb6bd6..0000000000
--- a/eng/Localize/lcl/de/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/de/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/de/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 89373d2073..0000000000
--- a/eng/Localize/lcl/de/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/de/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/de/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 5e145152f9..0000000000
--- a/eng/Localize/lcl/de/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,116 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/de/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/de/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 53de52126c..0000000000
--- a/eng/Localize/lcl/de/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true" property to project file.]]>
-
- true hinzu.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/de/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/de/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 69690487d3..0000000000
--- a/eng/Localize/lcl/de/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/de/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/de/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index cbe0e9e8e8..0000000000
--- a/eng/Localize/lcl/de/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,372 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true is not supported for sources test run.]]>
-
- TRUE wird für den Testlauf der Quellen nicht unterstützt.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/de/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/de/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 84e597ad5e..0000000000
--- a/eng/Localize/lcl/de/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,117 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/de/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/de/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 11438cb380..0000000000
--- a/eng/Localize/lcl/de/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,159 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/de/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/de/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 8ad68d36f7..0000000000
--- a/eng/Localize/lcl/de/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,357 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/de/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/de/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index b2e1407ff8..0000000000
--- a/eng/Localize/lcl/de/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,174 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/de/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/de/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 4858be9cbd..0000000000
--- a/eng/Localize/lcl/de/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/de/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl b/eng/Localize/lcl/de/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl
deleted file mode 100644
index da7fddbc3d..0000000000
--- a/eng/Localize/lcl/de/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl
+++ /dev/null
@@ -1,312 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/de/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl b/eng/Localize/lcl/de/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl
deleted file mode 100644
index e8e9e2bcab..0000000000
--- a/eng/Localize/lcl/de/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/de/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl b/eng/Localize/lcl/de/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl
deleted file mode 100644
index 7a6691717a..0000000000
--- a/eng/Localize/lcl/de/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/de/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/de/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index c09b3bdc3e..0000000000
--- a/eng/Localize/lcl/de/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,627 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- .]]>
-
- .]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/de/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/de/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index a68aa48e6f..0000000000
--- a/eng/Localize/lcl/de/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/de/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/de/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 9da7cccf20..0000000000
--- a/eng/Localize/lcl/de/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,78 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/de/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl b/eng/Localize/lcl/de/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl
deleted file mode 100644
index fc8977bad7..0000000000
--- a/eng/Localize/lcl/de/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/de/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/de/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 780fae08d4..0000000000
--- a/eng/Localize/lcl/de/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,105 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/de/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/de/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 2bb1c885f0..0000000000
--- a/eng/Localize/lcl/de/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A;SettingsMigrator.exe ]D;]A;Examples:]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings E:\MyTest\MyNewRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings E:\MyTest\MyNewRunSettings.runsettings]]>
-
- ]D;]A;SettingsMigrator.exe ]D;]A;Beispiele:]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings E:\MyTest\MyNewRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings E:\MyTest\MyNewRunSettings.runsettings]]>
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/de/src/vstest.console/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/de/src/vstest.console/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 5ca9c8fbc9..0000000000
--- a/eng/Localize/lcl/de/src/vstest.console/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,1794 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The directory containing the temporary outputs.]]>
-
- ]D;]A; Das Verzeichnis mit den temporären Ausgaben.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Enables data collector for the test run. More info here : https://aka.ms/vstest-collect]]>
-
- ]D;]A; Aktiviert den Datensammler für den Testlauf. Weitere Informationen finden Sie unter https://aka.ms/vstest-collect.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The configuration the project is built for i.e. Debug/Release]]>
-
- ]D;]A; Die Konfiguration, für die das Projekt erstellt wird, d. h. Debug/Release.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Example: /DisableAutoFakes:true]]>
-
- ]D;]A; Beispiel: /DisableAutoFakes:true]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Enable logs for test platform.]D;]A; Logs are written to the provided file.]D;]A;]D;]A; Change the trace level for logs as shown below]D;]A; Example: /Diag:;tracelevel=]D;]A; Allowed values for tracelevel: off, error, warning, info and verbose.]]>
-
- ]D;]A; Aktivieren Sie die Protokolle für die Testplattform.]D;]A; Protokolle werden in die bereitgestellte Datei geschrieben.]D;]A;]D;]A; Ändern Sie die Ablaufverfolgungsebene für Protokolle wie folgt:]D;]A; Beispiel: /Diag:;tracelevel=]D;]A; Zulässige Werte für tracelevel: off, error, warning, info, verbose.]]>
-
-
-
-
-
-
- ]D;]A; Specify a logger for test results. For example, to log results into a ]D;]A; Visual Studio Test Results File (TRX) use /logger:trx[;LogFileName=]5D;]D;]A; Creates file in TestResults directory with given LogFileName.]D;]A;]D;]A; Change the verbosity level in log messages for console logger as shown below]D;]A; Example: /logger:console;verbosity=]D;]A; Allowed values for verbosity: quiet, minimal, normal and detailed.]D;]A;]D;]A; Change the diagnostic level prefix for console logger as shown below]D;]A; Example: /logger:console;prefix=]D;]A; More info on Console Logger here : https://aka.ms/console-logger]]>
-
- ]D;]A; Geben Sie eine Protokollierung für Testergebnisse an. Um Ergebnisse beispielsweise in einer]D;]A; Visual Studio-Testergebnisdatei (TRX) zu protokollieren, verwenden Sie /logger:trx[;LogFileName=]5D;]D;]A; Erstellt die Datei im TestResults-Verzeichnis mit dem angegebenen LogFileName.]D;]A;]D;]A; Ändern Sie den Ausführlichkeitsgrad in den Protokollmeldungen für die Konsolenprotokollierung wie folgt:]D;]A; Beispiel: /logger:console;verbosity=]D;]A; Zulässige Werte für den Ausführlichkeitsgrad: quiet, minimal, normal, detailed.]D;]A;]D;]A; Ändern Sie das Präfix für die Diagnoseebene für die Konsolenprotokollierung wie folgt:]D;]A; Beispiel: /logger:console;prefix=]D;]A; Weitere Informationen zur Konsolenprotokollierung finden Sie hier: https://aka.ms/console-logger]]>
-
-
-
-
-
-
- ]D;]A; Specify a logger for test results. For example, to log results into a ]D;]A; Visual Studio Test Results File (TRX) use /logger:trx[;LogFileName=]5D;]D;]A; Creates file in TestResults directory with given LogFileName.]D;]A;]D;]A; Change the verbosity level in log messages for console logger as shown below]D;]A; Example: /logger:console;verbosity=]D;]A; Allowed values for verbosity: quiet, minimal, normal and detailed.]D;]A;]D;]A; Change the diagnostic level prefix for console logger as shown below]D;]A; Example: /logger:console;prefix=]D;]A; More info on Console Logger here : https://aka.ms/console-logger]]>
-
- ]D;]A; Geben Sie eine Protokollierung für Testergebnisse an. Um Ergebnisse beispielsweise in einer]D;]A; Visual Studio-Testergebnisdatei (TRX) zu protokollieren, verwenden Sie /logger:trx[;LogFileName=]5D;]D;]A; Erstellt die Datei im TestResults-Verzeichnis mit dem angegebenen LogFileName.]D;]A;]D;]A; Ändern Sie den Ausführlichkeitsgrad in den Protokollmeldungen für die Konsolenprotokollierung wie folgt:]D;]A; Beispiel: /logger:console;verbosity=]D;]A; Zulässige Werte für den Ausführlichkeitsgrad: quiet, minimal, normal, detailed.]D;]A;]D;]A; Ändern Sie das Präfix für die Diagnoseebene für die Konsolenprotokollierung wie folgt:]D;]A; Beispiel: /logger:console;prefix=]D;]A; Weitere Informationen zur Konsolenprotokollierung finden Sie hier: https://aka.ms/console-logger]]>
-
-
-
-
-
-
- =]D;]A; Sets the value of an environment variable. Creates the variable if it does not exist, overrides if it does. This will imply /InIsolation switch and force the tests to be run in an isolated process.]D;]A; ]D;]A; This argument can be specified multiple times to provide multiple variables.]D;]A;]D;]A; Example: -e:VARIABLE1=VALUE1]D;]A; -e:ANOTHER_VARIABLE="VALUE WITH SPACES"]D;]A; -e:ANOTHER_VARIABLE="VALUE;seperated with;semicolons"]]>
-
- =]D;]A; Legt den Wert einer Umgebungsvariablen fest. Erstellt die Variable, wenn Sie nicht vorhanden ist, und setzt sie andernfalls außer Kraft. Dies impliziert die Option "/InIsolation" und erzwingt die Ausführung der Tests in einem isolierten Prozess.]D;]A; ]D;]A; Dieses Argument kann mehrmals angegeben werden, um mehrere Variablen bereitzustellen.]D;]A;]D;]A; Beispiel: -e:VARIABLE1=WERT1]D;]A; -e:WEITERE_VARIABLE="WERT MIT LEERZEICHEN"]D;]A; -e:WEITERE_VARIABLE="WERT;getrennt durch;Semikolons"]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- vstest.console.exe tests.dll ]D;]A; To run tests with additional settings such as data collectors:]D;]A; >vstest.console.exe tests.dll /Settings:Local.RunSettings]]>
-
- vstest.console.exe tests.dll ]D;]A; Zum Ausführen von Tests mit zusätzlichen Einstellungen wie Datensammlern:]D;]A; >vstest.console.exe tests.dll /Settings:Local.RunSettings]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Target .Net Framework version to be used for test execution. ]D;]A; Valid values are ".NETFramework,Version=v4.5.1", ".NETCoreApp,Version=v1.0" etc.]D;]A; Other supported values are Framework40, Framework45, FrameworkCore10 and FrameworkUap10.]]>
-
- ]D;]A; Die .NET-Framework-Zielversion für die Testausführung. ]D;]A; Gültige Werte sind ".NETFramework,Version=v4.5.1", ".NETCoreApp,Version=v1.0" usw.]D;]A; Weitere unterstützte Werte: Framework40, Framework45, FrameworkCore10, FrameworkUap10.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ...]5D;]5D;]]>
-
- ...]5D;]5D;]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- \", value=\"\")]]>
-
- \", value=\"\")]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Lists all discovered tests from the given test container.]]>
-
- ]D;]A; Listet alle gefundenen Tests aus dem angegebenen Testcontainer auf.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The directory containing the binaries to run.]]>
-
- ]D;]A; Das Verzeichnis mit den auszuführenden Binärdateien.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Process Id of the Parent Process responsible for launching current process.]]>
-
- ]D;]A; Die Prozess-ID des übergeordneten Prozesses, der für das Starten des aktuellen Prozesses zuständig ist.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Target platform architecture to be used for test execution. ]D;]A; Valid values are x86, x64 and ARM.]]>
-
- ]D;]A; Zielplattformarchitektur für die Testausführung. ]D;]A; Gültige Werte sind x86, x64 und ARM.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The Port for socket connection and receiving the event messages.]]>
-
- ]D;]A; Der Port für die Socketverbindung und das Empfangen von Ereignismeldungen.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Read response file for more options.]]>
-
- ]D;]A; Antwortdatei mit weiteren Optionen lesen]]>
-
-
-
-
-
-
- ]]>
-
- ]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Settings to use when running tests.]]>
-
- ]D;]A; Einstellungen für die Ausführung der Tests.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Run tests with names that match the provided values. To provide multiple]D;]A; values, separate them by commas.]D;]A; Examples: /Tests:TestMethod1]D;]A; /Tests:TestMethod1,testMethod2]]>
-
- ]D;]A; Führt Tests aus, die mit den eingegebenen Werten übereinstimmen. Verwenden Sie zum]D;]A; Angeben mehrerer Werte Kommas als Trennzeichen.]D;]A; Beispiele: /Tests:TestMethod1]D;]A; /Tests:TestMethod1,testMethod2]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- .]]>
-
- .]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; This affects adapter loading behavior.]D;]A;]D;]A; Currently supported behaviors:]D;]A; - Explicit: Test Platform will only load adapters specified by /TestAdapterPath (or RunConfiguration.TestAdaptersPaths node). ]D;]A; If a specific adapter path is provided, adapter will be loaded; if a directory path is provided adapters directly in that folder will be loaded, unless Recursive option is also specified.]D;]A; If no adapter path is specified, test run will fail.]D;]A; This will imply /InIsolation switch and force the tests to be run in an isolated process.]D;]A; ]D;]A; - Default: Test Platform will load adapters is if this argument has not been specified. ]D;]A; It will pick up extensions from next to source, provided additional adapter paths and from the default directory.]D;]A;]D;]A; - DefaultRuntimeProviders: Load default runtime providers shipped with Test Platform. ]D;]A; If this is not specified when "Explicit" option is set, a test host provider need to be specified explicitly.]D;]A;]D;]A; - ExtensionsDirectory: Load adapters inside Extensions folder.]D;]A;]D;]A; - NextToSource: Load adapters next to source. ]D;]A;]D;]A; - Recursive: Recursively search folders when loading adapters. This requires "Explicit" or "NextToSource" to be specified too.]]>
-
- ]D;]A; Dies wirkt sich auf das Ladeverhalten des Adapters aus.]D;]A;]D;]A; Derzeit unterstützte Verhaltensweisen:]D;]A; – Explicit: Test Platform lädt nur Adapter, die durch /TestAdapterPath (oder runConfiguration.TestAdaptersPaths-Knoten) angegeben sind. ]D;]A; Wenn ein bestimmter Adapterpfad angegeben wird, wird der Adapter geladen. Wenn ein Verzeichnispfad bereitgestellt wird, werden Adapter direkt in diesen Ordner geladen, es sei denn, die Option „Rekursiv“ ist ebenfalls angegeben.]D;]A; Wenn kein Adapterpfad angegeben ist, schlägt der Testlauf fehl.]D;]A; Dies impliziert den Schalter „/InIsolation“, und es wird erzwungen, dass die Tests in einem isolierten Prozess ausgeführt werden.]D;]A;]D;]A; – Standard: Die Testplattform lädt Adapter, wenn dieses Argument nicht angegeben wurde. ]D;]A; Werden Erweiterungen von der Quelle aus abgerufen, werden zusätzliche Adapterpfade und das Standardverzeichnis bereitgestellt.]D;]A;]D;]A; – DefaultRuntimeProviders: StandardruntimeProvider laden, die im Lieferumfang der Testplattform enthalten sind. ]D;]A; Wenn dies nicht angegeben wird, wenn die Option "Explicit" festgelegt ist, muss ein Testhostanbieter explizit angegeben werden.]D;]A;]D;]A; – ExtensionsDirectory: Laden Sie Adapter in den Ordner "Extensions".]D;]A;]D;]A; – NextToSource: Laden Sie Adapter neben der Quelle. ]D;]A;]D;]A; – Rekursiv: Suchen Sie beim Laden von Adaptern rekursiv nach Ordnern. Hierfür muss auch „Explicit“ oder „NextToSource“ angegeben werden.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]]>
-
- ]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Run tests that match the given expression.]D;]A; is of the format Operator[|&]5D;]D;]A; where Operator is one of =, != or ~ (Operator ~ has 'contains']D;]A; semantics and is applicable for string properties like DisplayName).]D;]A; Parenthesis () can be used to group sub-expressions.]D;]A; Examples: /TestCaseFilter:"Priority=1"]D;]A; /TestCaseFilter:"(FullyQualifiedName~Nightly]D;]A; |Name=MyTestMethod)"]]>
-
- ]D;]A; Führt Tests aus, die mit dem angegebenen Ausdruck übereinstimmen.]D;]A; entspricht dem Format Operator[|&]5D;,]D;]A; wobei Operator entweder "=", "!=" oder "~" ist (Der Operator "~" verfügt über eine contains-]D;]A; Semantik und kann auf Zeichenfolgeneigenschaften, z. B. DisplayName, angewendet werden).]D;]A; Zum Gruppieren von Unterausdrücken können Klammern () verwendet werden.]D;]A; Beispiele: /TestCaseFilter:"Priority=1"]D;]A; /TestCaseFilter:"(FullyQualifiedName~Nightly]D;]A; |Name=MyTestMethod)"]]>
-
-
-
-
-
-
- = type.]D;]A; Examples: "Priority=1", "TestCategory=Nightly"]]>
-
- =.]D;]A; Beispiele: "Priority=1", "TestCategory=Nightly"]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/es/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/es/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 6d897d6812..0000000000
--- a/eng/Localize/lcl/es/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/es/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/es/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index a51318fb24..0000000000
--- a/eng/Localize/lcl/es/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/es/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/es/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 1ba1f18d73..0000000000
--- a/eng/Localize/lcl/es/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,116 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/es/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/es/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 6567e87f70..0000000000
--- a/eng/Localize/lcl/es/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true" property to project file.]]>
-
- true" al archivo del proyecto.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/es/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/es/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 49226cc502..0000000000
--- a/eng/Localize/lcl/es/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/es/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/es/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index f00e749ecf..0000000000
--- a/eng/Localize/lcl/es/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,372 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true is not supported for sources test run.]]>
-
- true no se admite para la serie de pruebas de orígenes.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/es/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/es/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 48a78f62b7..0000000000
--- a/eng/Localize/lcl/es/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,117 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/es/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/es/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 8e2e47af28..0000000000
--- a/eng/Localize/lcl/es/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,159 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/es/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/es/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 334cec5ecf..0000000000
--- a/eng/Localize/lcl/es/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,357 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/es/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/es/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index fe3dcf4614..0000000000
--- a/eng/Localize/lcl/es/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,174 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/es/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/es/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 7e6de65dc3..0000000000
--- a/eng/Localize/lcl/es/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/es/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl b/eng/Localize/lcl/es/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl
deleted file mode 100644
index 12f7f549cb..0000000000
--- a/eng/Localize/lcl/es/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl
+++ /dev/null
@@ -1,312 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/es/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl b/eng/Localize/lcl/es/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl
deleted file mode 100644
index 6ca4014d50..0000000000
--- a/eng/Localize/lcl/es/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/es/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl b/eng/Localize/lcl/es/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl
deleted file mode 100644
index c00289315d..0000000000
--- a/eng/Localize/lcl/es/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/es/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/es/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 3a92b1d568..0000000000
--- a/eng/Localize/lcl/es/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,627 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- .]]>
-
- .]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/es/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/es/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index e04261dcbd..0000000000
--- a/eng/Localize/lcl/es/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/es/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/es/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index ee0ddaa0eb..0000000000
--- a/eng/Localize/lcl/es/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,78 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/es/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl b/eng/Localize/lcl/es/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl
deleted file mode 100644
index 0bfb1ce411..0000000000
--- a/eng/Localize/lcl/es/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/es/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/es/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 15ba9c96e7..0000000000
--- a/eng/Localize/lcl/es/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,105 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/es/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/es/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index c80ffc4bca..0000000000
--- a/eng/Localize/lcl/es/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A;SettingsMigrator.exe ]D;]A;Examples:]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings E:\MyTest\MyNewRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings E:\MyTest\MyNewRunSettings.runsettings]]>
-
- ]D;]A;SettingsMigrator.exe ]D;]A;Ejemplos:]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings E:\MyTest\MyNewRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings E:\MyTest\MyNewRunSettings.runsettings]]>
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/es/src/vstest.console/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/es/src/vstest.console/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 1003eb4d58..0000000000
--- a/eng/Localize/lcl/es/src/vstest.console/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,1803 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The directory containing the temporary outputs.]]>
-
- ]D;]A; Directorio que contiene las salidas temporales.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Enables data collector for the test run. More info here : https://aka.ms/vstest-collect]]>
-
- ]D;]A; Habilita el recopilador de datos para la serie de pruebas. Más información aquí: https://aka.ms/vstest-collect]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The configuration the project is built for i.e. Debug/Release]]>
-
- ]D;]A; Configuración para la que se ha compilado el proyecto, es decir, Debug/Release]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Example: /DisableAutoFakes:true]]>
-
- ]D;]A; Ejemplo: /DisableAutoFakes:true]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Enable logs for test platform.]D;]A; Logs are written to the provided file.]D;]A;]D;]A; Change the trace level for logs as shown below]D;]A; Example: /Diag:;tracelevel=]D;]A; Allowed values for tracelevel: off, error, warning, info and verbose.]]>
-
- ]D;]A; Habilita los registros para la plataforma de pruebas.]D;]A; Los registros se escriben en el archivo proporcionado.]D;]A;]D;]A; Cambie el nivel de seguimiento de los registros tal y como se muestra a continuación]D;]A; Ejemplo: /Diag:;tracelevel=]D;]A; Valores permitidos para el nivel de seguimiento: off, error, warning, info y verbose.]]>
-
-
-
-
-
-
- ]D;]A; Specify a logger for test results. For example, to log results into a ]D;]A; Visual Studio Test Results File (TRX) use /logger:trx[;LogFileName=]5D;]D;]A; Creates file in TestResults directory with given LogFileName.]D;]A;]D;]A; Change the verbosity level in log messages for console logger as shown below]D;]A; Example: /logger:console;verbosity=]D;]A; Allowed values for verbosity: quiet, minimal, normal and detailed.]D;]A;]D;]A; Change the diagnostic level prefix for console logger as shown below]D;]A; Example: /logger:console;prefix=]D;]A; More info on Console Logger here : https://aka.ms/console-logger]]>
-
- ]D;]A; Especifica un registrador para los resultados de las pruebas. Por ejemplo, para registrar los resultados en ]D;]A; un archivo de resultados de pruebas de Visual Studio (TRX) use /logger:trx[;LogFileName=]5D;]D;]A; Crea un archivo en el directorio TestResults con el valor LogFileName dado.]D;]A;]D;]A; Cambie el nivel de detalle en los mensajes de registro para el registrador de consola tal y como se muestra a continuación]D;]A; Ejemplo: /logger:console;verbosity=]D;]A; Valores permitidos para el nivel de detalle: quiet, minimal, normal y detailed.]D;]A;]D;]A; Cambie el prefijo de nivel de diagnóstico para el registrador de consola tal y como se muestra a continuación]D;]A; Ejemplo: /logger:console;prefix=]D;]A; Aquí encontrará más información sobre el registrador de consola: https://aka.ms/console-logger]]>
-
-
-
-
-
-
- ]D;]A; Specify a logger for test results. For example, to log results into a ]D;]A; Visual Studio Test Results File (TRX) use /logger:trx[;LogFileName=]5D;]D;]A; Creates file in TestResults directory with given LogFileName.]D;]A;]D;]A; Change the verbosity level in log messages for console logger as shown below]D;]A; Example: /logger:console;verbosity=]D;]A; Allowed values for verbosity: quiet, minimal, normal and detailed.]D;]A;]D;]A; Change the diagnostic level prefix for console logger as shown below]D;]A; Example: /logger:console;prefix=]D;]A; More info on Console Logger here : https://aka.ms/console-logger]]>
-
- ]D;]A; Especifica un registrador para los resultados de las pruebas. Por ejemplo, para registrar los resultados en ]D;]A; un archivo de resultados de pruebas de Visual Studio (TRX) use /logger:trx[;LogFileName=]5D;]D;]A; Crea un archivo en el directorio TestResults con el valor LogFileName dado.]D;]A;]D;]A; Cambie el nivel de detalle en los mensajes de registro para el registrador de consola tal y como se muestra a continuación]D;]A; Ejemplo: /logger:console;verbosity=]D;]A; Valores permitidos para el nivel de detalle: quiet, minimal, normal y detailed.]D;]A;]D;]A; Cambie el prefijo de nivel de diagnóstico para el registrador de consola tal y como se muestra a continuación]D;]A; Ejemplo: /logger:console;prefix=]D;]A; Aquí encontrará más información sobre el registrador de consola: https://aka.ms/console-logger]]>
-
-
-
-
-
-
- =]D;]A; Sets the value of an environment variable. Creates the variable if it does not exist, overrides if it does. This will imply /InIsolation switch and force the tests to be run in an isolated process.]D;]A; ]D;]A; This argument can be specified multiple times to provide multiple variables.]D;]A;]D;]A; Example: -e:VARIABLE1=VALUE1]D;]A; -e:ANOTHER_VARIABLE="VALUE WITH SPACES"]D;]A; -e:ANOTHER_VARIABLE="VALUE;seperated with;semicolons"]]>
-
- =]D;]A; Establece el valor de una variable de entorno. Crea la variable si no existe o la reemplaza en caso de que exista. Esto implica el conmutador /InIsolation y fuerza la ejecución de las pruebas en un proceso aislado.]D;]A; ]D;]A; Este argumento se puede especificar varias veces para proporcionar múltiples variables.]D;]A;]D;]A; Ejemplo: -e:VARIABLE1=VALOR1]D;]A; -e:OTRA_VARIABLE="VALOR CON ESPACIOS"]D;]A; -e:OTRA_VARIABLE="VALOR;separado por;puntoycoma"]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- vstest.console.exe tests.dll ]D;]A; To run tests with additional settings such as data collectors:]D;]A; >vstest.console.exe tests.dll /Settings:Local.RunSettings]]>
-
- vstest.console.exe tests.dll ]D;]A; Para ejecutar pruebas con configuración adicional como recolectores de datos:]D;]A; >vstest.console.exe tests.dll /Settings:Local.RunSettings]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Target .Net Framework version to be used for test execution. ]D;]A; Valid values are ".NETFramework,Version=v4.5.1", ".NETCoreApp,Version=v1.0" etc.]D;]A; Other supported values are Framework40, Framework45, FrameworkCore10 and FrameworkUap10.]]>
-
- ]D;]A; Versión de .NET Framework de destino que se usará para la ejecución de pruebas. ]D;]A; Los valores válidos son ".NETFramework,Version=v4.5.1", ".NETCoreApp,Version=v1.0", etc.]D;]A; Otros valores admitidos son Framework40, Framework45, FrameworkCore10 y FrameworkUap10.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ...]5D;]5D;]]>
-
- ...]5D;]5D;]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- \", value=\"\")]]>
-
- \", value=\"\")]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Lists all discovered tests from the given test container.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The directory containing the binaries to run.]]>
-
- ]D;]A; Directorio que contiene los binarios que se van a ejecutar.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Process Id of the Parent Process responsible for launching current process.]]>
-
- ]D;]A; Identificador del proceso primario responsable del inicio del proceso actual.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Target platform architecture to be used for test execution. ]D;]A; Valid values are x86, x64 and ARM.]]>
-
- ]D;]A; Arquitectura de la plataforma de destino que se usará para la ejecución de pruebas. ]D;]A; Los valores válidos son x86, x64 y ARM.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The Port for socket connection and receiving the event messages.]]>
-
- ]D;]A; Puerto para la conexión de socket y la recepción de mensajes de eventos.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Read response file for more options.]]>
-
- ]D;]A; Leer el archivo de respuesta para ver más opciones.]]>
-
-
-
-
-
-
- ]]>
-
- ]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Settings to use when running tests.]]>
-
- ]D;]A; Configuración que se usará cuando se ejecuten pruebas.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Run tests with names that match the provided values. To provide multiple]D;]A; values, separate them by commas.]D;]A; Examples: /Tests:TestMethod1]D;]A; /Tests:TestMethod1,testMethod2]]>
-
- ]D;]A; Ejecuta las pruebas con nombres que coinciden con los valores proporcionados. Para proporcionar varios]D;]A; valores, sepárelos con comas]D;]A; Ejemplos: /Tests:MétodoPrueba1]D;]A; /Tests:MétodoPrueba1,MétodoPrueba2]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- .]]>
-
- .]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; This affects adapter loading behavior.]D;]A;]D;]A; Currently supported behaviors:]D;]A; - Explicit: Test Platform will only load adapters specified by /TestAdapterPath (or RunConfiguration.TestAdaptersPaths node). ]D;]A; If a specific adapter path is provided, adapter will be loaded; if a directory path is provided adapters directly in that folder will be loaded, unless Recursive option is also specified.]D;]A; If no adapter path is specified, test run will fail.]D;]A; This will imply /InIsolation switch and force the tests to be run in an isolated process.]D;]A; ]D;]A; - Default: Test Platform will load adapters is if this argument has not been specified. ]D;]A; It will pick up extensions from next to source, provided additional adapter paths and from the default directory.]D;]A;]D;]A; - DefaultRuntimeProviders: Load default runtime providers shipped with Test Platform. ]D;]A; If this is not specified when "Explicit" option is set, a test host provider need to be specified explicitly.]D;]A;]D;]A; - ExtensionsDirectory: Load adapters inside Extensions folder.]D;]A;]D;]A; - NextToSource: Load adapters next to source. ]D;]A;]D;]A; - Recursive: Recursively search folders when loading adapters. This requires "Explicit" or "NextToSource" to be specified too.]]>
-
- ]D;]A; Esto afecta al comportamiento de carga del adaptador.]D;]A;]D;]A; Comportamientos admitidos actualmente:]D;]A; - Explícito: Test Platform solo cargará los adaptadores especificados por /TestAdapterPath (o el nodo RunConfiguration.TestAdaptersPaths). ]D;]A; Si se proporciona una ruta de acceso específica del adaptador, se cargará el adaptador; si se proporciona una ruta de acceso del directorio se cargarán los adaptadores directamente en esa carpeta, a menos que también se especifique la opción Recursiva.]D;]A; Si no se especifica ninguna ruta de acceso de adaptador, se producirá un error en la serie de pruebas.]D;]A; Esto implicará el modificador /InIsolation y forzará la ejecución de las pruebas en un proceso aislado.]D;]A; ]D;]A; - Valor predeterminado: Test Platform cargará los adaptadores si no se ha especificado este argumento. ]D;]A; Recogerá las extensiones del lado del origen, rutas de acceso de adaptador adicionales proporcionadas y del directorio predeterminado.]D;]A;]D;]A; - DefaultRuntimeProviders: carga los proveedores de tiempo de ejecución predeterminados incluidos con Test Platform. ]D;]A; Si no se especifica esta opción cuando se establece la opción "Explicito", es necesario especificar explícitamente un proveedor de host de prueba.]D;]A;]D;]A; - ExtensionsDirectory: carga los adaptadores en la carpeta Extensiones.]D;]A;]D;]A; - NextToSource: cargar los adaptadores junto al origen. ]D;]A;]D;]A; - Recursivo: busca carpetas de forma recursiva al cargar los adaptadores. Esto requiere que también se especifique "Explícito" o "NextToSource".]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]]>
-
- ]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Run tests that match the given expression.]D;]A; is of the format Operator[|&]5D;]D;]A; where Operator is one of =, != or ~ (Operator ~ has 'contains']D;]A; semantics and is applicable for string properties like DisplayName).]D;]A; Parenthesis () can be used to group sub-expressions.]D;]A; Examples: /TestCaseFilter:"Priority=1"]D;]A; /TestCaseFilter:"(FullyQualifiedName~Nightly]D;]A; |Name=MyTestMethod)"]]>
-
- ]D;]A; Ejecuta pruebas que coinciden con la expresión dada.]D;]A; tiene el formato Operador[|&]5D;]D;]A; donde Operador es uno de =, != o ~ (el operador ~ tiene la semántica]D;]A; "contiene" y es aplicable a propiedades de cadena como DisplayName).]D;]A; Se pueden usar paréntesis () para agrupar subexpresiones.]D;]A; Ejemplos: /TestCaseFilter:"Priority=1"]D;]A; /TestCaseFilter:"(FullyQualifiedName~Nightly]D;]A; |Name=MiMétodoDePrueba)"]]>
-
-
-
-
-
-
- = type.]D;]A; Examples: "Priority=1", "TestCategory=Nightly"]]>
-
- =.]D;]A; Ejemplos: "Priority=1", "TestCategory=Nightly"]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/fr/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/fr/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 88cdc102ab..0000000000
--- a/eng/Localize/lcl/fr/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/fr/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/fr/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index f4568dd423..0000000000
--- a/eng/Localize/lcl/fr/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index d5e6215dfd..0000000000
--- a/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,116 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 8e52471d31..0000000000
--- a/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true" property to project file.]]>
-
- true" au fichier projet.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index c2bde3d657..0000000000
--- a/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index f57e02f415..0000000000
--- a/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,372 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true is not supported for sources test run.]]>
-
- true n’est pas prise en charge pour la série de tests sources.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 77d4d9ea3a..0000000000
--- a/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,117 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 4292787eb4..0000000000
--- a/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,159 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 1d79b60210..0000000000
--- a/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,357 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 07e9c6ac71..0000000000
--- a/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,174 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 42be7fba41..0000000000
--- a/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl b/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl
deleted file mode 100644
index 667c71ddeb..0000000000
--- a/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl
+++ /dev/null
@@ -1,312 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl b/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl
deleted file mode 100644
index edcbd8aa98..0000000000
--- a/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl b/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl
deleted file mode 100644
index 0aa727db04..0000000000
--- a/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 41ea770b30..0000000000
--- a/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,627 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- .]]>
-
- .]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index eed3ab1bb5..0000000000
--- a/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 32f34cc009..0000000000
--- a/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,78 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl b/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl
deleted file mode 100644
index 1396523f4b..0000000000
--- a/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index b5deb5da5b..0000000000
--- a/eng/Localize/lcl/fr/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,105 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/fr/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/fr/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 6ee9a298c5..0000000000
--- a/eng/Localize/lcl/fr/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A;SettingsMigrator.exe ]D;]A;Examples:]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings E:\MyTest\MyNewRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings E:\MyTest\MyNewRunSettings.runsettings]]>
-
- ]D;]A;SettingsMigrator.exe ]D;]A;Exemples :]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings E:\MyTest\MyNewRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings E:\MyTest\MyNewRunSettings.runsettings]]>
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/fr/src/vstest.console/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/fr/src/vstest.console/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index e6d326742e..0000000000
--- a/eng/Localize/lcl/fr/src/vstest.console/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,1794 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The directory containing the temporary outputs.]]>
-
- ]D;]A; Répertoire contenant les sorties temporaires.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Enables data collector for the test run. More info here : https://aka.ms/vstest-collect]]>
-
- ]D;]A; Active le collecteur de données pour la série de tests. Plus d'informations ici : https://aka.ms/vstest-collect]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The configuration the project is built for i.e. Debug/Release]]>
-
- ]D;]A; Configuration pour laquelle le projet est généré. Exemple : Debug/Release]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Example: /DisableAutoFakes:true]]>
-
- ]D;]A; Exemple : /DisableAutoFakes:true]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Enable logs for test platform.]D;]A; Logs are written to the provided file.]D;]A;]D;]A; Change the trace level for logs as shown below]D;]A; Example: /Diag:;tracelevel=]D;]A; Allowed values for tracelevel: off, error, warning, info and verbose.]]>
-
- ]D;]A; Permet d'activer les journaux pour la plateforme de test.]D;]A; Les journaux sont écrits dans le fichier fourni.]D;]A;]D;]A; Change le niveau de trace des journaux comme indiqué ci-dessous]D;]A; Exemple : /Diag:;tracelevel=<"verbose" par défaut>]D;]A; Valeurs autorisées pour tracelevel : off, error, warning, info et verbose.]]>
-
-
-
-
-
-
- ]D;]A; Specify a logger for test results. For example, to log results into a ]D;]A; Visual Studio Test Results File (TRX) use /logger:trx[;LogFileName=]5D;]D;]A; Creates file in TestResults directory with given LogFileName.]D;]A;]D;]A; Change the verbosity level in log messages for console logger as shown below]D;]A; Example: /logger:console;verbosity=]D;]A; Allowed values for verbosity: quiet, minimal, normal and detailed.]D;]A;]D;]A; Change the diagnostic level prefix for console logger as shown below]D;]A; Example: /logger:console;prefix=]D;]A; More info on Console Logger here : https://aka.ms/console-logger]]>
-
- ]D;]A; Spécifiez un journaliseur pour les résultats des tests. Par exemple, pour journaliser des résultats dans un ]D;]A; fichier de résultats des tests Visual Studio (TRX), utilisez /logger:trx[;LogFileName=]5D;]D;]A; Crée un fichier dans le répertoire TestResults avec le LogFileName indiqué.]D;]A;]D;]A; Change le niveau de verbosité des messages du journaliseur de la console, comme indiqué ci-dessous]D;]A; Exemple : /logger:console;verbosity=<"minimal" par défaut>]D;]A; Valeurs autorisées pour verbosity : quiet, minimal, normal et detailed.]D;]A;]D;]A; Change le préfixe du niveau de diagnostic pour le journaliseur de la console, comme indiqué ci-dessous]D;]A; Exemple : /logger:console;prefix=<"false" par défaut>]D;]A; En savoir plus sur le journaliseur de la console : https://aka.ms/console-logger]]>
-
-
-
-
-
-
- ]D;]A; Specify a logger for test results. For example, to log results into a ]D;]A; Visual Studio Test Results File (TRX) use /logger:trx[;LogFileName=]5D;]D;]A; Creates file in TestResults directory with given LogFileName.]D;]A;]D;]A; Change the verbosity level in log messages for console logger as shown below]D;]A; Example: /logger:console;verbosity=]D;]A; Allowed values for verbosity: quiet, minimal, normal and detailed.]D;]A;]D;]A; Change the diagnostic level prefix for console logger as shown below]D;]A; Example: /logger:console;prefix=]D;]A; More info on Console Logger here : https://aka.ms/console-logger]]>
-
- ]D;]A; Spécifiez un journaliseur pour les résultats des tests. Par exemple, pour journaliser des résultats dans un ]D;]A; fichier de résultats des tests Visual Studio (TRX), utilisez /logger:trx[;LogFileName=]5D;]D;]A; Crée un fichier dans le répertoire TestResults avec le LogFileName indiqué.]D;]A;]D;]A; Change le niveau de verbosité des messages du journaliseur de la console, comme indiqué ci-dessous]D;]A; Exemple : /logger:console;verbosity=<"normal" par défaut>]D;]A; Valeurs autorisées pour verbosity : quiet, minimal, normal et detailed.]D;]A;]D;]A; Change le préfixe du niveau de diagnostic pour le journaliseur de la console, comme indiqué ci-dessous]D;]A; Exemple : /logger:console;prefix=<"false" par défaut>]D;]A; En savoir plus sur le journaliseur de la console : https://aka.ms/console-logger]]>
-
-
-
-
-
-
- =]D;]A; Sets the value of an environment variable. Creates the variable if it does not exist, overrides if it does. This will imply /InIsolation switch and force the tests to be run in an isolated process.]D;]A; ]D;]A; This argument can be specified multiple times to provide multiple variables.]D;]A;]D;]A; Example: -e:VARIABLE1=VALUE1]D;]A; -e:ANOTHER_VARIABLE="VALUE WITH SPACES"]D;]A; -e:ANOTHER_VARIABLE="VALUE;seperated with;semicolons"]]>
-
- =]D;]A; Définit la valeur d'une variable d'environnement. Crée la variable si elle n'existe pas, et la remplace si elle existe. Cela implique l'utilisation du commutateur /InIsolation et l'exécution forcée des tests dans un processus isolé.]D;]A; ]D;]A; Vous pouvez spécifier cet argument plusieurs fois pour fournir plusieurs variables.]D;]A;]D;]A; Exemple : -e:VARIABLE1=VALEUR1]D;]A; -e:AUTRE_VARIABLE="VALEUR AVEC ESPACES"]D;]A; -e:AUTRE_VARIABLE="VALEUR;séparée;par;des;points-virgules"]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- vstest.console.exe tests.dll ]D;]A; To run tests with additional settings such as data collectors:]D;]A; >vstest.console.exe tests.dll /Settings:Local.RunSettings]]>
-
- vstest.console.exe tests.dll ]D;]A; Pour exécuter les tests avec des paramètres supplémentaires, par exemple des collecteurs de données :]D;]A; >vstest.console.exe tests.dll /Settings:Local.RunSettings]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Target .Net Framework version to be used for test execution. ]D;]A; Valid values are ".NETFramework,Version=v4.5.1", ".NETCoreApp,Version=v1.0" etc.]D;]A; Other supported values are Framework40, Framework45, FrameworkCore10 and FrameworkUap10.]]>
-
- ]D;]A; Version cible du .Net Framework à utiliser pour l'exécution des tests. ]D;]A; Les valeurs valides sont : ".NETFramework,Version=v4.5.1", ".NETCoreApp,Version=v1.0", etc.]D;]A; Les autres valeurs prises en charge sont Framework40, Framework45, FrameworkCore10 et FrameworkUap10.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ...]5D;]5D;]]>
-
- ...]5D;]5D;]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- \", value=\"\")]]>
-
- \", value=\"\")]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Lists all discovered tests from the given test container.]]>
-
- ]D;]A; Liste tous les tests découverts dans le conteneur de tests spécifié.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The directory containing the binaries to run.]]>
-
- ]D;]A; Répertoire contenant les fichiers binaires à exécuter.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Process Id of the Parent Process responsible for launching current process.]]>
-
- ]D;]A; ID de processus du processus parent chargé de lancer le processus actuel.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Target platform architecture to be used for test execution. ]D;]A; Valid values are x86, x64 and ARM.]]>
-
- ]D;]A; Architecture de plateforme cible à utiliser pour l'exécution des tests. ]D;]A; Les valeurs valides sont x86, x64 et ARM.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The Port for socket connection and receiving the event messages.]]>
-
- ]D;]A; Port de connexion du socket et de réception des messages d'événement.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Read response file for more options.]]>
-
- ]D;]A; Consultez le fichier réponse pour plus d'options.]]>
-
-
-
-
-
-
- ]]>
-
- ]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Settings to use when running tests.]]>
-
- ]D;]A; Paramètres à utiliser durant l'exécution des tests.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Run tests with names that match the provided values. To provide multiple]D;]A; values, separate them by commas.]D;]A; Examples: /Tests:TestMethod1]D;]A; /Tests:TestMethod1,testMethod2]]>
-
- ]D;]A; Permet d'exécuter les tests dont les noms correspondent aux valeurs fournies. Pour fournir plusieurs]D;]A; valeurs, séparez-les par des virgules.]D;]A; Exemples : /Tests:TestMethod1]D;]A; /Tests:TestMethod1,testMethod2]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- .]]>
-
- .]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; This affects adapter loading behavior.]D;]A;]D;]A; Currently supported behaviors:]D;]A; - Explicit: Test Platform will only load adapters specified by /TestAdapterPath (or RunConfiguration.TestAdaptersPaths node). ]D;]A; If a specific adapter path is provided, adapter will be loaded; if a directory path is provided adapters directly in that folder will be loaded, unless Recursive option is also specified.]D;]A; If no adapter path is specified, test run will fail.]D;]A; This will imply /InIsolation switch and force the tests to be run in an isolated process.]D;]A; ]D;]A; - Default: Test Platform will load adapters is if this argument has not been specified. ]D;]A; It will pick up extensions from next to source, provided additional adapter paths and from the default directory.]D;]A;]D;]A; - DefaultRuntimeProviders: Load default runtime providers shipped with Test Platform. ]D;]A; If this is not specified when "Explicit" option is set, a test host provider need to be specified explicitly.]D;]A;]D;]A; - ExtensionsDirectory: Load adapters inside Extensions folder.]D;]A;]D;]A; - NextToSource: Load adapters next to source. ]D;]A;]D;]A; - Recursive: Recursively search folders when loading adapters. This requires "Explicit" or "NextToSource" to be specified too.]]>
-
- ]D;]A; Cela affecte le comportement de chargement de l’adaptateur.]D;]A;]D;]A;Comportements actuellement pris en charge :]D;]A; - Explicite : Test Platform charge uniquement les adaptateurs spécifiés par /TestAdapterPath (ou le nœud RunConfiguration.TestAdaptersPaths). ]D;]A; Si un chemin d’adaptateur spécifique est fourni, l’adaptateur est chargé ; si un chemin d’accès au répertoire est fourni, les adaptateurs directement dans ce dossier sont chargés, sauf si l’option Récursive est également spécifiée.]D;]A; Si aucun chemin d’adaptateur n’est spécifié, la série de tests échoue.]D;]A; Cela implique le commutateur /InIsolation et force l’exécution des tests dans un processus isolé.]D;]A; ]D;]A;- Valeur par défaut : la plateforme de test charge les adaptateurs si cet argument n’a pas été spécifié. ]D;]A; Il va récupérer les extensions à côté de la source, les chemins d’adaptateur supplémentaires fournis et le répertoire par défaut.]D;]A;]D;]A;- DefaultRuntimeProviders : chargez les fournisseurs de runtime par défaut livrés avec la plateforme de test. ]D;]A; Si cette option n’est pas spécifiée lorsque l’option « Explicit » est définie, un fournisseur d’hôtes de test doit être spécifié explicitement.]D;]A;]D;]A;- ExtensionsDirectory : charge les adaptateurs dans le dossier Extensions.]D;]A;]D;]A;- NextToSource : chargez les adaptateurs à côté de la source. ]D;]A;]D;]A;- Récursif : recherche récursive des dossiers lors du chargement des adaptateurs. Pour ce faire, vous devez spécifier également « Explicit » ou « NextToSource ».]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]]>
-
- ]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Run tests that match the given expression.]D;]A; is of the format Operator[|&]5D;]D;]A; where Operator is one of =, != or ~ (Operator ~ has 'contains']D;]A; semantics and is applicable for string properties like DisplayName).]D;]A; Parenthesis () can be used to group sub-expressions.]D;]A; Examples: /TestCaseFilter:"Priority=1"]D;]A; /TestCaseFilter:"(FullyQualifiedName~Nightly]D;]A; |Name=MyTestMethod)"]]>
-
- ]D;]A; Permet d'exécuter les tests qui correspondent à l'expression indiquée.]D;]A; est au format Operator[|&]5D;]D;]A; où Operator correspond à =, != ou ~ (Operator ~ utilise la sémantique 'contient']D;]A; et s'applique aux propriétés de chaîne telles que DisplayName).]D;]A; Vous pouvez utiliser des parenthèses () pour regrouper les sous-expressions.]D;]A; Exemples : /TestCaseFilter:"Priority=1"]D;]A; /TestCaseFilter:"(FullyQualifiedName~Nightly]D;]A; |Name=MyTestMethod)"]]>
-
-
-
-
-
-
- = type.]D;]A; Examples: "Priority=1", "TestCategory=Nightly"]]>
-
- =.]D;]A; Exemples : "Priority=1", "TestCategory=Nightly"]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/it/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/it/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 31e345bbb0..0000000000
--- a/eng/Localize/lcl/it/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/it/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/it/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index db8d9a5707..0000000000
--- a/eng/Localize/lcl/it/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/it/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/it/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 3d11d0927f..0000000000
--- a/eng/Localize/lcl/it/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,116 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/it/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/it/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 4bf1f6083c..0000000000
--- a/eng/Localize/lcl/it/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true" property to project file.]]>
-
- true" al file di progetto.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/it/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/it/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 28f9c881e2..0000000000
--- a/eng/Localize/lcl/it/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/it/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/it/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index cca92221f6..0000000000
--- a/eng/Localize/lcl/it/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,372 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true is not supported for sources test run.]]>
-
- true non è supportato per l'esecuzione dei test delle origini.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/it/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/it/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 71a0cf0a2b..0000000000
--- a/eng/Localize/lcl/it/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,117 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/eng/Localize/lcl/it/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/it/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 2717e7ab00..0000000000
--- a/eng/Localize/lcl/it/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,159 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/it/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/it/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index af0811fff2..0000000000
--- a/eng/Localize/lcl/it/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,357 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/it/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/it/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 2960ef6e19..0000000000
--- a/eng/Localize/lcl/it/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,177 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/it/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/it/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index d707e72515..0000000000
--- a/eng/Localize/lcl/it/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/it/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl b/eng/Localize/lcl/it/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl
deleted file mode 100644
index 6926eb57ad..0000000000
--- a/eng/Localize/lcl/it/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl
+++ /dev/null
@@ -1,312 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/it/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl b/eng/Localize/lcl/it/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl
deleted file mode 100644
index 7eba9c2f95..0000000000
--- a/eng/Localize/lcl/it/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/it/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl b/eng/Localize/lcl/it/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl
deleted file mode 100644
index e715a2abc0..0000000000
--- a/eng/Localize/lcl/it/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/it/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/it/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index bd20a30d15..0000000000
--- a/eng/Localize/lcl/it/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,627 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- .]]>
-
- .]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/it/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/it/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 0274b4eb85..0000000000
--- a/eng/Localize/lcl/it/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/it/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/it/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 920ca05a7e..0000000000
--- a/eng/Localize/lcl/it/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,78 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/it/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl b/eng/Localize/lcl/it/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl
deleted file mode 100644
index f55b4a75dc..0000000000
--- a/eng/Localize/lcl/it/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/it/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/it/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index bd6ad82540..0000000000
--- a/eng/Localize/lcl/it/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,105 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/it/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/it/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 182c6fc0dd..0000000000
--- a/eng/Localize/lcl/it/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A;SettingsMigrator.exe ]D;]A;Examples:]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings E:\MyTest\MyNewRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings E:\MyTest\MyNewRunSettings.runsettings]]>
-
- ]D;]A;SettingsMigrator.exe ]D;]A;Esempi:]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings E:\MyTest\MyNewRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings E:\MyTest\MyNewRunSettings.runsettings]]>
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/it/src/vstest.console/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/it/src/vstest.console/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 4736deebeb..0000000000
--- a/eng/Localize/lcl/it/src/vstest.console/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,1803 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The directory containing the temporary outputs.]]>
-
- ]D;]A; Directory che contiene gli output temporanei.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Enables data collector for the test run. More info here : https://aka.ms/vstest-collect]]>
-
- ]D;]A; Abilita l'agente di raccolta dati per l'esecuzione dei test. Per altre informazioni, vedere: https://aka.ms/vstest-collect]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The configuration the project is built for i.e. Debug/Release]]>
-
- ]D;]A; Configurazione per cui viene compilato il progetto, ad esempio Debug/Release]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Example: /DisableAutoFakes:true]]>
-
- ]D;]A; Esempio: /DisableAutoFakes:true]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Enable logs for test platform.]D;]A; Logs are written to the provided file.]D;]A;]D;]A; Change the trace level for logs as shown below]D;]A; Example: /Diag:;tracelevel=]D;]A; Allowed values for tracelevel: off, error, warning, info and verbose.]]>
-
- ]D;]A; Abilita i log per la piattaforma di test.]D;]A; I log vengono scritti nel file specificato.]D;]A;]D;]A; Modifica il livello di traccia per i log come illustrato di seguito:]D;]A; Esempio: /Diag:;tracelevel=]D;]A; Valori consentiti per tracelevel: off, error, warning, info e verbose.]]>
-
-
-
-
-
-
- ]D;]A; Specify a logger for test results. For example, to log results into a ]D;]A; Visual Studio Test Results File (TRX) use /logger:trx[;LogFileName=]5D;]D;]A; Creates file in TestResults directory with given LogFileName.]D;]A;]D;]A; Change the verbosity level in log messages for console logger as shown below]D;]A; Example: /logger:console;verbosity=]D;]A; Allowed values for verbosity: quiet, minimal, normal and detailed.]D;]A;]D;]A; Change the diagnostic level prefix for console logger as shown below]D;]A; Example: /logger:console;prefix=]D;]A; More info on Console Logger here : https://aka.ms/console-logger]]>
-
- ]D;]A; Specifica un logger per i risultati dei test. Ad esempio, per registrare risultati in un ]D;]A; file di risultati dei test di Visual Studio (TRX), usare /logger:trx[;LogFileName=]5D;]D;]A; Crea nella directory TestResults il file con il valore specificato per LogFileName.]D;]A;]D;]A; Consente di cambiare il livello di dettaglio nei messaggi del log per il logger di console come illustrato di seguito:]D;]A; Esempio: /logger:console;verbosity=]D;]A; Valori consentiti per verbosity: quiet, minimal, normal e detailed.]D;]A;]D;]A; Consente di cambiare il prefisso del livello di diagnostica per il logger di console come illustrato di seguito:]D;]A; Esempio: /logger:console;prefix=]D;]A; Per altre informazioni sul logger di console, vedere: https://aka.ms/console-logger]]>
-
-
-
-
-
-
- ]D;]A; Specify a logger for test results. For example, to log results into a ]D;]A; Visual Studio Test Results File (TRX) use /logger:trx[;LogFileName=]5D;]D;]A; Creates file in TestResults directory with given LogFileName.]D;]A;]D;]A; Change the verbosity level in log messages for console logger as shown below]D;]A; Example: /logger:console;verbosity=]D;]A; Allowed values for verbosity: quiet, minimal, normal and detailed.]D;]A;]D;]A; Change the diagnostic level prefix for console logger as shown below]D;]A; Example: /logger:console;prefix=]D;]A; More info on Console Logger here : https://aka.ms/console-logger]]>
-
- ]D;]A; Specifica un logger per i risultati dei test. Ad esempio, per registrare risultati in un ]D;]A; file di risultati dei test di Visual Studio (TRX), usare /logger:trx[;LogFileName=]5D;]D;]A; Crea nella directory TestResults il file con il valore specificato per LogFileName.]D;]A;]D;]A; Consente di cambiare il livello di dettaglio nei messaggi del log per il logger di console come illustrato di seguito:]D;]A; Esempio: /logger:console;verbosity=]D;]A; Valori consentiti per verbosity: quiet, minimal, normal e detailed.]D;]A;]D;]A; Consente di cambiare il prefisso del livello di diagnostica per il logger di console come illustrato di seguito:]D;]A; Esempio: /logger:console;prefix=]D;]A; Per altre informazioni sul logger di console, vedere: https://aka.ms/console-logger]]>
-
-
-
-
-
-
- =]D;]A; Sets the value of an environment variable. Creates the variable if it does not exist, overrides if it does. This will imply /InIsolation switch and force the tests to be run in an isolated process.]D;]A; ]D;]A; This argument can be specified multiple times to provide multiple variables.]D;]A;]D;]A; Example: -e:VARIABLE1=VALUE1]D;]A; -e:ANOTHER_VARIABLE="VALUE WITH SPACES"]D;]A; -e:ANOTHER_VARIABLE="VALUE;seperated with;semicolons"]]>
-
- =]D;]A; Imposta il valore di una variabile di ambiente. Crea la variabile se non esiste e la sostituisce se esiste. Implica l'opzione /InIsolation e forza l'esecuzione dei test in un processo isolato.]D;]A; ]D;]A; È possibile specificare più volte questo argomento per fornire più variabili.]D;]A;]D;]A; Esempio: -e:VARIABILE1=VALORE1]D;]A; -e:ALTRA_VARIABILE="VALORE CON SPAZI"]D;]A; -e:ALTRA_VARIABILE="VALORE;delimitato da;punti e virgola"]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- vstest.console.exe tests.dll ]D;]A; To run tests with additional settings such as data collectors:]D;]A; >vstest.console.exe tests.dll /Settings:Local.RunSettings]]>
-
- vstest.console.exe tests.dll ]D;]A; Per eseguire test con impostazioni aggiuntive, quali agenti di raccolta dati:]D;]A; >vstest.console.exe tests.dll /Settings:Local.RunSettings]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Target .Net Framework version to be used for test execution. ]D;]A; Valid values are ".NETFramework,Version=v4.5.1", ".NETCoreApp,Version=v1.0" etc.]D;]A; Other supported values are Framework40, Framework45, FrameworkCore10 and FrameworkUap10.]]>
-
- ]D;]A; Versione di .NET Framework di destinazione da usare per l'esecuzione dei test. ]D;]A; Valori validi: ".NETFramework,Version=v4.5.1", ".NETCoreApp,Version=v1.0" e così via.]D;]A; Altri valori supportati: Framework40, Framework45, FrameworkCore10 e FrameworkUap10.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ...]5D;]5D;]]>
-
- ...]5D;]5D;]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- \", value=\"\")]]>
-
- \", value=\"\")]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Lists all discovered tests from the given test container.]]>
-
- ]D;]A; Elenca tutti i test individuati dal contenitore di test specificato.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The directory containing the binaries to run.]]>
-
- ]D;]A; Directory contenente i file binari da eseguire.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Process Id of the Parent Process responsible for launching current process.]]>
-
- ]D;]A; ID del processo padre responsabile dell'avvio del processo corrente.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Target platform architecture to be used for test execution. ]D;]A; Valid values are x86, x64 and ARM.]]>
-
- ]D;]A; Architettura della piattaforma di destinazione da usare per l'esecuzione dei test. ]D;]A; Valori validi: x86, x64 e ARM.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The Port for socket connection and receiving the event messages.]]>
-
- ]D;]A; Porta per la connessione socket e la ricezione dei messaggi dell'evento.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Read response file for more options.]]>
-
- ]D;]A; Legge il file di risposta per altre opzioni.]]>
-
-
-
-
-
-
- ]]>
-
- ]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Settings to use when running tests.]]>
-
- ]D;]A; Impostazioni da usare per l'esecuzione dei test.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Run tests with names that match the provided values. To provide multiple]D;]A; values, separate them by commas.]D;]A; Examples: /Tests:TestMethod1]D;]A; /Tests:TestMethod1,testMethod2]]>
-
- ]D;]A; Esegue test con nomi corrispondenti ai valori specificati. Per specificare più]D;]A; valori, separarli con virgole.]D;]A; Esempi: /Tests:TestMethod1]D;]A; /Tests:TestMethod1,testMethod2]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- .]]>
-
- .]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; This affects adapter loading behavior.]D;]A;]D;]A; Currently supported behaviors:]D;]A; - Explicit: Test Platform will only load adapters specified by /TestAdapterPath (or RunConfiguration.TestAdaptersPaths node). ]D;]A; If a specific adapter path is provided, adapter will be loaded; if a directory path is provided adapters directly in that folder will be loaded, unless Recursive option is also specified.]D;]A; If no adapter path is specified, test run will fail.]D;]A; This will imply /InIsolation switch and force the tests to be run in an isolated process.]D;]A; ]D;]A; - Default: Test Platform will load adapters is if this argument has not been specified. ]D;]A; It will pick up extensions from next to source, provided additional adapter paths and from the default directory.]D;]A;]D;]A; - DefaultRuntimeProviders: Load default runtime providers shipped with Test Platform. ]D;]A; If this is not specified when "Explicit" option is set, a test host provider need to be specified explicitly.]D;]A;]D;]A; - ExtensionsDirectory: Load adapters inside Extensions folder.]D;]A;]D;]A; - NextToSource: Load adapters next to source. ]D;]A;]D;]A; - Recursive: Recursively search folders when loading adapters. This requires "Explicit" or "NextToSource" to be specified too.]]>
-
- ]D;]A; Influisce sul comportamento di caricamento dell'adattatore.]D;]A;]D;]A; Comportamenti attualmente supportati:]D;]A; - Explicit: la piattaforma di test caricherà solo gli adattatori specificati da /TestAdapterPath (o dal nodo RunConfiguration.TestAdaptersPaths). ]D;]A; Se viene specificato un percorso specifico dell'adattatore, verrà caricato l'adattatore; se viene specificato un percorso di directory, verranno caricati direttamente gli adattatori presenti in tale cartella, a meno che non sia specificata anche l'opzione Recursive.]D;]A; Se non viene specificato alcun percorso dell'adattatore, l'esecuzione dei test non riuscirà.]D;]A; Implica l'opzione /InIsolation e forza l'esecuzione dei test in un processo isolato.]D;]A; ]D;]A; - Default: la piattaforma di test caricherà gli adattatori se questo argomento non è stato specificato. ]D;]A; Verranno selezionate le estensioni accanto all'origine, specificati percorsi aggiuntivi dell'adattatore e dalla directory predefinita.]D;]A;]D;]A; - DefaultRuntimeProviders: carica i provider di runtime predefiniti forniti con la piattaforma di test. ]D;]A; Se questa opzione non viene specificata quando viene impostata l'opzione "Explicit", è necessario specificare in modo esplicito un provider host di test.]D;]A;]D;]A; - ExtensionsDirectory: carica gli adattatori all'interno della cartella Extensions.]D;]A;]D;]A; - NextToSource: caricare gli adattatori accanto all'origine. ]D;]A;]D;]A; - Recursive: esegue una ricerca ricorsiva nelle cartelle durante il caricamento degli adattatori. È necessario specificare anche "Explicit" o "NextToSource".]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]]>
-
- ]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Run tests that match the given expression.]D;]A; is of the format Operator[|&]5D;]D;]A; where Operator is one of =, != or ~ (Operator ~ has 'contains']D;]A; semantics and is applicable for string properties like DisplayName).]D;]A; Parenthesis () can be used to group sub-expressions.]D;]A; Examples: /TestCaseFilter:"Priority=1"]D;]A; /TestCaseFilter:"(FullyQualifiedName~Nightly]D;]A; |Name=MyTestMethod)"]]>
-
- ]D;]A; Esegue test corrispondenti all'espressione specificata.]D;]A; è nel formato Operatore[|&]5D;]D;]A; dopo l'operatore è =, != oppure ~ (l'operatore ~ implica semantica 'contains']D;]A; ed è applicabile solo per proprietà di stringhe quali DisplayName).]D;]A; È possibile usare le parentesi () per raggruppare sottoespressioni.]D;]A; Esempi: /TestCaseFilter:"Priority=1"]D;]A; /TestCaseFilter:"(FullyQualifiedName~Nightly]D;]A; |Name=MyTestMethod)"]]>
-
-
-
-
-
-
- = type.]D;]A; Examples: "Priority=1", "TestCategory=Nightly"]]>
-
- =.]D;]A; Esempi: "Priority=1", "TestCategory=Nightly"]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ja/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ja/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index e4f254bed5..0000000000
--- a/eng/Localize/lcl/ja/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ja/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ja/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index edce083a50..0000000000
--- a/eng/Localize/lcl/ja/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 0d2ad300ae..0000000000
--- a/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,116 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index a1c6a5b9eb..0000000000
--- a/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true" property to project file.]]>
-
- true" プロパティをプロジェクト ファイルに追加します。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index c3e554033c..0000000000
--- a/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 30b6187e15..0000000000
--- a/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,372 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true is not supported for sources test run.]]>
-
- true は、ソース テストの実行ではサポートされていません。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 68572a69c4..0000000000
--- a/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,117 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index a5a47c0c62..0000000000
--- a/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,159 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index a809ac20a3..0000000000
--- a/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,357 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 7c2f309724..0000000000
--- a/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,174 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 97c5285358..0000000000
--- a/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl b/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl
deleted file mode 100644
index a8f6b93831..0000000000
--- a/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl
+++ /dev/null
@@ -1,312 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl b/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl
deleted file mode 100644
index 3e0c93f634..0000000000
--- a/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl b/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl
deleted file mode 100644
index 80709a62d7..0000000000
--- a/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 642bdb15d2..0000000000
--- a/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,627 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- .]]>
-
- のようになります。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 85aa750a64..0000000000
--- a/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 798a08649a..0000000000
--- a/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,78 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl b/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl
deleted file mode 100644
index 2f68fc1f71..0000000000
--- a/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 949617855f..0000000000
--- a/eng/Localize/lcl/ja/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,105 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ja/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ja/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index ca686fe62b..0000000000
--- a/eng/Localize/lcl/ja/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A;SettingsMigrator.exe ]D;]A;Examples:]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings E:\MyTest\MyNewRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings E:\MyTest\MyNewRunSettings.runsettings]]>
-
- ]D;]A;SettingsMigrator.exe ]D;]A;例:]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings E:\MyTest\MyNewRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings E:\MyTest\MyNewRunSettings.runsettings]]>
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ja/src/vstest.console/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ja/src/vstest.console/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index bf4cf3e42f..0000000000
--- a/eng/Localize/lcl/ja/src/vstest.console/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,1794 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The directory containing the temporary outputs.]]>
-
- ]D;]A; 一時的な出力を含むディレクトリです。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Enables data collector for the test run. More info here : https://aka.ms/vstest-collect]]>
-
- ]D;]A; テストの実行用のデータ コレクターを有効にします。詳細情報はこちら: https://aka.ms/vstest-collect]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The configuration the project is built for i.e. Debug/Release]]>
-
- ]D;]A; プロジェクトをビルドする構成です。つまり、Debug/Release]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Example: /DisableAutoFakes:true]]>
-
- ]D;]A; 例: /DisableAutoFakes:true]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Enable logs for test platform.]D;]A; Logs are written to the provided file.]D;]A;]D;]A; Change the trace level for logs as shown below]D;]A; Example: /Diag:;tracelevel=]D;]A; Allowed values for tracelevel: off, error, warning, info and verbose.]]>
-
- ]D;]A; テスト プラットフォームに対してログを有効にします。]D;]A; ログは指定されたファイルに書き込まれます。]D;]A;]D;]A; 次のようにログのトレース レベルを変更します。]D;]A; 例: /Diag:;tracelevel=]D;]A; トレース レベルに使用できる値: off、error、warning、info、verbose。]]>
-
-
-
-
-
-
- ]D;]A; Specify a logger for test results. For example, to log results into a ]D;]A; Visual Studio Test Results File (TRX) use /logger:trx[;LogFileName=]5D;]D;]A; Creates file in TestResults directory with given LogFileName.]D;]A;]D;]A; Change the verbosity level in log messages for console logger as shown below]D;]A; Example: /logger:console;verbosity=]D;]A; Allowed values for verbosity: quiet, minimal, normal and detailed.]D;]A;]D;]A; Change the diagnostic level prefix for console logger as shown below]D;]A; Example: /logger:console;prefix=]D;]A; More info on Console Logger here : https://aka.ms/console-logger]]>
-
- ]D;]A; テスト結果のロガーを指定します。たとえば、結果のログを]D;]A; Visual Studio のテスト結果ファイル (TRX) に記録するには、/logger:trx[;LogFileName=]5D; を使用します]D;]A; TestResults ディレクトリに、指定された LogFileName でファイルを作成します。]D;]A;]D;]A; コンソール ロガーのログ メッセージの詳細レベルを、次のように変更します]D;]A; 例: /logger:console;verbosity=]D;]A; 詳細レベルに使用できる値: quiet、minimal、normal、detailed。]D;]A;]D;]A; コンソール ロガーの診断レベルのプレフィックスを次のように変更します]D;]A; 例: /logger:console;prefix=]D;]A; コンソール ロガーの詳細についてはこちらをご覧ください: https://aka.ms/console-logger]]>
-
-
-
-
-
-
- ]D;]A; Specify a logger for test results. For example, to log results into a ]D;]A; Visual Studio Test Results File (TRX) use /logger:trx[;LogFileName=]5D;]D;]A; Creates file in TestResults directory with given LogFileName.]D;]A;]D;]A; Change the verbosity level in log messages for console logger as shown below]D;]A; Example: /logger:console;verbosity=]D;]A; Allowed values for verbosity: quiet, minimal, normal and detailed.]D;]A;]D;]A; Change the diagnostic level prefix for console logger as shown below]D;]A; Example: /logger:console;prefix=]D;]A; More info on Console Logger here : https://aka.ms/console-logger]]>
-
- ]D;]A; テスト結果のロガーを指定します。たとえば、結果のログを]D;]A; Visual Studio のテスト結果ファイル (TRX) に記録するには、/logger:trx[;LogFileName=]5D; を使用します]D;]A; TestResults ディレクトリに、指定された LogFileName でファイルを作成します。]D;]A;]D;]A; コンソール ロガーのログ メッセージの詳細レベルを、次のように変更します]D;]A; 例: /logger:console;verbosity=]D;]A; 詳細レベルに使用できる値: quiet、minimal、normal、detailed。]D;]A;]D;]A; コンソール ロガーの診断レベルのプレフィックスを次のように変更します]D;]A; 例: /logger:console;prefix=]D;]A; コンソール ロガーの詳細についてはこちらをご覧ください: https://aka.ms/console-logger]]>
-
-
-
-
-
-
- =]D;]A; Sets the value of an environment variable. Creates the variable if it does not exist, overrides if it does. This will imply /InIsolation switch and force the tests to be run in an isolated process.]D;]A; ]D;]A; This argument can be specified multiple times to provide multiple variables.]D;]A;]D;]A; Example: -e:VARIABLE1=VALUE1]D;]A; -e:ANOTHER_VARIABLE="VALUE WITH SPACES"]D;]A; -e:ANOTHER_VARIABLE="VALUE;seperated with;semicolons"]]>
-
- =]D;]A; 環境変数の値を設定します。変数が存在しない場合は作成され、存在する場合はオーバーライドされます。これにより、/InIsolation スイッチが暗黙に指定されるため、テストは強制的に分離プロセスで実行されます。]D;]A; ]D;]A; この引数は、複数の変数を指定するために複数回指定できます。]D;]A;]D;]A; 例: -e:VARIABLE1=VALUE1]D;]A; -e:ANOTHER_VARIABLE="VALUE WITH SPACES"]D;]A; -e:ANOTHER_VARIABLE="VALUE;seperated with;semicolons"]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- vstest.console.exe tests.dll ]D;]A; To run tests with additional settings such as data collectors:]D;]A; >vstest.console.exe tests.dll /Settings:Local.RunSettings]]>
-
- vstest.console.exe tests.dll ]D;]A; テストをデータ コレクターなどの追加設定を指定して実行する:]D;]A; >vstest.console.exe tests.dll /Settings:Local.RunSettings]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Target .Net Framework version to be used for test execution. ]D;]A; Valid values are ".NETFramework,Version=v4.5.1", ".NETCoreApp,Version=v1.0" etc.]D;]A; Other supported values are Framework40, Framework45, FrameworkCore10 and FrameworkUap10.]]>
-
- ]D;]A; テストの実行に使用する、.Net Framework のターゲット バージョン。]D;]A; 有効な値は ".NETFramework,Version=v4.5.1"、".NETCoreApp,Version=v1.0" などです。]D;]A; サポートされている他の値は、Framework40、Framework45、FrameworkCore10、FrameworkUap10 です。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ...]5D;]5D;]]>
-
- ...]5D;]5D;]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- \", value=\"\")]]>
-
- \", value=\"\")]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Lists all discovered tests from the given test container.]]>
-
- ]D;]A; 指定されたテスト コンテナーから、すべての探索されたテストを一覧表示します。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The directory containing the binaries to run.]]>
-
- ]D;]A; 実行するバイナリを含むディレクトリです。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Process Id of the Parent Process responsible for launching current process.]]>
-
- ]D;]A; 現在のプロセスを起動する親プロセスのプロセス ID です。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Target platform architecture to be used for test execution. ]D;]A; Valid values are x86, x64 and ARM.]]>
-
- ]D;]A; テストの実行に使用するターゲット プラットフォームのアーキテクチャです。]D;]A; 有効な値は、x86、x64、ARM です。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The Port for socket connection and receiving the event messages.]]>
-
- ]D;]A; ソケット接続およびイベント メッセージを受信するためのポートです。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Read response file for more options.]]>
-
- ]D;]A; その他のオプションについては、応答ファイルを参照してください。]]>
-
-
-
-
-
-
- ]]>
-
- ]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Settings to use when running tests.]]>
-
- ]D;]A; テストを実行する際に使用する設定です。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Run tests with names that match the provided values. To provide multiple]D;]A; values, separate them by commas.]D;]A; Examples: /Tests:TestMethod1]D;]A; /Tests:TestMethod1,testMethod2]]>
-
- ]D;]A; 指定された値に一致する名前のテストを実行します。複数の値を]D;]A; 指定する場合、コンマで区切ります。]D;]A; 例: /Tests:TestMethod1]D;]A; /Tests:TestMethod1,testMethod2]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- .]]>
-
- 。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; This affects adapter loading behavior.]D;]A;]D;]A; Currently supported behaviors:]D;]A; - Explicit: Test Platform will only load adapters specified by /TestAdapterPath (or RunConfiguration.TestAdaptersPaths node). ]D;]A; If a specific adapter path is provided, adapter will be loaded; if a directory path is provided adapters directly in that folder will be loaded, unless Recursive option is also specified.]D;]A; If no adapter path is specified, test run will fail.]D;]A; This will imply /InIsolation switch and force the tests to be run in an isolated process.]D;]A; ]D;]A; - Default: Test Platform will load adapters is if this argument has not been specified. ]D;]A; It will pick up extensions from next to source, provided additional adapter paths and from the default directory.]D;]A;]D;]A; - DefaultRuntimeProviders: Load default runtime providers shipped with Test Platform. ]D;]A; If this is not specified when "Explicit" option is set, a test host provider need to be specified explicitly.]D;]A;]D;]A; - ExtensionsDirectory: Load adapters inside Extensions folder.]D;]A;]D;]A; - NextToSource: Load adapters next to source. ]D;]A;]D;]A; - Recursive: Recursively search folders when loading adapters. This requires "Explicit" or "NextToSource" to be specified too.]]>
-
- ]D;]A; これはアダプターの読み込み動作時の振る舞いに影響します。]D;]A;]D;]A; 現在サポートされている振る舞い:]D;]A; - Explicit: テスト プラットフォームは、/TestAdapterPath (または RunConfiguration.TestAdaptersPaths ノード) で指定されたアダプターのみを読み込みます。]D;]A; 特定のアダプター パスが指定されている場合、アダプターが読み込まれます; ディレクトリ パスが指定されている場合は、Recursive オプションも指定されていない限り、そのフォルダー内のアダプターが直接読み込まれます。]D;]A; アダプター パスが指定されていない場合、テスト実行は失敗します。]D;]A; これは/InIsolation スイッチを示し、テストを強制的に分離されたプロセスで実行します。]D;]A; ]D;]A;- Default : この引数が指定されていない場合は、アダプターを読み込むテスト プラットフォームが存在します。]D;]A; 追加のアダプター パスを指定し、既定のディレクトリから、ソースの隣から拡張機能を取得します。]D;]A;]D;]A; - DefaultRuntimeProviders: テスト プラットフォームに付属の既定のランタイム プロバイダーを読み込みます。]D;]A; "Explicit" オプションが設定されている場合に、これが指定されない場合は、テスト ホスト プロバイダーが明示的に指定されている必要があります。]D;]A;]D;]A; - ExtensionsDirectory: 拡張機能フォルダー内にアダプターを読み込みます。]D;]A;]D;]A; - NextToSource: ソースの隣にアダプターを読み込みます。]D;]A;]D;]A; - Recursive: アダプターの読み込み時にフォルダーを再帰的に検索します。これには、"Explicit" または "NextToSource" も指定する必要があります。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]]>
-
- ]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Run tests that match the given expression.]D;]A; is of the format Operator[|&]5D;]D;]A; where Operator is one of =, != or ~ (Operator ~ has 'contains']D;]A; semantics and is applicable for string properties like DisplayName).]D;]A; Parenthesis () can be used to group sub-expressions.]D;]A; Examples: /TestCaseFilter:"Priority=1"]D;]A; /TestCaseFilter:"(FullyQualifiedName~Nightly]D;]A; |Name=MyTestMethod)"]]>
-
- ]D;]A; 指定された式と一致するテストを実行します。]D;]A; の形式は 演算子[|&]5D;]D;]A; で、演算子は =、!=、~ のいずれかです (演算子 ~ には '含む']D;]A; セマンティクスがあり、DisplayName などの文字列プロパティに適用されます)。]D;]A; かっこ () は、サブ式のグループ化に使用できます。]D;]A; 例: /TestCaseFilter:"Priority=1"]D;]A; /TestCaseFilter:"(FullyQualifiedName~Nightly]D;]A; |Name=MyTestMethod)"]]>
-
-
-
-
-
-
- = type.]D;]A; Examples: "Priority=1", "TestCategory=Nightly"]]>
-
- =<値> という型で指定できます。]D;]A; 例: "Priority=1"、"TestCategory=Nightly"]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ko/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ko/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index d0c0117d07..0000000000
--- a/eng/Localize/lcl/ko/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ko/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ko/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index e49faa32f3..0000000000
--- a/eng/Localize/lcl/ko/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 98da7390e4..0000000000
--- a/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,116 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 03321f3cab..0000000000
--- a/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true" property to project file.]]>
-
- true" 속성을 프로젝트 파일에 추가합니다.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index b2ad001d77..0000000000
--- a/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 71e8aca4b0..0000000000
--- a/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,372 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true is not supported for sources test run.]]>
-
- true는 원본 테스트 실행에 대해 지원되지 않습니다.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index fbe1915c5c..0000000000
--- a/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,117 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 69aa943da7..0000000000
--- a/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,159 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index f0b6d57733..0000000000
--- a/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,357 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 8a07304c30..0000000000
--- a/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,177 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 8e69bf02e4..0000000000
--- a/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl b/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl
deleted file mode 100644
index 21532cf816..0000000000
--- a/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl
+++ /dev/null
@@ -1,312 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl b/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl
deleted file mode 100644
index c203b7eb9e..0000000000
--- a/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl b/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl
deleted file mode 100644
index 1f99ba81b0..0000000000
--- a/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 9a6cb69c70..0000000000
--- a/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,627 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- .]]>
-
- 와 같습니다. ]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 453e942626..0000000000
--- a/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 6492081309..0000000000
--- a/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,78 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl b/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl
deleted file mode 100644
index b68cf53bd4..0000000000
--- a/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index eaeec5bbed..0000000000
--- a/eng/Localize/lcl/ko/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,105 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ko/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ko/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 3e9e52701d..0000000000
--- a/eng/Localize/lcl/ko/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A;SettingsMigrator.exe ]D;]A;Examples:]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings E:\MyTest\MyNewRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings E:\MyTest\MyNewRunSettings.runsettings]]>
-
- ]D;]A;SettingsMigrator.exe ]D;]A;Examples:]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings E:\MyTest\MyNewRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings E:\MyTest\MyNewRunSettings.runsettings]]>
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ko/src/vstest.console/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ko/src/vstest.console/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 878f5359c2..0000000000
--- a/eng/Localize/lcl/ko/src/vstest.console/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,1794 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The directory containing the temporary outputs.]]>
-
- ]D;]A; 임시 출력을 포함하는 디렉터리입니다.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Enables data collector for the test run. More info here : https://aka.ms/vstest-collect]]>
-
- ]D;]A; 테스트 실행을 위해 데이터 수집기를 사용하도록 설정합니다. 자세한 내용은 https://aka.ms/vstest-collect를 참조하세요.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The configuration the project is built for i.e. Debug/Release]]>
-
- ]D;]A; 디버그/릴리스를 위해 프로젝트가 빌드되는 구성입니다.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Example: /DisableAutoFakes:true]]>
-
- ]D;]A; 예: /DisableAutoFakes:true]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Enable logs for test platform.]D;]A; Logs are written to the provided file.]D;]A;]D;]A; Change the trace level for logs as shown below]D;]A; Example: /Diag:;tracelevel=]D;]A; Allowed values for tracelevel: off, error, warning, info and verbose.]]>
-
- ]D;]A; 테스트 플랫폼의 로그를 사용하도록 설정합니다.]D;]A; 로그는 제공된 파일에 기록됩니다.]D;]A;]D;]A; 아래 표시된 대로 로그의 추적 수준을 변경합니다.]D;]A; 예: /Diag:;tracelevel=]D;]A; 허용되는 추적 수준 값: off, error, warning, info 및 verbose.]]>
-
-
-
-
-
-
- ]D;]A; Specify a logger for test results. For example, to log results into a ]D;]A; Visual Studio Test Results File (TRX) use /logger:trx[;LogFileName=]5D;]D;]A; Creates file in TestResults directory with given LogFileName.]D;]A;]D;]A; Change the verbosity level in log messages for console logger as shown below]D;]A; Example: /logger:console;verbosity=]D;]A; Allowed values for verbosity: quiet, minimal, normal and detailed.]D;]A;]D;]A; Change the diagnostic level prefix for console logger as shown below]D;]A; Example: /logger:console;prefix=]D;]A; More info on Console Logger here : https://aka.ms/console-logger]]>
-
- ]D;]A; 테스트 결과의 로거를 지정합니다. 예를 들어 ]D;]A; Visual Studio TRX(테스트 결과 파일)에 결과를 기록하려면 /logger:trx[;LogFileName=]5D;를 사용합니다.]D;]A; 지정된 LogFileName으로 TestResults 디렉터리에서 파일을 만듭니다.]D;]A;]D;]A; 아래 표시된 대로 콘솔 로거에 대한 로그 메시지에서 세부 정보 표시 수준을 변경합니다.]D;]A; 예: /logger:console;verbosity=]D;]A; 허용된 세부 정보 표시 값: quiet, minimal, normal 및 detailed.]D;]A;]D;]A; 아래 표시된 대로 콘솔 로거에 대한 진단 수준 접두사를 변경합니다.]D;]A; 예: /logger:console;prefix=]D;]A; 콘솔 로거에 대한 자세한 내용은 https://aka.ms/console-logger를 참조하세요.]]>
-
-
-
-
-
-
- ]D;]A; Specify a logger for test results. For example, to log results into a ]D;]A; Visual Studio Test Results File (TRX) use /logger:trx[;LogFileName=]5D;]D;]A; Creates file in TestResults directory with given LogFileName.]D;]A;]D;]A; Change the verbosity level in log messages for console logger as shown below]D;]A; Example: /logger:console;verbosity=]D;]A; Allowed values for verbosity: quiet, minimal, normal and detailed.]D;]A;]D;]A; Change the diagnostic level prefix for console logger as shown below]D;]A; Example: /logger:console;prefix=]D;]A; More info on Console Logger here : https://aka.ms/console-logger]]>
-
- ]D;]A; 테스트 결과의 로거를 지정합니다. 예를 들어 ]D;]A; Visual Studio TRX(테스트 결과 파일)에 결과를 기록하려면 /logger:trx[;LogFileName=]5D;를 사용합니다.]D;]A; 지정된 LogFileName으로 TestResults 디렉터리에서 파일을 만듭니다.]D;]A;]D;]A; 아래 표시된 대로 콘솔 로거에 대한 로그 메시지에서 세부 정보 표시 수준을 변경합니다.]D;]A; 예: /logger:console;verbosity=]D;]A; 허용된 세부 정보 표시 값: quiet, minimal, normal 및 detailed.]D;]A;]D;]A; 아래 표시된 대로 콘솔 로거에 대한 진단 수준 접두사를 변경합니다.]D;]A; 예: /logger:console;prefix=]D;]A; 콘솔 로거에 대한 자세한 내용은 https://aka.ms/console-logger를 참조하세요.]]>
-
-
-
-
-
-
- =]D;]A; Sets the value of an environment variable. Creates the variable if it does not exist, overrides if it does. This will imply /InIsolation switch and force the tests to be run in an isolated process.]D;]A; ]D;]A; This argument can be specified multiple times to provide multiple variables.]D;]A;]D;]A; Example: -e:VARIABLE1=VALUE1]D;]A; -e:ANOTHER_VARIABLE="VALUE WITH SPACES"]D;]A; -e:ANOTHER_VARIABLE="VALUE;seperated with;semicolons"]]>
-
- =]D;]A; 환경 변수의 값을 설정합니다. 변수가 없는 경우 변수를 만들고, 변수가 있으면 재정의합니다. 이는 /InIsolation 전환을 의미하며 격리된 프로세스에서 테스트를 강제로 실행합니다.]D;]A; ]D;]A; 이 인수를 여러 번 지정하여 여러 변수를 제공할 수 있습니다.]D;]A;]D;]A; 예: -e:VARIABLE1=VALUE1]D;]A; -e:ANOTHER_VARIABLE="VALUE WITH SPACES"]D;]A; -e:ANOTHER_VARIABLE="VALUE;seperated with;semicolons"]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- vstest.console.exe tests.dll ]D;]A; To run tests with additional settings such as data collectors:]D;]A; >vstest.console.exe tests.dll /Settings:Local.RunSettings]]>
-
- vstest.console.exe tests.dll ]D;]A; 데이터 수집기와 같은 추가 설정을 사용하여 테스트를 실행하려면:]D;]A; >vstest.console.exe tests.dll /Settings:Local.RunSettings]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Target .Net Framework version to be used for test execution. ]D;]A; Valid values are ".NETFramework,Version=v4.5.1", ".NETCoreApp,Version=v1.0" etc.]D;]A; Other supported values are Framework40, Framework45, FrameworkCore10 and FrameworkUap10.]]>
-
- ]D;]A; 테스트 실행에 사용할 대상 .NET Framework 버전입니다. ]D;]A; 유효한 값은 ".NETFramework,Version=v4.5.1", ".NETCoreApp,Version=v1.0" 등입니다.]D;]A; 기타 지원되는 값은 Framework40, Framework45, FrameworkCore10 및 FrameworkUap10입니다.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ...]5D;]5D;]]>
-
- ...]5D;]5D;]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- \", value=\"\")]]>
-
- \", value=\"\")]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Lists all discovered tests from the given test container.]]>
-
- ]D;]A; 지정된 테스트 컨테이너에서 검색된 모든 테스트를 나열합니다.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The directory containing the binaries to run.]]>
-
- ]D;]A; 실행할 이진 파일을 포함하는 디렉터리입니다.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Process Id of the Parent Process responsible for launching current process.]]>
-
- ]D;]A; 현재 프로세스를 시작해야 하는 부모 프로세스의 프로세스 ID입니다.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Target platform architecture to be used for test execution. ]D;]A; Valid values are x86, x64 and ARM.]]>
-
- ]D;]A; 테스트를 실행하는 데 사용할 대상 플랫폼 아키텍처입니다. ]D;]A; 유효한 값은 x86, x64 및 ARM입니다.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The Port for socket connection and receiving the event messages.]]>
-
- ]D;]A; 소켓 연결 및 이벤트 메시지 수신용 포트입니다.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Read response file for more options.]]>
-
- ]D;]A; 추가 옵션에 대한 지시 파일을 읽습니다.]]>
-
-
-
-
-
-
- ]]>
-
- ]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Settings to use when running tests.]]>
-
- ]D;]A; 테스트를 실행할 때 사용할 설정입니다.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Run tests with names that match the provided values. To provide multiple]D;]A; values, separate them by commas.]D;]A; Examples: /Tests:TestMethod1]D;]A; /Tests:TestMethod1,testMethod2]]>
-
- ]D;]A; 제공된 값과 일치하는 이름으로 테스트를 실행합니다. 여러 값을 제공하려면 ]D;]A; 쉼표로 구분합니다.]D;]A; 예: /Tests:TestMethod1]D;]A; /Tests:TestMethod1,testMethod2]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- .]]>
-
- .]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; This affects adapter loading behavior.]D;]A;]D;]A; Currently supported behaviors:]D;]A; - Explicit: Test Platform will only load adapters specified by /TestAdapterPath (or RunConfiguration.TestAdaptersPaths node). ]D;]A; If a specific adapter path is provided, adapter will be loaded; if a directory path is provided adapters directly in that folder will be loaded, unless Recursive option is also specified.]D;]A; If no adapter path is specified, test run will fail.]D;]A; This will imply /InIsolation switch and force the tests to be run in an isolated process.]D;]A; ]D;]A; - Default: Test Platform will load adapters is if this argument has not been specified. ]D;]A; It will pick up extensions from next to source, provided additional adapter paths and from the default directory.]D;]A;]D;]A; - DefaultRuntimeProviders: Load default runtime providers shipped with Test Platform. ]D;]A; If this is not specified when "Explicit" option is set, a test host provider need to be specified explicitly.]D;]A;]D;]A; - ExtensionsDirectory: Load adapters inside Extensions folder.]D;]A;]D;]A; - NextToSource: Load adapters next to source. ]D;]A;]D;]A; - Recursive: Recursively search folders when loading adapters. This requires "Explicit" or "NextToSource" to be specified too.]]>
-
- ]D;]A; 이는 어댑터 로딩 동작에 영향을 미칩니다.]D;]A;]D;]A; 현재 지원되는 동작:]D;]A; - 명시적: 테스트 플랫폼은 /TestAdapterPath(또는 RunConfiguration.TestAdaptersPaths 노드)에 지정된 어댑터만 로드합니다. ]D;]A; 특정 어댑터 경로가 제공되면 어댑터가 로드됩니다. 디렉터리 경로가 제공되면 재귀 옵션도 지정되지 않는 한 해당 폴더에 직접 어댑터가 로드됩니다.]D;]A; 어댑터 경로를 지정하지 않으면 테스트 실행이 실패합니다.]D;]A; 이는 /InIsolation을 전환을 의미하고 테스트가 격리된 프로세스에서 실행되도록 합니다.]D;]A; ]D;]A; - 기본값: 테스트 플랫폼은 이 인수가 지정되지 않은 경우 어댑터를 로드합니다. ]D;]A; 추가 어댑터 경로를 제공하고 기본 디렉터리에서 소스 옆에 있는 확장 프로그램을 선택합니다.]D;]A;]D;]A; - DefaultRuntimeProviders: 테스트 플랫폼과 함께 제공되는 기본 런타임 공급자를 로드합니다. ]D;]A; '명시적' 옵션이 설정되어 있을 때 지정하지 않으면 테스트 호스트 공급자를 명시적으로 지정해야 합니다.]D;]A;]D;]A; - ExtensionsDirectory: Extensions 폴더 내부에 어댑터를 로드합니다. ]D;]A;]D;]A; - NextToSource: 소스 옆에 어댑터를 로드합니다. ]D;]A;]D;]A; - 재귀: 어댑터를 로드할 때 폴더를 재귀적으로 검색합니다. 이렇게 하려면 "명시적" 또는 "NextToSource"도 지정해야 합니다.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]]>
-
- ]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Run tests that match the given expression.]D;]A; is of the format Operator[|&]5D;]D;]A; where Operator is one of =, != or ~ (Operator ~ has 'contains']D;]A; semantics and is applicable for string properties like DisplayName).]D;]A; Parenthesis () can be used to group sub-expressions.]D;]A; Examples: /TestCaseFilter:"Priority=1"]D;]A; /TestCaseFilter:"(FullyQualifiedName~Nightly]D;]A; |Name=MyTestMethod)"]]>
-
- ]D;]A; 지정된 식과 일치하는 테스트를 실행합니다.]D;]A; 은 연산자[|&]5D;]D;]A; 형식이며, 여기서 연산자는 =, !=, ~ 중 하나입니다(~ 연산자는 '포함' 의미 체계를]D;]A; 사용하며 DisplayName 같은 문자열 속성에 적용됩니다).]D;]A; 괄호 ()를 사용하여 하위 식을 그룹화할 수 있습니다.]D;]A; 예: /TestCaseFilter:"Priority=1"]D;]A; /TestCaseFilter:"(FullyQualifiedName~Nightly]D;]A; |Name=MyTestMethod)"]]>
-
-
-
-
-
-
- = type.]D;]A; Examples: "Priority=1", "TestCategory=Nightly"]]>
-
- = 형식이 될 수 있습니다.]D;]A; 예: "Priority=1", "TestCategory=Nightly"]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pl/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/pl/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 0319a1a39a..0000000000
--- a/eng/Localize/lcl/pl/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pl/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/pl/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 79b22ec39c..0000000000
--- a/eng/Localize/lcl/pl/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 0e98f5769d..0000000000
--- a/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,116 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 0e21e953b0..0000000000
--- a/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true" property to project file.]]>
-
- true” do pliku projektu.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index b7aa674c4f..0000000000
--- a/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 164fbcaf3b..0000000000
--- a/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,372 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true is not supported for sources test run.]]>
-
- true nie jest obsługiwana w przypadku przebiegu testu źródeł.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index e52a226b45..0000000000
--- a/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,117 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 3a9bdb2332..0000000000
--- a/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,159 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 8231ba95d7..0000000000
--- a/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,357 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 138c369eb2..0000000000
--- a/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,174 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 8bfbda88f9..0000000000
--- a/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl b/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl
deleted file mode 100644
index 744cf625e8..0000000000
--- a/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl
+++ /dev/null
@@ -1,312 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl b/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl
deleted file mode 100644
index a5a328411e..0000000000
--- a/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl b/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl
deleted file mode 100644
index f3e5a357b3..0000000000
--- a/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 2320b0cddf..0000000000
--- a/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,627 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- .]]>
-
- .]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 9336f8df1d..0000000000
--- a/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 0dc66293e4..0000000000
--- a/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,78 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl b/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl
deleted file mode 100644
index 3257dc9ece..0000000000
--- a/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 495a66b725..0000000000
--- a/eng/Localize/lcl/pl/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,105 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pl/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/pl/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index a6e7127bf1..0000000000
--- a/eng/Localize/lcl/pl/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A;SettingsMigrator.exe ]D;]A;Examples:]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings E:\MyTest\MyNewRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings E:\MyTest\MyNewRunSettings.runsettings]]>
-
- ]D;]A;SettingsMigrator.exe ]D;]A;Przykłady:]D;]A;SettingsMigrator.exe E:\MójTest\UstawieniaMojegoTestu.testsettings]D;]A;SettingsMigrator.exe E:\MójTest\UstawieniaMojegoStaregoPrzebiegu.runsettings]D;]A;SettingsMigrator.exe E:\MójTest\UstawieniaMojegoTestu.testsettings E:\MójTest\UstawieniaMojegoNowegoPrzebiegu.runsettings]D;]A;SettingsMigrator.exe E:\MójTest\UstawieniaMojegoStaregoPrzebiegu.runsettings E:\MójTest\UstawieniaMojegoNowegoPrzebiegu.runsettings]]>
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pl/src/vstest.console/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/pl/src/vstest.console/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index d03010913f..0000000000
--- a/eng/Localize/lcl/pl/src/vstest.console/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,1794 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The directory containing the temporary outputs.]]>
-
- ]D;]A; Katalog zawierający tymczasowe dane wyjściowe.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Enables data collector for the test run. More info here : https://aka.ms/vstest-collect]]>
-
- ]D;]A; Włącza moduł zbierający dane dla przebiegu testu. Więcej informacji: https://aka.ms/vstest-collect]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The configuration the project is built for i.e. Debug/Release]]>
-
- ]D;]A; Konfiguracja, na potrzeby której kompilowany jest projekt, na przykład Debug/Release]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Example: /DisableAutoFakes:true]]>
-
- ]D;]A; Przykład: /DisableAutoFakes:true]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Enable logs for test platform.]D;]A; Logs are written to the provided file.]D;]A;]D;]A; Change the trace level for logs as shown below]D;]A; Example: /Diag:;tracelevel=]D;]A; Allowed values for tracelevel: off, error, warning, info and verbose.]]>
-
- ]D;]A; Włącz dzienniki dla platformy testowej.]D;]A; Dzienniki są zapisywanie w podanym pliku.]D;]A;]D;]A; Zmień poziom śledzenia dla dzienników, jak pokazano poniżej]D;]A; Przykład: /Diag:<ścieżka do pliku dziennika>;tracelevel=]D;]A; Dozwolone wartości dla elementu tracelevel: off, error, warning, info i verbose.]]>
-
-
-
-
-
-
- ]D;]A; Specify a logger for test results. For example, to log results into a ]D;]A; Visual Studio Test Results File (TRX) use /logger:trx[;LogFileName=]5D;]D;]A; Creates file in TestResults directory with given LogFileName.]D;]A;]D;]A; Change the verbosity level in log messages for console logger as shown below]D;]A; Example: /logger:console;verbosity=]D;]A; Allowed values for verbosity: quiet, minimal, normal and detailed.]D;]A;]D;]A; Change the diagnostic level prefix for console logger as shown below]D;]A; Example: /logger:console;prefix=]D;]A; More info on Console Logger here : https://aka.ms/console-logger]]>
-
- ]D;]A; Określa rejestrator dla wyników testu. Aby na przykład rejestrować wyniki testu ]D;]A; do pliku wyników testu (TRX) programu Visual Studio, użyj parametru /logger:trx [;LogFileName=]5D;]D;]A; Tworzy w katalogu TestResults plik z podaną nazwą LogFileName.]D;]A;]D;]A; Zmień poziom szczegółowości dla rejestratora konsoli, jak pokazano poniżej]D;]A; Przykład: /logger:console;verbosity= ]D;]A; Dozwolone wartości szczegółowości: quiet, minimal i normal.]D;]A;]D;]A; Zmień prefiks poziomu diagnostyki dla rejestratora konsoli, jak pokazano poniżej]D;]A; Przykład: /logger:console;prefix=]D;]A; Więcej informacji o rejestratorze konsoli: https://aka.ms/console-logger]]>
-
-
-
-
-
-
- ]D;]A; Specify a logger for test results. For example, to log results into a ]D;]A; Visual Studio Test Results File (TRX) use /logger:trx[;LogFileName=]5D;]D;]A; Creates file in TestResults directory with given LogFileName.]D;]A;]D;]A; Change the verbosity level in log messages for console logger as shown below]D;]A; Example: /logger:console;verbosity=]D;]A; Allowed values for verbosity: quiet, minimal, normal and detailed.]D;]A;]D;]A; Change the diagnostic level prefix for console logger as shown below]D;]A; Example: /logger:console;prefix=]D;]A; More info on Console Logger here : https://aka.ms/console-logger]]>
-
- ]D;]A; Określa rejestrator dla wyników testu. Aby na przykład rejestrować wyniki testu ]D;]A; do pliku wyników testu (TRX) programu Visual Studio, użyj parametru /logger:trx [;LogFileName=]5D;]D;]A; Tworzy w katalogu TestResults plik z podaną nazwą LogFileName.]D;]A;]D;]A; Zmień poziom szczegółowości dla rejestratora konsoli, jak pokazano poniżej]D;]A; Przykład: /logger:console;verbosity= ]D;]A; Dozwolone wartości szczegółowości: quiet, minimal i normal.]D;]A;]D;]A; Zmień prefiks poziomu diagnostyki dla rejestratora konsoli, jak pokazano poniżej]D;]A; Przykład: /logger:console;prefix=]D;]A; Więcej informacji o rejestratorze konsoli: https://aka.ms/console-logger]]>
-
-
-
-
-
-
- =]D;]A; Sets the value of an environment variable. Creates the variable if it does not exist, overrides if it does. This will imply /InIsolation switch and force the tests to be run in an isolated process.]D;]A; ]D;]A; This argument can be specified multiple times to provide multiple variables.]D;]A;]D;]A; Example: -e:VARIABLE1=VALUE1]D;]A; -e:ANOTHER_VARIABLE="VALUE WITH SPACES"]D;]A; -e:ANOTHER_VARIABLE="VALUE;seperated with;semicolons"]]>
-
- =]D;]A; Ustawia wartość zmiennej środowiskowej. Jeśli zmienna nie istnieje, tworzy ją, a w przeciwnym wypadku przesłania ją. Powoduje to określenie przełącznika /InIsolation i wymuszenie uruchomienia testów w procesie izolowanym.]D;]A; ]D;]A; Ten argument może być określany wielokrotnie w celu dostarczenia wielu zmiennych.]D;]A;]D;]A; Przykład: -e:ZMIENNA1=WARTOŚĆ1]D;]A; -e:INNA_ZMIENNA="WARTOŚĆ ZE SPACJAMI"]D;]A; -e:INNA_ZMIENNA="WARTOŚCI;oddzielone;średnikami"]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- vstest.console.exe tests.dll ]D;]A; To run tests with additional settings such as data collectors:]D;]A; >vstest.console.exe tests.dll /Settings:Local.RunSettings]]>
-
- vstest.console.exe tests.dll ]D;]A; Aby uruchomić testy z użyciem ustawień dodatkowych, takich jak moduły zbierające dane:]D;]A; >vstest.console.exe tests.dll /Settings:Local.RunSettings]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Target .Net Framework version to be used for test execution. ]D;]A; Valid values are ".NETFramework,Version=v4.5.1", ".NETCoreApp,Version=v1.0" etc.]D;]A; Other supported values are Framework40, Framework45, FrameworkCore10 and FrameworkUap10.]]>
-
- ]D;]A; Docelowa wersja programu .NET Framework, która zostanie użyta na potrzeby wykonania testu. ]D;]A; Prawidłowe wartości to ".NETFramework,Version=v4.5.1", ".NETCoreApp,Version=v1.0" itp.]D;]A; Inne obsługiwane wartości to Framework40, Framework45, FrameworkCore10 i FrameworkUap10.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ...]5D;]5D;]]>
-
- ...]5D;]5D;]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- \", value=\"\")]]>
-
- \", value=\"\")]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Lists all discovered tests from the given test container.]]>
-
- ]D;]A; Wyświetla listę wszystkich wykrytych testów z danego kontenera testów.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The directory containing the binaries to run.]]>
-
- ]D;]A; Katalog zawierający pliki binarne do uruchomienia.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Process Id of the Parent Process responsible for launching current process.]]>
-
- ]D;]A; Identyfikator procesu nadrzędnego odpowiedzialnego za uruchomienie bieżącego procesu.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Target platform architecture to be used for test execution. ]D;]A; Valid values are x86, x64 and ARM.]]>
-
- ]D;]A; Docelowa architektura platformy, która zostanie użyta do wykonania testu. ]D;]A; Prawidłowe wartości to x86, x64 i ARM.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The Port for socket connection and receiving the event messages.]]>
-
- ]D;]A; Port służący do połączenia z gniazdem i odbierania komunikatów zdarzeń.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Read response file for more options.]]>
-
- ]D;]A; Przeczytaj zawartość pliku odpowiedzi w celu uzyskania dodatkowych opcji.]]>
-
-
-
-
-
-
- ]]>
-
- ]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Settings to use when running tests.]]>
-
- ]D;]A; Ustawienia, które mają być używane podczas uruchamiania testów.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Run tests with names that match the provided values. To provide multiple]D;]A; values, separate them by commas.]D;]A; Examples: /Tests:TestMethod1]D;]A; /Tests:TestMethod1,testMethod2]]>
-
- ]D;]A; Uruchom testy z nazwami, które są zgodne z podanymi wartościami. Aby]D;]A; podać wiele wartości, oddziel je przecinkami.]D;]A; Przykłady: /Tests:MetodaTestowa1]D;]A; /Tests:MetodaTestowa1,MetodaTestowa2]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- .]]>
-
- .]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; This affects adapter loading behavior.]D;]A;]D;]A; Currently supported behaviors:]D;]A; - Explicit: Test Platform will only load adapters specified by /TestAdapterPath (or RunConfiguration.TestAdaptersPaths node). ]D;]A; If a specific adapter path is provided, adapter will be loaded; if a directory path is provided adapters directly in that folder will be loaded, unless Recursive option is also specified.]D;]A; If no adapter path is specified, test run will fail.]D;]A; This will imply /InIsolation switch and force the tests to be run in an isolated process.]D;]A; ]D;]A; - Default: Test Platform will load adapters is if this argument has not been specified. ]D;]A; It will pick up extensions from next to source, provided additional adapter paths and from the default directory.]D;]A;]D;]A; - DefaultRuntimeProviders: Load default runtime providers shipped with Test Platform. ]D;]A; If this is not specified when "Explicit" option is set, a test host provider need to be specified explicitly.]D;]A;]D;]A; - ExtensionsDirectory: Load adapters inside Extensions folder.]D;]A;]D;]A; - NextToSource: Load adapters next to source. ]D;]A;]D;]A; - Recursive: Recursively search folders when loading adapters. This requires "Explicit" or "NextToSource" to be specified too.]]>
-
- ]D;]A; Wpływa to na zachowanie ładowania adaptera.]D;]A;]D;]A; Obecnie obsługiwane zachowania: ]D;]A; – Explicit: platforma testowa ładuje tylko adaptery określone przez /TestAdapterPath (lub węzeł RunConfiguration.TestAdaptersPaths). ]D;]A; Jeśli zostanie podana określona ścieżka adaptera, zostanie on załadowany; jeśli ścieżka katalogu jest podana adaptery bezpośrednio w tym folderze zostaną załadowane, o ile nie określono również opcji Recursive.]D;]A; Jeśli nie określono ścieżki adaptera, przebieg testu zakończy się niepowodzeniem.]D;]A; Będzie to uruchamiać przełącznik /InIsolation i wymusi uruchomienie testów w izolowanym procesie.]D;]A; ]D;]A; — Default: platforma testowa ładuje adaptery, tak jakby ten argument nie został określony. ]D;]A; Spowoduje to pobranie rozszerzeń z obszaru Obok źródła, podanie dodatkowych ścieżek adapterów i domyślnego katalogu.]D;]A;]D;]A; — DefaultRuntimeProviders: załaduje domyślnych dostawców środowiska uruchomieniowego dostarczanych z platformą testową. ]D;]A; Jeśli nie jest to określone, podczas gdy opcja „Explicit“ jest ustawiona, dostawca hosta testowego musi być wyraźnie określony.]D;]A;]D;]A; — ExtensionsDirectory: ładuje adaptery w folderze Rozszerzenia.]D;]A;]D;]A; — NextToSource: załaduje adaptery w obszarze Obok źródła. ]D;]A;]D;]A; — Recursive: cykliczne wyszukiwanie folderów podczas ładowania adapterów. Wymaga to określenia opcji „Explicit“ lub „NextToSource“.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]]>
-
- ]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Run tests that match the given expression.]D;]A; is of the format Operator[|&]5D;]D;]A; where Operator is one of =, != or ~ (Operator ~ has 'contains']D;]A; semantics and is applicable for string properties like DisplayName).]D;]A; Parenthesis () can be used to group sub-expressions.]D;]A; Examples: /TestCaseFilter:"Priority=1"]D;]A; /TestCaseFilter:"(FullyQualifiedName~Nightly]D;]A; |Name=MyTestMethod)"]]>
-
- ]D;]A; Uruchamia testy, które są zgodne z danym wyrażeniem.]D;]A; Element jest w formacie Operator[|&]5D;]D;]A; gdzie Operator to =, != lub ~ (operator ~ ma semantykę „zawiera”]D;]A; i jest stosowany dla właściwości ciągów, takich jak nazwa wyświetlana).]D;]A; Nawiasy () mogą służyć do grupowania wyrażeń podrzędnych.]D;]A; Przykłady: /TestCaseFilter:"Priority=1"]D;]A; /TestCaseFilter:"(FullyQualifiedName~Nocne]D;]A; |Name=MojaMetodaTestowa)"]]>
-
-
-
-
-
-
- = type.]D;]A; Examples: "Priority=1", "TestCategory=Nightly"]]>
-
- = .]D;]A; Przykłady: "Priority=1", "TestCategory=Nightly"]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pt-BR/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/pt-BR/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 0f9f31c901..0000000000
--- a/eng/Localize/lcl/pt-BR/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pt-BR/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/pt-BR/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 9e6ad3c88f..0000000000
--- a/eng/Localize/lcl/pt-BR/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 8ba910e13a..0000000000
--- a/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,116 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index c7e2f4d59a..0000000000
--- a/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true" property to project file.]]>
-
- true" ao arquivo de projeto.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 71f8f3833f..0000000000
--- a/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 63cce62db3..0000000000
--- a/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,372 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true is not supported for sources test run.]]>
-
- verdadeiro não tem suporte para execução de teste de fontes.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index e8a33cc8b1..0000000000
--- a/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,117 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 3ff6c71ef4..0000000000
--- a/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,159 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index f095025368..0000000000
--- a/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,357 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index ad36bfc00d..0000000000
--- a/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,174 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 1b166dcd9a..0000000000
--- a/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl b/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl
deleted file mode 100644
index dd5fa46a3c..0000000000
--- a/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl
+++ /dev/null
@@ -1,312 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl b/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl
deleted file mode 100644
index 2cf80a791d..0000000000
--- a/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl b/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl
deleted file mode 100644
index f85074c6d1..0000000000
--- a/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 97e3113c4b..0000000000
--- a/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,627 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- .]]>
-
- .]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index f18333913f..0000000000
--- a/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index a3c11ce537..0000000000
--- a/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,78 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl b/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl
deleted file mode 100644
index 2b62486f3d..0000000000
--- a/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 82879f7c5d..0000000000
--- a/eng/Localize/lcl/pt-BR/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,105 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pt-BR/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/pt-BR/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index aae28066a1..0000000000
--- a/eng/Localize/lcl/pt-BR/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A;SettingsMigrator.exe ]D;]A;Examples:]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings E:\MyTest\MyNewRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings E:\MyTest\MyNewRunSettings.runsettings]]>
-
- ]D;]A;SettingsMigrator.exe ]D;]A;Examples:]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings E:\MyTest\MyNewRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings E:\MyTest\MyNewRunSettings.runsettings]]>
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/pt-BR/src/vstest.console/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/pt-BR/src/vstest.console/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 27451da194..0000000000
--- a/eng/Localize/lcl/pt-BR/src/vstest.console/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,1794 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The directory containing the temporary outputs.]]>
-
- ]D;]A; O diretório que contém as saídas temporárias.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Enables data collector for the test run. More info here : https://aka.ms/vstest-collect]]>
-
- ]D;]A; Habilita o coletor de dados para a execução de teste. Mais informações aqui: https://aka.ms/vstest-collect]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The configuration the project is built for i.e. Debug/Release]]>
-
- ]D;]A; A configuração para a qual o projeto foi compilado, ou seja, Debug/Release]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Example: /DisableAutoFakes:true]]>
-
- ]D;]A; Exemplo: /DisableAutoFakes:true]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Enable logs for test platform.]D;]A; Logs are written to the provided file.]D;]A;]D;]A; Change the trace level for logs as shown below]D;]A; Example: /Diag:;tracelevel=]D;]A; Allowed values for tracelevel: off, error, warning, info and verbose.]]>
-
- ]D;]A; Habilitar os logs para a plataforma de teste.]D;]A; Os logs são gravados no arquivo fornecido.]D;]A;]D;]A;Alterar o nível de rastreamento dos logs, como mostrado abaixo]D;]A; Exemplo: /Diag:; tracelevel=]D;]A; Valores permitidos para tracelevel: off, error, warning, info e verbose.]]>
-
-
-
-
-
-
- ]D;]A; Specify a logger for test results. For example, to log results into a ]D;]A; Visual Studio Test Results File (TRX) use /logger:trx[;LogFileName=]5D;]D;]A; Creates file in TestResults directory with given LogFileName.]D;]A;]D;]A; Change the verbosity level in log messages for console logger as shown below]D;]A; Example: /logger:console;verbosity=]D;]A; Allowed values for verbosity: quiet, minimal, normal and detailed.]D;]A;]D;]A; Change the diagnostic level prefix for console logger as shown below]D;]A; Example: /logger:console;prefix=]D;]A; More info on Console Logger here : https://aka.ms/console-logger]]>
-
- ]D;]A; Especifique um agente para os resultados de teste. Por exemplo, para registrar os resultados em um Arquivo de Resultados de Teste (TRX) do ]D;]A; Visual Studio use /logger:trx[;LogFileName=]5D;]D;]A; Cria um arquivo no diretório TestResults com o LogFileName determinado.]D;]A;]D;]A; Altere o nível de detalhamento nas mensagens de log do agente de console, como mostrado abaixo]D;]A; Exemplo: /logger:console;verbosity=]D;]A; Os valores permitidos para o nível de detalhamento são: quiet, minimal, normal e detailed.]D;]A;]D;]A;Altere o prefixo de nível de diagnóstico do agente de console, como mostrado abaixo]D;]A; Exemplo: /logger:console;prefix=]D;]A; Veja mais informações sobre o Agente de Console aqui: https://aka.ms/console-logger]]>
-
-
-
-
-
-
- ]D;]A; Specify a logger for test results. For example, to log results into a ]D;]A; Visual Studio Test Results File (TRX) use /logger:trx[;LogFileName=]5D;]D;]A; Creates file in TestResults directory with given LogFileName.]D;]A;]D;]A; Change the verbosity level in log messages for console logger as shown below]D;]A; Example: /logger:console;verbosity=]D;]A; Allowed values for verbosity: quiet, minimal, normal and detailed.]D;]A;]D;]A; Change the diagnostic level prefix for console logger as shown below]D;]A; Example: /logger:console;prefix=]D;]A; More info on Console Logger here : https://aka.ms/console-logger]]>
-
- ]D;]A; Especifique um agente para os resultados de teste. Por exemplo, para registrar os resultados em um Arquivo de Resultados de Teste (TRX) do ]D;]A; Visual Studio use /logger:trx[;LogFileName=]5D;]D;]A; Cria um arquivo no diretório TestResults com o LogFileName determinado.]D;]A;]D;]A; Altere o nível de detalhamento nas mensagens de log do agente de console, como mostrado abaixo]D;]A; Exemplo: /logger:console;verbosity=]D;]A; Os valores permitidos para o nível de detalhamento são: quiet, minimal, normal e detailed.]D;]A;]D;]A;Altere o prefixo de nível de diagnóstico do agente de console, como mostrado abaixo]D;]A; Exemplo: /logger:console;prefix=]D;]A; Veja mais informações sobre o Agente de Console aqui: https://aka.ms/console-logger]]>
-
-
-
-
-
-
- =]D;]A; Sets the value of an environment variable. Creates the variable if it does not exist, overrides if it does. This will imply /InIsolation switch and force the tests to be run in an isolated process.]D;]A; ]D;]A; This argument can be specified multiple times to provide multiple variables.]D;]A;]D;]A; Example: -e:VARIABLE1=VALUE1]D;]A; -e:ANOTHER_VARIABLE="VALUE WITH SPACES"]D;]A; -e:ANOTHER_VARIABLE="VALUE;seperated with;semicolons"]]>
-
- =]D;]A; Define o valor de uma variável de ambiente. Cria a variável caso ela não exista e substitui caso exista. Isso implicará a opção /InIsolation e forçará a execução dos testes em um processo isolado.]D;]A; ]D;]A; Esse argumento pode ser especificado várias vezes para fornecer várias variáveis.]D;]A;]D;]A; Exemplo: -e:VARIABLE1=VALUE1]D;]A; -e:ANOTHER_VARIABLE="VALUE WITH SPACES"]D;]A; -e:ANOTHER_VARIABLE="VALUE;seperado com;ponto e vírgula"]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- vstest.console.exe tests.dll ]D;]A; To run tests with additional settings such as data collectors:]D;]A; >vstest.console.exe tests.dll /Settings:Local.RunSettings]]>
-
- vstest.console.exe tests.dll ]D;]A; Para executar testes com configurações adicionais, como coletores de dados:]D;]A; >vstest.console.exe tests.dll /Settings:Local.RunSettings]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Target .Net Framework version to be used for test execution. ]D;]A; Valid values are ".NETFramework,Version=v4.5.1", ".NETCoreApp,Version=v1.0" etc.]D;]A; Other supported values are Framework40, Framework45, FrameworkCore10 and FrameworkUap10.]]>
-
- ]D;]A; Versão de destino do .NET Framework a ser usada para execução de teste. ]D;]A; Os valores válidos são ".NETFramework,Version=v4.5.1", ".NETCoreApp,Version=v1.0" etc.]D;]A; Outros valores permitidos são Framework40, Framework45, FrameworkCore10 e FrameworkUap10.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ...]5D;]5D;]]>
-
- ...]5D;]5D;]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- \", value=\"\")]]>
-
- \", value=\"\")]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Lists all discovered tests from the given test container.]]>
-
- ]D;]A; Lista todos os testes detectados no contêiner de testes especificado.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The directory containing the binaries to run.]]>
-
- ]D;]A; O diretório que contém os binários a serem executados.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Process Id of the Parent Process responsible for launching current process.]]>
-
- ]D;]A; ID do Processo Pai responsável pela inicialização do processo atual.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Target platform architecture to be used for test execution. ]D;]A; Valid values are x86, x64 and ARM.]]>
-
- ]D;]A; Arquitetura da plataforma destino a ser usada na execução de teste. ]D;]A; Os valores válidos são x86, x64 e ARM.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The Port for socket connection and receiving the event messages.]]>
-
- ]D;]A; A Porta para a conexão de soquete e o recebimento de mensagens de eventos.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Read response file for more options.]]>
-
- ]D;]A; Ler o arquivo de resposta para obter mais opções.]]>
-
-
-
-
-
-
- ]]>
-
- ]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Settings to use when running tests.]]>
-
- ]D;]A; Configurações a serem usadas durante a execução de testes.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Run tests with names that match the provided values. To provide multiple]D;]A; values, separate them by commas.]D;]A; Examples: /Tests:TestMethod1]D;]A; /Tests:TestMethod1,testMethod2]]>
-
- ]D;]A; Execute testes com nomes que correspondam aos valores fornecidos. Para fornecer vários]D;]A; valores, separe-os por vírgulas.]D;]A; Exemplos: /Tests:TestMethod1]D;]A; /Tests:TestMethod1,testMethod2]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- .]]>
-
- .]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; This affects adapter loading behavior.]D;]A;]D;]A; Currently supported behaviors:]D;]A; - Explicit: Test Platform will only load adapters specified by /TestAdapterPath (or RunConfiguration.TestAdaptersPaths node). ]D;]A; If a specific adapter path is provided, adapter will be loaded; if a directory path is provided adapters directly in that folder will be loaded, unless Recursive option is also specified.]D;]A; If no adapter path is specified, test run will fail.]D;]A; This will imply /InIsolation switch and force the tests to be run in an isolated process.]D;]A; ]D;]A; - Default: Test Platform will load adapters is if this argument has not been specified. ]D;]A; It will pick up extensions from next to source, provided additional adapter paths and from the default directory.]D;]A;]D;]A; - DefaultRuntimeProviders: Load default runtime providers shipped with Test Platform. ]D;]A; If this is not specified when "Explicit" option is set, a test host provider need to be specified explicitly.]D;]A;]D;]A; - ExtensionsDirectory: Load adapters inside Extensions folder.]D;]A;]D;]A; - NextToSource: Load adapters next to source. ]D;]A;]D;]A; - Recursive: Recursively search folders when loading adapters. This requires "Explicit" or "NextToSource" to be specified too.]]>
-
- ]D;]A; Isto afeta o comportamento de carregamento do adaptador.]D;]A;]D;]A; Comportamentos suportados atualmente:]D;]A; - Explicito: Plataforma de Teste somente carregará adaptadores especificados por /TestAdapterPath (ou RunConfiguration.TestAdaptersPaths node).]D;]A; Se um caminho específico do adaptador for fornecido, o adaptador será carregado; se um caminho de diretório for fornecido adaptadores diretamente naquela pasta será carregado, a menos que a opção Recursive também seja especificada.]D;]A; Se nenhum caminho de adaptador for especificado, a execução do teste falhará.]D;]A; Isto implicará /InIsolation switch e forçará os testes a serem executados em um processo isolado.]D;]A; ]D;]A; - Padrão: Plataforma de teste carregará adaptadores é se este argumento não tiver sido especificado.]D;]A; Ela captará extensões ao lado da fonte, desde que os caminhos do adaptador adicionais e a partir do diretório padrão.]D;]A;]D;]A; - DefaultRuntimeProviders: Carregar os provedores de tempo de execução padrão enviados com a Plataforma de Teste. ]D;]A; Se isto não for especificado quando a opção "Explicit" estiver definida, um provedor de host de teste precisa ser especificado explicitamente.]D;]A;]D;]A; - ExtensionsDirectory: Carregar adaptadores dentro da pasta Extensões.]D;]A;]D;]A; - NextToSource: Adaptadores de carga ao lado da fonte. ]D;]A;]D;]A; - Recursivo: Buscar recursivamente as pastas ao carregar adaptadores. Isto requer que "Explicit" ou "NextToSource" seja especificado também.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]]>
-
- ]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Run tests that match the given expression.]D;]A; is of the format Operator[|&]5D;]D;]A; where Operator is one of =, != or ~ (Operator ~ has 'contains']D;]A; semantics and is applicable for string properties like DisplayName).]D;]A; Parenthesis () can be used to group sub-expressions.]D;]A; Examples: /TestCaseFilter:"Priority=1"]D;]A; /TestCaseFilter:"(FullyQualifiedName~Nightly]D;]A; |Name=MyTestMethod)"]]>
-
- ]D;]A; Executa testes que correspondem à expressão fornecida.]D;]A; tem o formato Operator[|&]5D;]D;]A; em que Operator é =, != ou ~ (o Operator ~ tem a semântica 'contains']D;]A; e é aplicável a propriedades de cadeia de caracteres como DisplayName).]D;]A; É possível usar parênteses () para agrupar subexpressões.]D;]A; Exemplos: /TestCaseFilter:"Priority=1"]D;]A; /TestCaseFilter:"(FullyQualifiedName~Nightly]D;]A; |Name=MyTestMethod)"]]>
-
-
-
-
-
-
- = type.]D;]A; Examples: "Priority=1", "TestCategory=Nightly"]]>
-
- = .]D;]A; Exemplos: "Priority=1", "TestCategory=Nightly"]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ru/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ru/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 4aeb1992a4..0000000000
--- a/eng/Localize/lcl/ru/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ru/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ru/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index a6cbdd423a..0000000000
--- a/eng/Localize/lcl/ru/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index f8ed2d848a..0000000000
--- a/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,116 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index d139226055..0000000000
--- a/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true" property to project file.]]>
-
- true" в файл проекта.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index f54f768042..0000000000
--- a/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 2493180b67..0000000000
--- a/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,372 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true is not supported for sources test run.]]>
-
- true не поддерживается для тестового запуска источников.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index fd603f6a72..0000000000
--- a/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,117 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index ebd2001466..0000000000
--- a/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,159 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index fd1f704d52..0000000000
--- a/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,357 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index b20153f032..0000000000
--- a/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,174 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index f5fe0fa55f..0000000000
--- a/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl b/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl
deleted file mode 100644
index efbd829e2b..0000000000
--- a/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl
+++ /dev/null
@@ -1,312 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl b/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl
deleted file mode 100644
index d78cfe6920..0000000000
--- a/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl b/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl
deleted file mode 100644
index de0569314f..0000000000
--- a/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 1e2754ace4..0000000000
--- a/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,627 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- .]]>
-
- .]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 9001cf435e..0000000000
--- a/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 578560ca31..0000000000
--- a/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,78 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl b/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl
deleted file mode 100644
index c842df974a..0000000000
--- a/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 9467fb7787..0000000000
--- a/eng/Localize/lcl/ru/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,105 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ru/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ru/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index b0d2cd277d..0000000000
--- a/eng/Localize/lcl/ru/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A;SettingsMigrator.exe ]D;]A;Examples:]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings E:\MyTest\MyNewRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings E:\MyTest\MyNewRunSettings.runsettings]]>
-
- ]D;]A;SettingsMigrator.exe <полный путь к переносимому файлу TestSettings или RunSettings> <полный путь к создаваемому файлу RunSettings>]D;]A;Примеры:]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings E:\MyTest\MyNewRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings E:\MyTest\MyNewRunSettings.runsettings]]>
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/ru/src/vstest.console/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/ru/src/vstest.console/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 995a955ccb..0000000000
--- a/eng/Localize/lcl/ru/src/vstest.console/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,1794 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The directory containing the temporary outputs.]]>
-
- ]D;]A; Каталог, содержащий временные выходные данные.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Enables data collector for the test run. More info here : https://aka.ms/vstest-collect]]>
-
- ]D;]A; Включает сборщик данных для тестового запуска. Подробнее: https://aka.ms/vstest-collect]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The configuration the project is built for i.e. Debug/Release]]>
-
- ]D;]A; Конфигурация, для которой создан проект, например Debug/Release]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Example: /DisableAutoFakes:true]]>
-
- ]D;]A; Пример: /DisableAutoFakes:true]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Enable logs for test platform.]D;]A; Logs are written to the provided file.]D;]A;]D;]A; Change the trace level for logs as shown below]D;]A; Example: /Diag:;tracelevel=]D;]A; Allowed values for tracelevel: off, error, warning, info and verbose.]]>
-
- ]D;]A; Включение журналов для платформы тестирования.]D;]A; Журналы записываются в предоставленный файл.]D;]A;]D;]A; Уровень трассировки для журналов можно изменить описанным ниже способом]D;]A; Пример: /Diag:<путь к файлу журнала>;tracelevel=<по умолчанию "verbose">]D;]A; Разрешенные значения для tracelevel: off, error, warning, info и verbose.]]>
-
-
-
-
-
-
- ]D;]A; Specify a logger for test results. For example, to log results into a ]D;]A; Visual Studio Test Results File (TRX) use /logger:trx[;LogFileName=]5D;]D;]A; Creates file in TestResults directory with given LogFileName.]D;]A;]D;]A; Change the verbosity level in log messages for console logger as shown below]D;]A; Example: /logger:console;verbosity=]D;]A; Allowed values for verbosity: quiet, minimal, normal and detailed.]D;]A;]D;]A; Change the diagnostic level prefix for console logger as shown below]D;]A; Example: /logger:console;prefix=]D;]A; More info on Console Logger here : https://aka.ms/console-logger]]>
-
- ]D;]A; Укажите средство ведения журнала результатов тестирования. Например, чтобы сохранять результаты в файле]D;]A; результатов тестов Visual Studio (TRX), укажите /logger:trx[;LogFileName=<по умолчанию уникальное имя файла>]5D;]D;]A; Создает файл в каталоге TestResults с заданным именем LogFileName.]D;]A;]D;]A; Изменить уровень детализации сообщений журнала для средства ведения журнала консоли можно описанным ниже способом]D;]A; Пример: /logger:console;verbosity=<по умолчанию "minimal">]D;]A; Допустимые значения для verbosity: quiet, minimal, normal и detailed.]D;]A;]D;]A; Изменить префикс уровня диагностики для средства ведения журнала консоли можно описанным ниже способом]D;]A; Пример: /logger:console;prefix=<по умолчанию "false">]D;]A; Подробнее о средстве ведения журнала консоли: https://aka.ms/console-logger]]>
-
-
-
-
-
-
- ]D;]A; Specify a logger for test results. For example, to log results into a ]D;]A; Visual Studio Test Results File (TRX) use /logger:trx[;LogFileName=]5D;]D;]A; Creates file in TestResults directory with given LogFileName.]D;]A;]D;]A; Change the verbosity level in log messages for console logger as shown below]D;]A; Example: /logger:console;verbosity=]D;]A; Allowed values for verbosity: quiet, minimal, normal and detailed.]D;]A;]D;]A; Change the diagnostic level prefix for console logger as shown below]D;]A; Example: /logger:console;prefix=]D;]A; More info on Console Logger here : https://aka.ms/console-logger]]>
-
- ]D;]A; Укажите средство ведения журнала результатов тестирования. Например, чтобы сохранять результаты в файле]D;]A; результатов тестов Visual Studio (TRX), укажите /logger:trx[;LogFileName=<по умолчанию уникальное имя файла>]5D;]D;]A; Создает файл в каталоге TestResults с заданным именем LogFileName.]D;]A;]D;]A; Изменить уровень детализации сообщений журнала для средства ведения журнала консоли можно описанным ниже способом]D;]A; Пример: /logger:console;verbosity=<по умолчанию "normal">]D;]A; Допустимые значения для verbosity: quiet, minimal, normal и detailed.]D;]A;]D;]A; Изменить префикс уровня диагностики для средства ведения журнала консоли можно описанным ниже способом]D;]A; Пример: /logger:console;prefix=<по умолчанию "false">]D;]A; Подробнее о средстве ведения журнала консоли: https://aka.ms/console-logger]]>
-
-
-
-
-
-
- =]D;]A; Sets the value of an environment variable. Creates the variable if it does not exist, overrides if it does. This will imply /InIsolation switch and force the tests to be run in an isolated process.]D;]A; ]D;]A; This argument can be specified multiple times to provide multiple variables.]D;]A;]D;]A; Example: -e:VARIABLE1=VALUE1]D;]A; -e:ANOTHER_VARIABLE="VALUE WITH SPACES"]D;]A; -e:ANOTHER_VARIABLE="VALUE;seperated with;semicolons"]]>
-
- =]D;]A; Устанавливает значение переменной среды. Если переменной среды не существует, она создается. Если переменная среды существует, она переопределяется. Этот параметр подразумевает использование параметра /InIsolation и принудительно выполняет тесты в изолированном процессе.]D;]A; ]D;]A; Этот аргумент может быть указан несколько раз для нескольких переменных среды.]D;]A;]D;]A; Пример: -e:VARIABLE1=VALUE1]D;]A; -e:ANOTHER_VARIABLE="VALUE WITH SPACES"]D;]A; -e:ANOTHER_VARIABLE="VALUE;seperated with;semicolons"]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- vstest.console.exe tests.dll ]D;]A; To run tests with additional settings such as data collectors:]D;]A; >vstest.console.exe tests.dll /Settings:Local.RunSettings]]>
-
- vstest.console.exe tests.dll ]D;]A; Запуск тестов с дополнительными параметрами, например со сборщиками данных:]D;]A; >vstest.console.exe tests.dll /Settings:Local.RunSettings]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Target .Net Framework version to be used for test execution. ]D;]A; Valid values are ".NETFramework,Version=v4.5.1", ".NETCoreApp,Version=v1.0" etc.]D;]A; Other supported values are Framework40, Framework45, FrameworkCore10 and FrameworkUap10.]]>
-
- ]D;]A; Целевая версия платформы .NET Framework, используемая для выполнения тестов. ]D;]A; Допустимые значения: ".NETFramework,Version=v4.5.1", ".NETCoreApp,Version=v1.0" и т. п.]D;]A; Другие поддерживаемые значения: Framework40, Framework45, FrameworkCore10 и FrameworkUap10.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ...]5D;]5D;]]>
-
- ...]5D;]5D;]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- \", value=\"\")]]>
-
- \", value=\"\")]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Lists all discovered tests from the given test container.]]>
-
- ]D;]A; Перечисление всех обнаруженных тестов из указанного контейнера тестов.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The directory containing the binaries to run.]]>
-
- ]D;]A; Каталог, содержащий двоичные файлы для запуска.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Process Id of the Parent Process responsible for launching current process.]]>
-
- ]D;]A; Идентификатор родительского процесса, отвечающего за запуск текущего процесса.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Target platform architecture to be used for test execution. ]D;]A; Valid values are x86, x64 and ARM.]]>
-
- ]D;]A; Архитектура целевой платформы, в которой будут выполняться тесты. ]D;]A; Допустимые значения: x86, x64 и ARM.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The Port for socket connection and receiving the event messages.]]>
-
- ]D;]A; Порт для подключения через сокет и получения сообщений о событиях.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Read response file for more options.]]>
-
- ]D;]A; Считывание файла ответов с дополнительными параметрами.]]>
-
-
-
-
-
-
- ]]>
-
- ]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Settings to use when running tests.]]>
-
- ]D;]A; Параметры, используемые при запуске тестов.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Run tests with names that match the provided values. To provide multiple]D;]A; values, separate them by commas.]D;]A; Examples: /Tests:TestMethod1]D;]A; /Tests:TestMethod1,testMethod2]]>
-
- ]D;]A; Запуск тестов с именами, соответствующими указанным значениям.]D;]A; Несколько значений разделяются запятыми.]D;]A; Примеры: /Tests:TestMethod1]D;]A; /Tests:TestMethod1,testMethod2]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- .]]>
-
- .]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; This affects adapter loading behavior.]D;]A;]D;]A; Currently supported behaviors:]D;]A; - Explicit: Test Platform will only load adapters specified by /TestAdapterPath (or RunConfiguration.TestAdaptersPaths node). ]D;]A; If a specific adapter path is provided, adapter will be loaded; if a directory path is provided adapters directly in that folder will be loaded, unless Recursive option is also specified.]D;]A; If no adapter path is specified, test run will fail.]D;]A; This will imply /InIsolation switch and force the tests to be run in an isolated process.]D;]A; ]D;]A; - Default: Test Platform will load adapters is if this argument has not been specified. ]D;]A; It will pick up extensions from next to source, provided additional adapter paths and from the default directory.]D;]A;]D;]A; - DefaultRuntimeProviders: Load default runtime providers shipped with Test Platform. ]D;]A; If this is not specified when "Explicit" option is set, a test host provider need to be specified explicitly.]D;]A;]D;]A; - ExtensionsDirectory: Load adapters inside Extensions folder.]D;]A;]D;]A; - NextToSource: Load adapters next to source. ]D;]A;]D;]A; - Recursive: Recursively search folders when loading adapters. This requires "Explicit" or "NextToSource" to be specified too.]]>
-
- ]D;]A; Это влияет на действия адаптера при загрузке.]D;]A;]D;]A; Действия, поддерживаемые в настоящее время:]D;]A; — Явный: Платформа тестирования будет загружать только адаптеры, указанные в параметре /TestAdapterPath (или узле RunConfiguration.TestAdaptersPaths). ]D;]A; Если указан конкретный путь к адаптеру, адаптер будет загружен; если указан путь к каталогу, то адаптеры, указанные непосредственно в этой папке, будут загружены, если не указан параметр Recursive.]D;]A; Если путь к адаптеру не указан, тестовый запуск завершится ошибкой.]D;]A; Это подразумевает переключение /InIsolation и принудительное выполнение тестов в изолированном процессе.]D;]A; ]D;]A; — Default: Платформа тестирования будет загружать адаптеры, если этот аргумент не указан. ]D;]A; Платформа будет выбирать расширения недалеко от источника, при условии наличия дополнительных путей к адаптеру, а также из каталога по умолчанию.]D;]A;]D;]A; — DefaultRuntimeProviders: загрузка поставщиков среды выполнения по умолчанию, поставляемых с платформой тестирования. ]D;]A; Если это не указано, когда задан параметр \"Явный\", поставщик узла тестирования должен быть указан явно.]D;]A;]D;]A; — ExtensionsDirectory: загружать адаптеры в папку \"Расширения\". ]D;]A;]D;]A; — NextToSource: загружать параметры рядом с источником. ]D;]A;]D;]A; — Recursive: рекурсивный поиск папок при загрузке адаптеров. Для этого также необходимо указать параметры \"Явный\" или \"NextToSource\".]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]]>
-
- ]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Run tests that match the given expression.]D;]A; is of the format Operator[|&]5D;]D;]A; where Operator is one of =, != or ~ (Operator ~ has 'contains']D;]A; semantics and is applicable for string properties like DisplayName).]D;]A; Parenthesis () can be used to group sub-expressions.]D;]A; Examples: /TestCaseFilter:"Priority=1"]D;]A; /TestCaseFilter:"(FullyQualifiedName~Nightly]D;]A; |Name=MyTestMethod)"]]>
-
- ]D;]A; Запуск тестов, соответствующих заданному выражению.]D;]A; <выражение> имеет формат <свойство>оператор<значение>[|&<выражение>]5D;]D;]A; где в качестве оператора может использоваться =, != или ~ (оператор ~ имеет семантику]D;]A; "содержит" и применим к строковым свойствам, таким как DisplayName).]D;]A; Вложенные выражения можно группировать с помощью скобок ().]D;]A; Примеры: /TestCaseFilter:"Priority=1"]D;]A; /TestCaseFilter:"(FullyQualifiedName~Nightly]D;]A; |Name=MyTestMethod)"]]>
-
-
-
-
-
-
- = type.]D;]A; Examples: "Priority=1", "TestCategory=Nightly"]]>
-
- =<значение>.]D;]A; Пример: "Priority=1", "TestCategory=Nightly"]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/tr/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/tr/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 2814f70c93..0000000000
--- a/eng/Localize/lcl/tr/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/tr/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/tr/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 5708a05126..0000000000
--- a/eng/Localize/lcl/tr/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index c58475d023..0000000000
--- a/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,116 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 13140653f9..0000000000
--- a/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true" property to project file.]]>
-
- true" özelliğini ekleyin.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index f148de8725..0000000000
--- a/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index ec0ebdb9f0..0000000000
--- a/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,372 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true is not supported for sources test run.]]>
-
- true kaynak test çalıştırması için desteklenmiyor.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index e38f441af8..0000000000
--- a/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,117 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 4c0121c405..0000000000
--- a/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,159 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index a1bf77ed83..0000000000
--- a/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,357 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 18090178ac..0000000000
--- a/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,174 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 5dd7df8d6e..0000000000
--- a/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl b/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl
deleted file mode 100644
index 8596d82685..0000000000
--- a/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl
+++ /dev/null
@@ -1,312 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl b/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl
deleted file mode 100644
index ca358c131d..0000000000
--- a/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl b/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl
deleted file mode 100644
index 9c8c6154d8..0000000000
--- a/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index aa2fd3a1f7..0000000000
--- a/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,627 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- .]]>
-
- .]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index fbeebd454a..0000000000
--- a/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 616b9ecae9..0000000000
--- a/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,78 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl b/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl
deleted file mode 100644
index 910ca74fa7..0000000000
--- a/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 15a9069e61..0000000000
--- a/eng/Localize/lcl/tr/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,105 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/tr/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/tr/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index acf7862eed..0000000000
--- a/eng/Localize/lcl/tr/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A;SettingsMigrator.exe ]D;]A;Examples:]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings E:\MyTest\MyNewRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings E:\MyTest\MyNewRunSettings.runsettings]]>
-
- ]D;]A;SettingsMigrator.exe ]D;]A;Örnekler:]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings E:\MyTest\MyNewRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings E:\MyTest\MyNewRunSettings.runsettings]]>
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/tr/src/vstest.console/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/tr/src/vstest.console/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index ea279f2d6d..0000000000
--- a/eng/Localize/lcl/tr/src/vstest.console/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,1794 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The directory containing the temporary outputs.]]>
-
- ]D;]A; Geçici çıkışları içeren dizin.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Enables data collector for the test run. More info here : https://aka.ms/vstest-collect]]>
-
- ]D;]A; Test çalıştırması için veri toplayıcıyı etkinleştirir. Daha fazla bilgi: https://aka.ms/vstest-collect]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The configuration the project is built for i.e. Debug/Release]]>
-
- ]D;]A; Projenin derleme nedeni olan yapılandırma (Debug/Release)]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Example: /DisableAutoFakes:true]]>
-
- ]D;]A; Örnek: /DisableAutoFakes:true]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Enable logs for test platform.]D;]A; Logs are written to the provided file.]D;]A;]D;]A; Change the trace level for logs as shown below]D;]A; Example: /Diag:;tracelevel=]D;]A; Allowed values for tracelevel: off, error, warning, info and verbose.]]>
-
- ]D;]A; Test platformu için günlükleri sağlayın.]D;]A; Günlükler sağlanan dosyaya yazılır.]D;]A;]D;]A;Günlükler için izleme düzeyini aşağıda gösterildiği gibi değiştirin]D;]A; Örnek: /Diag:; tracelevel=]D;]A; tracelevel için izin verilen değerler: kapalı, hata, uyarı, bilgiler ve ayrıntılı.]]>
-
-
-
-
-
-
- ]D;]A; Specify a logger for test results. For example, to log results into a ]D;]A; Visual Studio Test Results File (TRX) use /logger:trx[;LogFileName=]5D;]D;]A; Creates file in TestResults directory with given LogFileName.]D;]A;]D;]A; Change the verbosity level in log messages for console logger as shown below]D;]A; Example: /logger:console;verbosity=]D;]A; Allowed values for verbosity: quiet, minimal, normal and detailed.]D;]A;]D;]A; Change the diagnostic level prefix for console logger as shown below]D;]A; Example: /logger:console;prefix=]D;]A; More info on Console Logger here : https://aka.ms/console-logger]]>
-
- ]D;]A; Test sonuçları için bir günlükçü belirtin. Örneğin, sonuçları bir ]D;]A; Visual Studio Test Sonuçları Dosyası'na (TRX) kaydetmek için şunu kullanın: /logger:trx[;LogFileName=]5D;]D;]A; İlgili LogFileName ile TestResults dizininde dosya oluşturur.]D;]A;]D;]A; Konsol günlükçüsü için ayrıntı düzeyini günlük iletilerinde aşağıda gösterildiği gibi değiştirin]D;]A; Örnek: /logger:console;verbosity=]D;]A; Ayrıntı için izin verilen değerler: quiet, minimal, normal ve detailed.]D;]A;]D;]A; Konsol günlükçüsü için tanılama düzeyi ön ekini aşağıda gösterildiği gibi değiştirin]D;]A; Örnek: /logger:console;prefix=]D;]A; Konsol Günlükçüsü hakkında daha fazla bilgi: https://aka.ms/console-logger]]>
-
-
-
-
-
-
- ]D;]A; Specify a logger for test results. For example, to log results into a ]D;]A; Visual Studio Test Results File (TRX) use /logger:trx[;LogFileName=]5D;]D;]A; Creates file in TestResults directory with given LogFileName.]D;]A;]D;]A; Change the verbosity level in log messages for console logger as shown below]D;]A; Example: /logger:console;verbosity=]D;]A; Allowed values for verbosity: quiet, minimal, normal and detailed.]D;]A;]D;]A; Change the diagnostic level prefix for console logger as shown below]D;]A; Example: /logger:console;prefix=]D;]A; More info on Console Logger here : https://aka.ms/console-logger]]>
-
- ]D;]A; Test sonuçları için bir günlükçü belirtin. Örneğin, sonuçları bir ]D;]A; Visual Studio Test Sonuçları Dosyası'na (TRX) kaydetmek için şunu kullanın: /logger:trx[;LogFileName=]5D;]D;]A; İlgili LogFileName ile TestResults dizininde dosya oluşturur.]D;]A;]D;]A; Konsol günlükçüsü için ayrıntı düzeyini günlük iletilerinde aşağıda gösterildiği gibi değiştirin]D;]A; Örnek: /logger:console;verbosity=]D;]A; Ayrıntı için izin verilen değerler: quiet, minimal, normal ve detailed.]D;]A;]D;]A; Konsol günlükçüsü için tanılama düzeyi ön ekini aşağıda gösterildiği gibi değiştirin]D;]A; Örnek: /logger:console;prefix=]D;]A; Konsol Günlükçüsü hakkında daha fazla bilgi: https://aka.ms/console-logger]]>
-
-
-
-
-
-
- =]D;]A; Sets the value of an environment variable. Creates the variable if it does not exist, overrides if it does. This will imply /InIsolation switch and force the tests to be run in an isolated process.]D;]A; ]D;]A; This argument can be specified multiple times to provide multiple variables.]D;]A;]D;]A; Example: -e:VARIABLE1=VALUE1]D;]A; -e:ANOTHER_VARIABLE="VALUE WITH SPACES"]D;]A; -e:ANOTHER_VARIABLE="VALUE;seperated with;semicolons"]]>
-
- =]D;]A; Bir ortam değişkeninin değerini ayarlar. Değişken mevcut değilse oluşturur, varsa geçersiz kılar. Bu, /InIsolation anahtarını kapsar ve testleri yalıtılmış bir işlemde çalıştırılmaya zorlar.]D;]A; ]D;]A; Birden çok değişken sağlamak için bu bağımsız değişken birden çok kez belirtilebilir.]D;]A;]D;]A; Örnek: -e:VARIABLE1=VALUE1]D;]A; -e:ANOTHER_VARIABLE="VALUE WITH SPACES"]D;]A; -e:ANOTHER_VARIABLE="VALUE;seperated with;semicolons"]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- vstest.console.exe tests.dll ]D;]A; To run tests with additional settings such as data collectors:]D;]A; >vstest.console.exe tests.dll /Settings:Local.RunSettings]]>
-
- vstest.console.exe tests.dll ]D;]A; Testleri veri toplayıcılar gibi ek ayarlarla çalıştırmak için:]D;]A; >vstest.console.exe tests.dll /Settings:Local.RunSettings]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Target .Net Framework version to be used for test execution. ]D;]A; Valid values are ".NETFramework,Version=v4.5.1", ".NETCoreApp,Version=v1.0" etc.]D;]A; Other supported values are Framework40, Framework45, FrameworkCore10 and FrameworkUap10.]]>
-
- ]D;]A; Test yürütme için kullanılacak hedef .Net Framework sürümü. ]D;]A; Geçerli değerler: ".NETFramework,Version=v4.5.1", ".NETCoreApp,Version=v1.0" vb.]D;]A; Diğer desteklenen değerler: Framework40, Framework45, FrameworkCore10 ve FrameworkUap10.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ...]5D;]5D;]]>
-
- ...]5D;]5D;]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- \", value=\"\")]]>
-
- \", value=\"\")]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Lists all discovered tests from the given test container.]]>
-
- ]D;]A; Verilen test kapsayıcısında bulunan tüm testleri listeler.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The directory containing the binaries to run.]]>
-
- ]D;]A; Çalıştırılacak ikili dosyaları içeren dizin.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Process Id of the Parent Process responsible for launching current process.]]>
-
- ]D;]A; Geçerli işlemi başlatmadan sorumlu Üst İşlemin işlem kimliği.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Target platform architecture to be used for test execution. ]D;]A; Valid values are x86, x64 and ARM.]]>
-
- ]D;]A; Test yürütmesi için kullanılacak hedef platform mimarisi. ]D;]A; Geçerli değerler x86, x64 ve ARM'dir.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The Port for socket connection and receiving the event messages.]]>
-
- ]D;]A; Yuva bağlantısı ve olay iletilerini almaya yönelik Bağlantı Noktası.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Read response file for more options.]]>
-
- ]D;]A; Daha fazla seçenek için yanıt dosyasını okuyun.]]>
-
-
-
-
-
-
- ]]>
-
- ]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Settings to use when running tests.]]>
-
- ]D;]A; Testleri çalıştırırken kullanılacak ayarlar.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Run tests with names that match the provided values. To provide multiple]D;]A; values, separate them by commas.]D;]A; Examples: /Tests:TestMethod1]D;]A; /Tests:TestMethod1,testMethod2]]>
-
- ]D;]A; Sağlanan değerlerle eşleşen adlara sahip testleri çalıştırır. Birden çok]D;]A; değer sağlamak için, değerleri virgülle ayırın.]D;]A; Örnekler: /Tests:TestYöntemi1]D;]A; /Tests:TestYöntemi1,testYöntemi2]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- .]]>
-
- .]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; This affects adapter loading behavior.]D;]A;]D;]A; Currently supported behaviors:]D;]A; - Explicit: Test Platform will only load adapters specified by /TestAdapterPath (or RunConfiguration.TestAdaptersPaths node). ]D;]A; If a specific adapter path is provided, adapter will be loaded; if a directory path is provided adapters directly in that folder will be loaded, unless Recursive option is also specified.]D;]A; If no adapter path is specified, test run will fail.]D;]A; This will imply /InIsolation switch and force the tests to be run in an isolated process.]D;]A; ]D;]A; - Default: Test Platform will load adapters is if this argument has not been specified. ]D;]A; It will pick up extensions from next to source, provided additional adapter paths and from the default directory.]D;]A;]D;]A; - DefaultRuntimeProviders: Load default runtime providers shipped with Test Platform. ]D;]A; If this is not specified when "Explicit" option is set, a test host provider need to be specified explicitly.]D;]A;]D;]A; - ExtensionsDirectory: Load adapters inside Extensions folder.]D;]A;]D;]A; - NextToSource: Load adapters next to source. ]D;]A;]D;]A; - Recursive: Recursively search folders when loading adapters. This requires "Explicit" or "NextToSource" to be specified too.]]>
-
- ]D;]A; Bu, bağdaştırıcı yükleme davranışını etkiliyor.]D;]A;]D;]A; Şu anda desteklenen davranışlar:]D;]A; - Açık: Test Platformu yalnızca /TestAdapterPath (veya RunConfiguration.TestAdaptersPaths düğümü) tarafından belirtilen bağdaştırıcıları yükler. ]D;]A; Belirli bir bağdaştırıcı yolu sağlanırsa, bağdaştırıcı yüklenir; bir dizin yolu sağlanırsa Özyinelemeli seçeneği de belirtilmediği sürece bağdaştırıcılar doğrudan bu klasörde yüklenir.]D;]A; Bağdaştırıcı yolu belirtilmezse test çalıştırması başarısız olur.]D;]A; Bu, /InIsolation geçiş işlemini belirtir ve testleri yalıtılmış bir işlemde çalıştırılmaya zorlar.]D;]A; ]D;]A; - Varsayılan: Bu bağımsız değişken belirtilmemişse, Test Platformu bağdaştırıcıları yükler. ]D;]A; Kaynağın yanında, sağlanan ek bağdaştırıcı yolları ve varsayılan dizinden uzantılar alır.]D;]A;]D;]A; - DefaultRuntimeProviders: Test Platformu ile gönderilen varsayılan çalışma zamanı sağlayıcılarını yükleyin. ]D;]A; "Explicit" seçeneği ayarlandığında bu belirtilmezse, bir test ana bilgisayar sağlayıcısının açıkça belirtilmesi gerekir.]D;]A;]D;]A;- ExtensionsDirectory: Bağdaştırıcıları Uzantılar klasörünün içine yükleyin.]D;]A;]D;]A; - NextToSource: Bağdaştırıcıları kaynağın yanında yükle. ]D;]A;]D;]A; - Özyinelemeli: Bağdaştırıcılar yüklenirken klasörleri özyinelemeli olarak arayın. Bu, "Explicit" veya "NextToSource" öğesinin de belirtilmesini gerektirir.]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]]>
-
- ]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Run tests that match the given expression.]D;]A; is of the format Operator[|&]5D;]D;]A; where Operator is one of =, != or ~ (Operator ~ has 'contains']D;]A; semantics and is applicable for string properties like DisplayName).]D;]A; Parenthesis () can be used to group sub-expressions.]D;]A; Examples: /TestCaseFilter:"Priority=1"]D;]A; /TestCaseFilter:"(FullyQualifiedName~Nightly]D;]A; |Name=MyTestMethod)"]]>
-
- ]D;]A; Verilen ifadeyle eşleşen testleri çalıştırır.]D;]A; <İfade>, <özellik>İşleç[|&<İfade>]5D; biçimindedir;]D;]A; burada İşleç =, != veya ~ simgelerinden biridir (~ İşleci 'içerir']D;]A; anlamına gelir ve DisplayName gibi dize özelliklerine uygulanabilir).]D;]A; Alt ifadeleri gruplandırmak için ayraç () kullanılabilir.]D;]A; Örnekler: /TestCaseFilter:"Priority=1"]D;]A; /TestCaseFilter:"(TamAd~Gece]D;]A; |Name=TestYöntemim)"]]>
-
-
-
-
-
-
- = type.]D;]A; Examples: "Priority=1", "TestCategory=Nightly"]]>
-
- = türünde olabilir.]D;]A; Örnekler: "Priority=1", "TestCategory=Gece"]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hans/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/zh-Hans/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 5aca68b1b1..0000000000
--- a/eng/Localize/lcl/zh-Hans/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hans/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/zh-Hans/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index cf76b01fee..0000000000
--- a/eng/Localize/lcl/zh-Hans/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 817eb358e0..0000000000
--- a/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,116 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 95d3258ad3..0000000000
--- a/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true" property to project file.]]>
-
- true" 属性。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 31afea6d7d..0000000000
--- a/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index d1e13b0c78..0000000000
--- a/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,372 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true is not supported for sources test run.]]>
-
- true。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 816480119d..0000000000
--- a/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,117 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 08667df9ec..0000000000
--- a/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,159 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 26cf0316e6..0000000000
--- a/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,357 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index bc3d958d02..0000000000
--- a/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,177 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 03652f5e63..0000000000
--- a/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl b/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl
deleted file mode 100644
index 4c5605c158..0000000000
--- a/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl
+++ /dev/null
@@ -1,312 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl b/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl
deleted file mode 100644
index 7448d98d24..0000000000
--- a/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl b/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl
deleted file mode 100644
index dd5343271e..0000000000
--- a/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 88282d38dc..0000000000
--- a/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,627 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- .]]>
-
- 。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index ea969cdf0b..0000000000
--- a/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 88f2796e35..0000000000
--- a/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,78 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl b/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl
deleted file mode 100644
index c5995f578e..0000000000
--- a/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index b43013fae4..0000000000
--- a/eng/Localize/lcl/zh-Hans/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,105 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hans/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/zh-Hans/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 32fbfe0a8a..0000000000
--- a/eng/Localize/lcl/zh-Hans/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A;SettingsMigrator.exe ]D;]A;Examples:]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings E:\MyTest\MyNewRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings E:\MyTest\MyNewRunSettings.runsettings]]>
-
- ]D;]A;SettingsMigrator.exe ]D;]A;Examples:]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings E:\MyTest\MyNewRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings E:\MyTest\MyNewRunSettings.runsettings]]>
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hans/src/vstest.console/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/zh-Hans/src/vstest.console/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index fcb25b26b3..0000000000
--- a/eng/Localize/lcl/zh-Hans/src/vstest.console/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,1794 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The directory containing the temporary outputs.]]>
-
- ]D;]A; 包含临时输出的目录。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Enables data collector for the test run. More info here : https://aka.ms/vstest-collect]]>
-
- ]D;]A; 启用数据收集器以运行测试。可在此处获取详细信息: https://aka.ms/vstest-collect]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The configuration the project is built for i.e. Debug/Release]]>
-
- ]D;]A; 项目为调试/发布等生成的配置]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Example: /DisableAutoFakes:true]]>
-
- ]D;]A; 示例: /DisableAutoFakes:true]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Enable logs for test platform.]D;]A; Logs are written to the provided file.]D;]A;]D;]A; Change the trace level for logs as shown below]D;]A; Example: /Diag:;tracelevel=]D;]A; Allowed values for tracelevel: off, error, warning, info and verbose.]]>
-
- ]D;]A; 启用测试平台的日志。]D;]A; 日志将写入所提供的文件。]D;]A;]D;]A; 更改日志的跟踪级别,如下所示]D;]A; 示例: /Diag:;tracelevel=]D;]A; 允许的 tracelevel 的值: off、error、 warning、info 和 verbose。]]>
-
-
-
-
-
-
- ]D;]A; Specify a logger for test results. For example, to log results into a ]D;]A; Visual Studio Test Results File (TRX) use /logger:trx[;LogFileName=]5D;]D;]A; Creates file in TestResults directory with given LogFileName.]D;]A;]D;]A; Change the verbosity level in log messages for console logger as shown below]D;]A; Example: /logger:console;verbosity=]D;]A; Allowed values for verbosity: quiet, minimal, normal and detailed.]D;]A;]D;]A; Change the diagnostic level prefix for console logger as shown below]D;]A; Example: /logger:console;prefix=]D;]A; More info on Console Logger here : https://aka.ms/console-logger]]>
-
- ]D;]A; 为测试结果指定一个记录器。例如,若要将结果记录到]D;]A; Visual Studio 测试结果文件(TRX)中,请使用 /logger:trx[;LogFileName=]5D;]D;]A; 使用给定的 LogFileName 在 TestResults 目录中创建文件。]D;]A;]D;]A; 更改控制台记录器的日志消息中的详细程度,如下所示]D;]A; 示例: /logger:console;verbosity=]D;]A; 允许的详细程度的值: quiet、minimal、normal 和 detailed。]D;]A;]D;]A; 更改控制台记录器的诊断级别前缀,如下所示]D;]A; 示例: /logger:console;prefix=]D;]A; 此处为控制台记录器的详细信息: https://aka.ms/console-logger]]>
-
-
-
-
-
-
- ]D;]A; Specify a logger for test results. For example, to log results into a ]D;]A; Visual Studio Test Results File (TRX) use /logger:trx[;LogFileName=]5D;]D;]A; Creates file in TestResults directory with given LogFileName.]D;]A;]D;]A; Change the verbosity level in log messages for console logger as shown below]D;]A; Example: /logger:console;verbosity=]D;]A; Allowed values for verbosity: quiet, minimal, normal and detailed.]D;]A;]D;]A; Change the diagnostic level prefix for console logger as shown below]D;]A; Example: /logger:console;prefix=]D;]A; More info on Console Logger here : https://aka.ms/console-logger]]>
-
- ]D;]A; 为测试结果指定一个记录器。例如,若要将结果记录到 ]D;]A; Visual Studio 测试结果文件(TRX)中,请使用/logger:trx[;LogFileName=]5D;]D;]A; 使用给定的 LogFileName 在 TestResults 目录中创建文件。]D;]A;]D;]A; 更改控制台记录器的日志消息中的详细程度,如下所示]D;]A; 示例: /logger:console;verbosity]D;]A; 允许的详细程度的值: quiet、minimal、normal 和 detailed。]D;]A;]D;]A; 更改控制台记录器的诊断级别前缀,如下所示]D;]A; 示例: /logger:console;prefix=]D;]A; 此处为控制台记录器的详细信息: https://aka.ms/console-logger]]>
-
-
-
-
-
-
- =]D;]A; Sets the value of an environment variable. Creates the variable if it does not exist, overrides if it does. This will imply /InIsolation switch and force the tests to be run in an isolated process.]D;]A; ]D;]A; This argument can be specified multiple times to provide multiple variables.]D;]A;]D;]A; Example: -e:VARIABLE1=VALUE1]D;]A; -e:ANOTHER_VARIABLE="VALUE WITH SPACES"]D;]A; -e:ANOTHER_VARIABLE="VALUE;seperated with;semicolons"]]>
-
- =]D;]A; 设置环境变量的值。如果该变量不存在,则创建它;如果它已存在,则替代它。这将表示 /InIsolation 开关并强制在隔离的进程中运行测试。]D;]A; ]D;]A; 可多次指定此参数来提供多个变量。]D;]A;]D;]A; 示例: -e:VARIABLE1=VALUE1]D;]A; -e:ANOTHER_VARIABLE="VALUE WITH SPACES"]D;]A; -e:ANOTHER_VARIABLE="VALUE;seperated with;semicolons"]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- vstest.console.exe tests.dll ]D;]A; To run tests with additional settings such as data collectors:]D;]A; >vstest.console.exe tests.dll /Settings:Local.RunSettings]]>
-
- vstest.console.exe tests.dll ]D;]A; 使用其他设置(如数据收集器)运行测试:]D;]A; >vstest.console.exe tests.dll /Settings:Local.RunSettings]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Target .Net Framework version to be used for test execution. ]D;]A; Valid values are ".NETFramework,Version=v4.5.1", ".NETCoreApp,Version=v1.0" etc.]D;]A; Other supported values are Framework40, Framework45, FrameworkCore10 and FrameworkUap10.]]>
-
- ]D;]A; 用于执行测试的目标 .Net Framework 版本。]D;]A; 有效值为 ".NETFramework,Version=v4.5.1".NETCoreApp,Version=v1.0" 等。]D;]A; 其他支持的值为 Framework40、Framework45、FrameworkCore10 和 FrameworkUap10。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ...]5D;]5D;]]>
-
- ...]5D;]5D;]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- \", value=\"\")]]>
-
- \", value=\"\")]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Lists all discovered tests from the given test container.]]>
-
- ]D;]A; 从给定测试容器中列出所有已发现的测试。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The directory containing the binaries to run.]]>
-
- ]D;]A; 包含要运行的二进制文件的目录。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Process Id of the Parent Process responsible for launching current process.]]>
-
- ]D;]A; 父进程的进程 ID 负责启动当前进程。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Target platform architecture to be used for test execution. ]D;]A; Valid values are x86, x64 and ARM.]]>
-
- ]D;]A; 用于执行测试的目标平台体系结构。]D;]A; 有效值为 x86、x64 和 ARM。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The Port for socket connection and receiving the event messages.]]>
-
- ]D;]A; 套接字连接和接收事件消息的端口。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Read response file for more options.]]>
-
- ]D;]A; 有关更多选项,请阅读响应文件。]]>
-
-
-
-
-
-
- ]]>
-
- ]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Settings to use when running tests.]]>
-
- ]D;]A; 运行测试时要使用的设置。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Run tests with names that match the provided values. To provide multiple]D;]A; values, separate them by commas.]D;]A; Examples: /Tests:TestMethod1]D;]A; /Tests:TestMethod1,testMethod2]]>
-
- ]D;]A; 运行其名称与所提供值相匹配的测试。若要提供多个]D;]A; 值,请用逗号将这些值分隔开。]D;]A; 示例: /Tests:TestMethod1]D;]A; /Tests:TestMethod1,testMethod2]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- .]]>
-
- 。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; This affects adapter loading behavior.]D;]A;]D;]A; Currently supported behaviors:]D;]A; - Explicit: Test Platform will only load adapters specified by /TestAdapterPath (or RunConfiguration.TestAdaptersPaths node). ]D;]A; If a specific adapter path is provided, adapter will be loaded; if a directory path is provided adapters directly in that folder will be loaded, unless Recursive option is also specified.]D;]A; If no adapter path is specified, test run will fail.]D;]A; This will imply /InIsolation switch and force the tests to be run in an isolated process.]D;]A; ]D;]A; - Default: Test Platform will load adapters is if this argument has not been specified. ]D;]A; It will pick up extensions from next to source, provided additional adapter paths and from the default directory.]D;]A;]D;]A; - DefaultRuntimeProviders: Load default runtime providers shipped with Test Platform. ]D;]A; If this is not specified when "Explicit" option is set, a test host provider need to be specified explicitly.]D;]A;]D;]A; - ExtensionsDirectory: Load adapters inside Extensions folder.]D;]A;]D;]A; - NextToSource: Load adapters next to source. ]D;]A;]D;]A; - Recursive: Recursively search folders when loading adapters. This requires "Explicit" or "NextToSource" to be specified too.]]>
-
- ]D;]A; 这会影响适配器加载行为。]D;]A;]D;]A; 当前支持的行为:]D;]A; - Explicit: 测试平台将仅加载 /TestAdapterPath (或 RunConfiguration.TestAdaptersPaths 节点) 指定的适配器。]D;]A; 如果提供了特定适配器路径,则会加载适配器;如果提供了目录路径,则将直接加载该文件夹中的适配器,除非还指定了 Recursive 选项。]D;]A; 如果未指定适配器路径,则测试运行将失败。]D;]A; 这将暗示 /InIsolation 开关并强制测试在隔离进程中运行。]D;]A; ]D;]A; - 默认: 如果未指定此参数,则测试平台将加载适配器。]D;]A; 它将从源旁边、提供的附加适配器路径和默认目录中选取扩展。]D;]A;]D;]A; - DefaultRuntimeProviders: 加载随测试平台一起提供的默认运行时提供程序。]D;]A; 如果在设置“Explicit”选项时未指定,则需要显式指定测试主机提供程序。]D;]A;]D;]A; - ExtensionsDirectory: 在 Extensions 文件夹内加载适配器。]D;]A;]D;]A; - NextToSource: 在源旁边加载适配器。]D;]A;]D;]A; - Recursive: 加载适配器时以递归方式搜索文件夹。这也需要指定“Explicit”或“NextToSource”。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]]>
-
- ]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Run tests that match the given expression.]D;]A; is of the format Operator[|&]5D;]D;]A; where Operator is one of =, != or ~ (Operator ~ has 'contains']D;]A; semantics and is applicable for string properties like DisplayName).]D;]A; Parenthesis () can be used to group sub-expressions.]D;]A; Examples: /TestCaseFilter:"Priority=1"]D;]A; /TestCaseFilter:"(FullyQualifiedName~Nightly]D;]A; |Name=MyTestMethod)"]]>
-
- ]D;]A; 运行与给定表达式匹配的测试。]D;]A; 的格式为 Operator[|&]5D;]D;]A; 其中,Operator 是 =、!= 或 ~ (Operator ~ 具有 "contains"]D;]A; 语义且适用于诸如 DisplayName 之类的字符串属性)。]D;]A; 括号()可用于对子表达式进行分组。]D;]A; 示例: /TestCaseFilter:"Priority=1"]D;]A; /TestCaseFilter:"(FullyQualifiedName~Nightly]D;]A; |Name=MyTestMethod)"]]>
-
-
-
-
-
-
- = type.]D;]A; Examples: "Priority=1", "TestCategory=Nightly"]]>
-
- =<值>”类型。]D;]A; 示例: "Priority=1", "TestCategory=Nightly"]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hant/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/zh-Hant/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 508850eecf..0000000000
--- a/eng/Localize/lcl/zh-Hant/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hant/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/zh-Hant/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 014fde6e58..0000000000
--- a/eng/Localize/lcl/zh-Hant/src/DataCollectors/TraceDataCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 20489d16f1..0000000000
--- a/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,116 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 8cc963db48..0000000000
--- a/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true" property to project file.]]>
-
- true" 屬性。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 66bb7b5c89..0000000000
--- a/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 9eccc1e21e..0000000000
--- a/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,372 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true is not supported for sources test run.]]>
-
- true。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 6c32109bb6..0000000000
--- a/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,117 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index a4e2766352..0000000000
--- a/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,159 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index d6b5055bfc..0000000000
--- a/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,357 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 71362a7425..0000000000
--- a/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,174 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index e08c17ec75..0000000000
--- a/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.Extensions.HtmlLogger/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl b/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl
deleted file mode 100644
index 128ab9c210..0000000000
--- a/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.Extensions.TrxLogger/Resources/xlf/TrxResource.xlf.lcl
+++ /dev/null
@@ -1,312 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl b/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl
deleted file mode 100644
index f903308355..0000000000
--- a/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/CommonResources.xlf.lcl
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl b/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl
deleted file mode 100644
index 843015ad61..0000000000
--- a/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/ManagedNameMessages.xlf.lcl
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index cf5e5992d9..0000000000
--- a/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.ObjectModel/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,627 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- .]]>
-
- 。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 53b6b37a76..0000000000
--- a/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.TestHostProvider/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index cc78db55f7..0000000000
--- a/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.Utilities/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,78 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl b/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl
deleted file mode 100644
index a9eca67c47..0000000000
--- a/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/InternalResources.xlf.lcl
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 28e151ec08..0000000000
--- a/eng/Localize/lcl/zh-Hant/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,105 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hant/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/zh-Hant/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 3e60d5fb72..0000000000
--- a/eng/Localize/lcl/zh-Hant/src/SettingsMigrator/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A;SettingsMigrator.exe ]D;]A;Examples:]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings E:\MyTest\MyNewRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings E:\MyTest\MyNewRunSettings.runsettings]]>
-
- ]D;]A;SettingsMigrator.exe <要建立的 runsettings 檔案的完整路徑>]D;]A;範例:]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyTestSettings.testsettings E:\MyTest\MyNewRunSettings.runsettings]D;]A;SettingsMigrator.exe E:\MyTest\MyOldRunSettings.runsettings E:\MyTest\MyNewRunSettings.runsettings]]>
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/Localize/lcl/zh-Hant/src/vstest.console/Resources/xlf/Resources.xlf.lcl b/eng/Localize/lcl/zh-Hant/src/vstest.console/Resources/xlf/Resources.xlf.lcl
deleted file mode 100644
index 5ad6c22cd3..0000000000
--- a/eng/Localize/lcl/zh-Hant/src/vstest.console/Resources/xlf/Resources.xlf.lcl
+++ /dev/null
@@ -1,1803 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The directory containing the temporary outputs.]]>
-
- ]D;]A; 包含暫存輸出的目錄。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Enables data collector for the test run. More info here : https://aka.ms/vstest-collect]]>
-
- ]D;]A; 為測試回合啟用資料收集器。此處有詳細資訊: https://aka.ms/vstest-collect]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The configuration the project is built for i.e. Debug/Release]]>
-
- ]D;]A; 建置專案標的組態,例如,偵錯/發行]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Example: /DisableAutoFakes:true]]>
-
- ]D;]A; 範例: /DisableAutoFakes:true]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Enable logs for test platform.]D;]A; Logs are written to the provided file.]D;]A;]D;]A; Change the trace level for logs as shown below]D;]A; Example: /Diag:;tracelevel=]D;]A; Allowed values for tracelevel: off, error, warning, info and verbose.]]>
-
- ]D;]A; 啟用測試平台的記錄檔。]D;]A; 記錄會寫入提供的檔案。]D;]A;]D;]A; 變更記錄檔的追蹤層級,如下所示]D;]A; 範例: /Diag:<日誌檔路徑>;tracelevel=<預設為 [詳細資訊]5D;>]D;]A; 允許的 tracelevel 值為: 關閉、錯誤、警告、資訊與詳細資訊。]]>
-
-
-
-
-
-
- ]D;]A; Specify a logger for test results. For example, to log results into a ]D;]A; Visual Studio Test Results File (TRX) use /logger:trx[;LogFileName=]5D;]D;]A; Creates file in TestResults directory with given LogFileName.]D;]A;]D;]A; Change the verbosity level in log messages for console logger as shown below]D;]A; Example: /logger:console;verbosity=]D;]A; Allowed values for verbosity: quiet, minimal, normal and detailed.]D;]A;]D;]A; Change the diagnostic level prefix for console logger as shown below]D;]A; Example: /logger:console;prefix=]D;]A; More info on Console Logger here : https://aka.ms/console-logger]]>
-
- ]D;]A; 指定測試結果的記錄器。例如,使用 /logger:trx[;LogFileName=<預設為唯一的檔案名稱>]5D;,]D;]A; 將結果記錄至 Visual Studio 測試結果檔案 (TRX)]D;]A; 以指定的 LogFileName,在 TestResults 目錄中建立檔案。]D;]A;]D;]A; 變更主控台記錄器的記錄訊息詳細程度等級,如下所示]D;]A; 範例: /logger:console;verbosity=<預設為 "minimal">]D;]A; 詳細程度的允許值: quiet、minimal、normal 以及 detailed。]D;]A;]D;]A; 變更主控台記錄器的診斷等級前置詞,如下所示]D;]A; 範例: /logger:console;prefix=<預設為 "false">]D;]A; 主控台記錄器詳細資訊於此: https://aka.ms/console-logger]]>
-
-
-
-
-
-
- ]D;]A; Specify a logger for test results. For example, to log results into a ]D;]A; Visual Studio Test Results File (TRX) use /logger:trx[;LogFileName=]5D;]D;]A; Creates file in TestResults directory with given LogFileName.]D;]A;]D;]A; Change the verbosity level in log messages for console logger as shown below]D;]A; Example: /logger:console;verbosity=]D;]A; Allowed values for verbosity: quiet, minimal, normal and detailed.]D;]A;]D;]A; Change the diagnostic level prefix for console logger as shown below]D;]A; Example: /logger:console;prefix=]D;]A; More info on Console Logger here : https://aka.ms/console-logger]]>
-
- ]D;]A; 指定測試結果的記錄器。例如,使用 /logger:trx[;LogFileName=<預設為唯一的檔案名稱>]5D;,]D;]A; 將結果記錄至 Visual Studio 測試結果檔案 (TRX)]D;]A; 以指定的 LogFileName,在 TestResults 目錄中建立檔案。]D;]A;]D;]A; 變更主控台記錄器的記錄訊息詳細程度等級,如下所示]D;]A; 範例: /logger:console;verbosity=<預設為 "normal">]D;]A; 詳細程度的允許值: quiet、minimal、normal 以及 detailed。]D;]A;]D;]A; 變更主控台記錄器的診斷等級前置詞,如下所示]D;]A; 範例: /logger:console;prefix=<預設為 "false">]D;]A; 主控台記錄器詳細資訊於此: https://aka.ms/console-logger]]>
-
-
-
-
-
-
- =]D;]A; Sets the value of an environment variable. Creates the variable if it does not exist, overrides if it does. This will imply /InIsolation switch and force the tests to be run in an isolated process.]D;]A; ]D;]A; This argument can be specified multiple times to provide multiple variables.]D;]A;]D;]A; Example: -e:VARIABLE1=VALUE1]D;]A; -e:ANOTHER_VARIABLE="VALUE WITH SPACES"]D;]A; -e:ANOTHER_VARIABLE="VALUE;seperated with;semicolons"]]>
-
- =]D;]A; 設定環境變數的值。若變數不存在,則加以建立;若有則予以覆寫。這表示 /InIsolation 會在隔離流程中將測試切換並強制執行。]D;]A; ]D;]A; 此引數可供多次指定,以提供多項變數。]D;]A;]D;]A; 範例: -e:VARIABLE1=VALUE1]D;]A; -e:ANOTHER_VARIABLE="VALUE WITH SPACES"]D;]A; -e:ANOTHER_VARIABLE="VALUE;seperated with;semicolons"]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- vstest.console.exe tests.dll ]D;]A; To run tests with additional settings such as data collectors:]D;]A; >vstest.console.exe tests.dll /Settings:Local.RunSettings]]>
-
- vstest.console.exe tests.dll ]D;]A; 執行測試,同時附上像是資料收集器等其他設定:]D;]A; >vstest.console.exe tests.dll /Settings:Local.RunSettings]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Target .Net Framework version to be used for test execution. ]D;]A; Valid values are ".NETFramework,Version=v4.5.1", ".NETCoreApp,Version=v1.0" etc.]D;]A; Other supported values are Framework40, Framework45, FrameworkCore10 and FrameworkUap10.]]>
-
- ]D;]A; 用於測試執行的目標.Net Framework 版本。 ]D;]A; 有效的值為 ".NETFramework,Version=v4.5.1"、".NETCoreApp,Version=v1.0" 等等。]D;]A; 其他支援的值為 Framework40、Framework45、FrameworkCore10 與 FrameworkUap10。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ...]5D;]5D;]]>
-
- ...]5D;]5D;]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- \", value=\"\")]]>
-
- \", value=\"\")]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Lists all discovered tests from the given test container.]]>
-
- ]D;]A; 列出所有從指定測試容器探索到的測試。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The directory containing the binaries to run.]]>
-
- ]D;]A; 包含要執行的二進位檔案的目錄。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Process Id of the Parent Process responsible for launching current process.]]>
-
- ]D;]A; 負責啟動目前處理序的父處理序之處理序識別碼。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Target platform architecture to be used for test execution. ]D;]A; Valid values are x86, x64 and ARM.]]>
-
- ]D;]A; 用於測試執行的目標平台架構。]D;]A; 有效值為 x86、x64 和 ARM。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; The Port for socket connection and receiving the event messages.]]>
-
- ]D;]A; 通訊端連線以及接收事件訊息的連接埠。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Read response file for more options.]]>
-
- ]D;]A; 讀取回應檔以取得更多選項。]]>
-
-
-
-
-
-
- ]]>
-
- ]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Settings to use when running tests.]]>
-
- ]D;]A; 執行測試時要使用的設定。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Run tests with names that match the provided values. To provide multiple]D;]A; values, separate them by commas.]D;]A; Examples: /Tests:TestMethod1]D;]A; /Tests:TestMethod1,testMethod2]]>
-
- ]D;]A; 對名稱符合所提供值的項目執行測試。]D;]A; 若要提供多個值,請使用逗號將其分隔。]D;]A; 範例: /Tests:TestMethod1]D;]A; /Tests:TestMethod1,testMethod2]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- .]]>
-
- 。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; This affects adapter loading behavior.]D;]A;]D;]A; Currently supported behaviors:]D;]A; - Explicit: Test Platform will only load adapters specified by /TestAdapterPath (or RunConfiguration.TestAdaptersPaths node). ]D;]A; If a specific adapter path is provided, adapter will be loaded; if a directory path is provided adapters directly in that folder will be loaded, unless Recursive option is also specified.]D;]A; If no adapter path is specified, test run will fail.]D;]A; This will imply /InIsolation switch and force the tests to be run in an isolated process.]D;]A; ]D;]A; - Default: Test Platform will load adapters is if this argument has not been specified. ]D;]A; It will pick up extensions from next to source, provided additional adapter paths and from the default directory.]D;]A;]D;]A; - DefaultRuntimeProviders: Load default runtime providers shipped with Test Platform. ]D;]A; If this is not specified when "Explicit" option is set, a test host provider need to be specified explicitly.]D;]A;]D;]A; - ExtensionsDirectory: Load adapters inside Extensions folder.]D;]A;]D;]A; - NextToSource: Load adapters next to source. ]D;]A;]D;]A; - Recursive: Recursively search folders when loading adapters. This requires "Explicit" or "NextToSource" to be specified too.]]>
-
- ]D;]A; 這會影響介面卡載入行為。]D;]A;]D;]A; 目前支援的行:]D;]A; - 明確: 測試平台只會載入 /TestAdapterPath 指定的介面卡 (或 RunConfiguration.TestAdaptersPaths 節點)。]D;]A; 如果提供特定介面卡路徑,將會載入介面卡; 如果目錄路徑是直接在該資料夾中提供介面卡,則會載入,除非同時指定 [Recursive]5D; 選項。]D;]A; 如果沒有指定介面卡路徑,測試回合將會失敗。]D;]A; 這會隱含 /InIsolation 切換參數,並強制在隔離的處理常式中執行測試。]D;]A; ]D;]A; - Default: 如果尚未指定此引數,則測試平台會載入介面卡。]D;]A; 它會從來源旁邊、提供的額外介面卡路徑以及預設目錄中挑選擴充功能。]D;]A;]D;]A; - DefaultRuntimeProviders: 載入測試平台隨附的預設執行階段提供者。]D;]A; 如果設定 [明確]5D; 選項時未指定此項目,則必須明確指定測試主機提供者。]D;]A;]D;]A; - ExtensionsDirectory: 在 [擴充功能]5D; 資料夾內載入介面卡。]D;]A;]D;]A; - NextToSource: 載入來源旁的介面卡。]D;]A;]D;]A; - Recursive: 載入介面卡時,以遞迴方式搜尋資料夾。這需要也指定「明確」或「NextToSource」。]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]]>
-
- ]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ]D;]A; Run tests that match the given expression.]D;]A; is of the format Operator[|&]5D;]D;]A; where Operator is one of =, != or ~ (Operator ~ has 'contains']D;]A; semantics and is applicable for string properties like DisplayName).]D;]A; Parenthesis () can be used to group sub-expressions.]D;]A; Examples: /TestCaseFilter:"Priority=1"]D;]A; /TestCaseFilter:"(FullyQualifiedName~Nightly]D;]A; |Name=MyTestMethod)"]]>
-
- ]D;]A; 執行符合指定運算式的測試。]D;]A; 的格式為 Operator[|&]5D;]D;]A; 其中 Operator 是 =、!= 或 ~ 的其中之一 (運算子 ~ 具有 'contains']D;]A; 語意,且適用於 DisplayName 之類的字串屬性)。]D;]A; 您可以使用括號 () 來分組子運算式。]D;]A; 範例: /TestCaseFilter:"Priority=1"]D;]A; /TestCaseFilter:"(FullyQualifiedName~Nightly]D;]A; |Name=MyTestMethod)"]]>
-
-
-
-
-
-
- = type.]D;]A; Examples: "Priority=1", "TestCategory=Nightly"]]>
-
- = 類型。]D;]A; 範例: "Priority=1", "TestCategory=Nightly"]]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/eng/RestoreInternal.cmd b/eng/RestoreInternal.cmd
new file mode 100644
index 0000000000..7025eccf87
--- /dev/null
+++ b/eng/RestoreInternal.cmd
@@ -0,0 +1,2 @@
+@echo off
+powershell -ExecutionPolicy ByPass -NoProfile -command "& """%~dp0\common\build.ps1""" -build -restore %*"
diff --git a/eng/SourceBuild.props b/eng/SourceBuild.props
index 82094612a3..84c9ba09bf 100644
--- a/eng/SourceBuild.props
+++ b/eng/SourceBuild.props
@@ -1,3 +1,5 @@
+
+
diff --git a/eng/SourceBuildPrebuiltBaseline.xml b/eng/SourceBuildPrebuiltBaseline.xml
index c1b6dfbf05..18749165ca 100644
--- a/eng/SourceBuildPrebuiltBaseline.xml
+++ b/eng/SourceBuildPrebuiltBaseline.xml
@@ -1,5 +1,8 @@
+
+
+
-
+
diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml
index 378adb6827..65cc1f2b92 100644
--- a/eng/Version.Details.xml
+++ b/eng/Version.Details.xml
@@ -1,53 +1,44 @@
-
+ https://dev.azure.com/devdiv/DevDiv/_git/vs-code-coverage
- e5d0ad80f34457cf323cca9107318f0e970139f1
+ d211308037c90cd5e1892c3a88f7de77e44d269d
-
+ https://github.com/dotnet/diagnostics
- e3e1490a23f27a6e0ed30d323035660c3ffc52cd
+ 5ce78f66d89ea529e459abddb129ab36cb5bd936
-
+ https://github.com/dotnet/diagnostics
- e3e1490a23f27a6e0ed30d323035660c3ffc52cd
+ 5ce78f66d89ea529e459abddb129ab36cb5bd936
-
-
-
- https://github.com/dotnet/arcade
- b12f035e893c34ec2c965d75f6e21b7a2667e98d
-
+
+ https://github.com/dotnet/source-build-externals
+ 7a43ba8792da756726edd85e5e81e79ae174398f
+
-
- https://github.com/dotnet/arcade
- b12f035e893c34ec2c965d75f6e21b7a2667e98d
-
-
- https://github.com/dotnet/arcade
- b12f035e893c34ec2c965d75f6e21b7a2667e98d
+
+ https://github.com/dotnet/source-build-reference-packages
+ 4a3b4b6b37bdafe501477bf2e564380e1962ce61
+
-
- https://github.com/dotnet/arcade
- b12f035e893c34ec2c965d75f6e21b7a2667e98d
+
+ https://github.com/nuget/nuget.client
+ 4ba7bfa82f894ec32a554ca8d2df143675c85735
-
+
+
+ https://github.com/dotnet/arcade
- b12f035e893c34ec2c965d75f6e21b7a2667e98d
-
-
- https://github.com/dotnet/arcade-services
- cd705029f2675970b42f9273ae359d0926c5e815
+ 1aff4eb33aa7cbf26ccd9fc43c17cb609a14dad4
+
-
+ https://github.com/dotnet/roslyn
- 4b309dc5400e39a2eea09d82077737c1df5f347a
-
-
- https://github.com/dotnet/sourcelink
- afa9aa7032f810ad91d84857b95ad1d071192afa
+ 50bd09a9eefdf9bc3653dbf6d9624b31a023c7c0
+ https://github.com/dotnet/symreader-converter
@@ -57,9 +48,15 @@
https://github.com/dotnet/symreader-converterc5ba7c88f92e2dde156c324a8c8edc04d9fa4fe0
-
+ https://github.com/dotnet/xliff-tasks
- f5321d0c7b3f5e6103440fc017253bcdb50a0a26
+ a0391b3beff0696561189b5881f8af3b651d64ac
+
+
+
+ https://github.com/dotnet/sourcelink
+ 47c52dd2ebf9edfd40abdcff999c13eb461f6ce2
+
diff --git a/eng/Versions.props b/eng/Versions.props
index 14b284f98c..dbffb6d634 100644
--- a/eng/Versions.props
+++ b/eng/Versions.props
@@ -15,35 +15,38 @@
1.2.0
- 17.3.32622.42616.0.461$(MicrosoftBuildFrameworkPackageVersion)$(MicrosoftBuildPackageVersion)3.8.0-3.20427.2
- 0.2.0-preview.22424.1
- 3.0.0-preview4-27615-11
+ 17.7.0
+ 0.2.0-preview.23211.1
+ 3.0.02.0.017.4.0-beta.22478.3
- 17.7.0-beta.23181.4
- 17.5.0-preview-3-33219-258
+ 17.7.2-beta.23308.3
+ 4.6.0-1.23107.10
+ 17.6.33617.297$(MicrosoftVisualStudioDiagnosticsUtilitiesVersion)
+ 17.3.32622.426
+ 17.4.21162.0.313.0.13.3.33.3.4-beta1.21554.21.5.0
+ 7.0.0
+ 4.5.04.5.54.3.41.6.04.3.2
- 17.3.32621.448
- 17.3.32621.448
- 17.4.2116
- 4.6.0-1.final
+ 17.7.0-preview-3-33808-347
+ 17.7.0-preview-3-33808-347
- 6.7.0
+ 6.11.04.16.117.4.1
@@ -58,9 +61,11 @@
3.10.13.11.03.8.0
-
+
[2.3.0-preview-20220613-02][2.2.10]
@@ -78,11 +83,11 @@
[16.6.1][16.11.0][15.9.2]
-
- 5.11.0
+
+
+ 6.5.05.0.013.0.1
-
- 17.3.32621.448
diff --git a/eng/common/cross/arm/sources.list.xenial b/eng/common/cross/arm/sources.list.xenial
index eacd86b7df..56fbb36a59 100644
--- a/eng/common/cross/arm/sources.list.xenial
+++ b/eng/common/cross/arm/sources.list.xenial
@@ -8,4 +8,4 @@ deb http://ports.ubuntu.com/ubuntu-ports/ xenial-backports main restricted
deb-src http://ports.ubuntu.com/ubuntu-ports/ xenial-backports main restricted
deb http://ports.ubuntu.com/ubuntu-ports/ xenial-security main restricted universe multiverse
-deb-src http://ports.ubuntu.com/ubuntu-ports/ xenial-security main restricted universe multiverse
\ No newline at end of file
+deb-src http://ports.ubuntu.com/ubuntu-ports/ xenial-security main restricted universe multiverse
diff --git a/eng/common/cross/arm64/sources.list.xenial b/eng/common/cross/arm64/sources.list.xenial
index eacd86b7df..56fbb36a59 100644
--- a/eng/common/cross/arm64/sources.list.xenial
+++ b/eng/common/cross/arm64/sources.list.xenial
@@ -8,4 +8,4 @@ deb http://ports.ubuntu.com/ubuntu-ports/ xenial-backports main restricted
deb-src http://ports.ubuntu.com/ubuntu-ports/ xenial-backports main restricted
deb http://ports.ubuntu.com/ubuntu-ports/ xenial-security main restricted universe multiverse
-deb-src http://ports.ubuntu.com/ubuntu-ports/ xenial-security main restricted universe multiverse
\ No newline at end of file
+deb-src http://ports.ubuntu.com/ubuntu-ports/ xenial-security main restricted universe multiverse
diff --git a/eng/common/cross/build-rootfs.sh b/eng/common/cross/build-rootfs.sh
index ff113f7335..9caf9b021d 100644
--- a/eng/common/cross/build-rootfs.sh
+++ b/eng/common/cross/build-rootfs.sh
@@ -14,6 +14,7 @@ usage()
echo "lldbx.y - optional, LLDB version, can be: lldb3.9(default), lldb4.0, lldb5.0, lldb6.0 no-lldb. Ignored for alpine and FreeBSD"
echo "llvmx[.y] - optional, LLVM version for LLVM related packages."
echo "--skipunmount - optional, will skip the unmount of rootfs folder."
+ echo "--skipsigcheck - optional, will skip package signature checks (allowing untrusted packages)."
echo "--use-mirror - optional, use mirror URL to fetch resources, when available."
echo "--jobs N - optional, restrict to N jobs."
exit 1
@@ -26,6 +27,7 @@ __AlpineArch=armv7
__FreeBSDArch=arm
__FreeBSDMachineArch=armv7
__IllumosArch=arm7
+__HaikuArch=arm
__QEMUArch=arm
__UbuntuArch=armhf
__UbuntuRepo="http://ports.ubuntu.com/"
@@ -69,7 +71,7 @@ __AlpinePackages+=" krb5-dev"
__AlpinePackages+=" openssl-dev"
__AlpinePackages+=" zlib-dev"
-__FreeBSDBase="12.3-RELEASE"
+__FreeBSDBase="12.4-RELEASE"
__FreeBSDPkg="1.17.0"
__FreeBSDABI="12"
__FreeBSDPackages="libunwind"
@@ -84,8 +86,12 @@ __IllumosPackages+=" mit-krb5"
__IllumosPackages+=" openssl"
__IllumosPackages+=" zlib"
-__HaikuPackages="gmp"
+__HaikuPackages="gcc_syslibs"
+__HaikuPackages+=" gcc_syslibs_devel"
+__HaikuPackages+=" gmp"
__HaikuPackages+=" gmp_devel"
+__HaikuPackages+=" icu66"
+__HaikuPackages+=" icu66_devel"
__HaikuPackages+=" krb5"
__HaikuPackages+=" krb5_devel"
__HaikuPackages+=" libiconv"
@@ -94,12 +100,36 @@ __HaikuPackages+=" llvm12_libunwind"
__HaikuPackages+=" llvm12_libunwind_devel"
__HaikuPackages+=" mpfr"
__HaikuPackages+=" mpfr_devel"
+__HaikuPackages+=" openssl"
+__HaikuPackages+=" openssl_devel"
+__HaikuPackages+=" zlib"
+__HaikuPackages+=" zlib_devel"
# ML.NET dependencies
__UbuntuPackages+=" libomp5"
__UbuntuPackages+=" libomp-dev"
+# Taken from https://github.com/alpinelinux/alpine-chroot-install/blob/6d08f12a8a70dd9b9dc7d997c88aa7789cc03c42/alpine-chroot-install#L85-L133
+__AlpineKeys='
+4a6a0840:MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1yHJxQgsHQREclQu4Ohe\nqxTxd1tHcNnvnQTu/UrTky8wWvgXT+jpveroeWWnzmsYlDI93eLI2ORakxb3gA2O\nQ0Ry4ws8vhaxLQGC74uQR5+/yYrLuTKydFzuPaS1dK19qJPXB8GMdmFOijnXX4SA\njixuHLe1WW7kZVtjL7nufvpXkWBGjsfrvskdNA/5MfxAeBbqPgaq0QMEfxMAn6/R\nL5kNepi/Vr4S39Xvf2DzWkTLEK8pcnjNkt9/aafhWqFVW7m3HCAII6h/qlQNQKSo\nGuH34Q8GsFG30izUENV9avY7hSLq7nggsvknlNBZtFUcmGoQrtx3FmyYsIC8/R+B\nywIDAQAB
+5243ef4b:MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvNijDxJ8kloskKQpJdx+\nmTMVFFUGDoDCbulnhZMJoKNkSuZOzBoFC94omYPtxnIcBdWBGnrm6ncbKRlR+6oy\nDO0W7c44uHKCFGFqBhDasdI4RCYP+fcIX/lyMh6MLbOxqS22TwSLhCVjTyJeeH7K\naA7vqk+QSsF4TGbYzQDDpg7+6aAcNzg6InNePaywA6hbT0JXbxnDWsB+2/LLSF2G\nmnhJlJrWB1WGjkz23ONIWk85W4S0XB/ewDefd4Ly/zyIciastA7Zqnh7p3Ody6Q0\nsS2MJzo7p3os1smGjUF158s6m/JbVh4DN6YIsxwl2OjDOz9R0OycfJSDaBVIGZzg\ncQIDAQAB
+524d27bb:MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr8s1q88XpuJWLCZALdKj\nlN8wg2ePB2T9aIcaxryYE/Jkmtu+ZQ5zKq6BT3y/udt5jAsMrhHTwroOjIsF9DeG\ne8Y3vjz+Hh4L8a7hZDaw8jy3CPag47L7nsZFwQOIo2Cl1SnzUc6/owoyjRU7ab0p\niWG5HK8IfiybRbZxnEbNAfT4R53hyI6z5FhyXGS2Ld8zCoU/R4E1P0CUuXKEN4p0\n64dyeUoOLXEWHjgKiU1mElIQj3k/IF02W89gDj285YgwqA49deLUM7QOd53QLnx+\nxrIrPv3A+eyXMFgexNwCKQU9ZdmWa00MjjHlegSGK8Y2NPnRoXhzqSP9T9i2HiXL\nVQIDAQAB
+5261cecb:MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwlzMkl7b5PBdfMzGdCT0\ncGloRr5xGgVmsdq5EtJvFkFAiN8Ac9MCFy/vAFmS8/7ZaGOXoCDWbYVLTLOO2qtX\nyHRl+7fJVh2N6qrDDFPmdgCi8NaE+3rITWXGrrQ1spJ0B6HIzTDNEjRKnD4xyg4j\ng01FMcJTU6E+V2JBY45CKN9dWr1JDM/nei/Pf0byBJlMp/mSSfjodykmz4Oe13xB\nCa1WTwgFykKYthoLGYrmo+LKIGpMoeEbY1kuUe04UiDe47l6Oggwnl+8XD1MeRWY\nsWgj8sF4dTcSfCMavK4zHRFFQbGp/YFJ/Ww6U9lA3Vq0wyEI6MCMQnoSMFwrbgZw\nwwIDAQAB
+58199dcc:MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3v8/ye/V/t5xf4JiXLXa\nhWFRozsnmn3hobON20GdmkrzKzO/eUqPOKTpg2GtvBhK30fu5oY5uN2ORiv2Y2ht\neLiZ9HVz3XP8Fm9frha60B7KNu66FO5P2o3i+E+DWTPqqPcCG6t4Znk2BypILcit\nwiPKTsgbBQR2qo/cO01eLLdt6oOzAaF94NH0656kvRewdo6HG4urbO46tCAizvCR\nCA7KGFMyad8WdKkTjxh8YLDLoOCtoZmXmQAiwfRe9pKXRH/XXGop8SYptLqyVVQ+\ntegOD9wRs2tOlgcLx4F/uMzHN7uoho6okBPiifRX+Pf38Vx+ozXh056tjmdZkCaV\naQIDAQAB
+58cbb476:MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAoSPnuAGKtRIS5fEgYPXD\n8pSGvKAmIv3A08LBViDUe+YwhilSHbYXUEAcSH1KZvOo1WT1x2FNEPBEFEFU1Eyc\n+qGzbA03UFgBNvArurHQ5Z/GngGqE7IarSQFSoqewYRtFSfp+TL9CUNBvM0rT7vz\n2eMu3/wWG+CBmb92lkmyWwC1WSWFKO3x8w+Br2IFWvAZqHRt8oiG5QtYvcZL6jym\nY8T6sgdDlj+Y+wWaLHs9Fc+7vBuyK9C4O1ORdMPW15qVSl4Lc2Wu1QVwRiKnmA+c\nDsH/m7kDNRHM7TjWnuj+nrBOKAHzYquiu5iB3Qmx+0gwnrSVf27Arc3ozUmmJbLj\nzQIDAQAB
+58e4f17d:MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvBxJN9ErBgdRcPr5g4hV\nqyUSGZEKuvQliq2Z9SRHLh2J43+EdB6A+yzVvLnzcHVpBJ+BZ9RV30EM9guck9sh\nr+bryZcRHyjG2wiIEoduxF2a8KeWeQH7QlpwGhuobo1+gA8L0AGImiA6UP3LOirl\nI0G2+iaKZowME8/tydww4jx5vG132JCOScMjTalRsYZYJcjFbebQQolpqRaGB4iG\nWqhytWQGWuKiB1A22wjmIYf3t96l1Mp+FmM2URPxD1gk/BIBnX7ew+2gWppXOK9j\n1BJpo0/HaX5XoZ/uMqISAAtgHZAqq+g3IUPouxTphgYQRTRYpz2COw3NF43VYQrR\nbQIDAQAB
+60ac2099:MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwR4uJVtJOnOFGchnMW5Y\nj5/waBdG1u5BTMlH+iQMcV5+VgWhmpZHJCBz3ocD+0IGk2I68S5TDOHec/GSC0lv\n6R9o6F7h429GmgPgVKQsc8mPTPtbjJMuLLs4xKc+viCplXc0Nc0ZoHmCH4da6fCV\ntdpHQjVe6F9zjdquZ4RjV6R6JTiN9v924dGMAkbW/xXmamtz51FzondKC52Gh8Mo\n/oA0/T0KsCMCi7tb4QNQUYrf+Xcha9uus4ww1kWNZyfXJB87a2kORLiWMfs2IBBJ\nTmZ2Fnk0JnHDb8Oknxd9PvJPT0mvyT8DA+KIAPqNvOjUXP4bnjEHJcoCP9S5HkGC\nIQIDAQAB
+6165ee59:MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAutQkua2CAig4VFSJ7v54\nALyu/J1WB3oni7qwCZD3veURw7HxpNAj9hR+S5N/pNeZgubQvJWyaPuQDm7PTs1+\ntFGiYNfAsiibX6Rv0wci3M+z2XEVAeR9Vzg6v4qoofDyoTbovn2LztaNEjTkB+oK\ntlvpNhg1zhou0jDVYFniEXvzjckxswHVb8cT0OMTKHALyLPrPOJzVtM9C1ew2Nnc\n3848xLiApMu3NBk0JqfcS3Bo5Y2b1FRVBvdt+2gFoKZix1MnZdAEZ8xQzL/a0YS5\nHd0wj5+EEKHfOd3A75uPa/WQmA+o0cBFfrzm69QDcSJSwGpzWrD1ScH3AK8nWvoj\nv7e9gukK/9yl1b4fQQ00vttwJPSgm9EnfPHLAtgXkRloI27H6/PuLoNvSAMQwuCD\nhQRlyGLPBETKkHeodfLoULjhDi1K2gKJTMhtbnUcAA7nEphkMhPWkBpgFdrH+5z4\nLxy+3ek0cqcI7K68EtrffU8jtUj9LFTUC8dERaIBs7NgQ/LfDbDfGh9g6qVj1hZl\nk9aaIPTm/xsi8v3u+0qaq7KzIBc9s59JOoA8TlpOaYdVgSQhHHLBaahOuAigH+VI\nisbC9vmqsThF2QdDtQt37keuqoda2E6sL7PUvIyVXDRfwX7uMDjlzTxHTymvq2Ck\nhtBqojBnThmjJQFgZXocHG8CAwEAAQ==
+61666e3f:MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAlEyxkHggKCXC2Wf5Mzx4\nnZLFZvU2bgcA3exfNPO/g1YunKfQY+Jg4fr6tJUUTZ3XZUrhmLNWvpvSwDS19ZmC\nIXOu0+V94aNgnhMsk9rr59I8qcbsQGIBoHzuAl8NzZCgdbEXkiY90w1skUw8J57z\nqCsMBydAueMXuWqF5nGtYbi5vHwK42PffpiZ7G5Kjwn8nYMW5IZdL6ZnMEVJUWC9\nI4waeKg0yskczYDmZUEAtrn3laX9677ToCpiKrvmZYjlGl0BaGp3cxggP2xaDbUq\nqfFxWNgvUAb3pXD09JM6Mt6HSIJaFc9vQbrKB9KT515y763j5CC2KUsilszKi3mB\nHYe5PoebdjS7D1Oh+tRqfegU2IImzSwW3iwA7PJvefFuc/kNIijfS/gH/cAqAK6z\nbhdOtE/zc7TtqW2Wn5Y03jIZdtm12CxSxwgtCF1NPyEWyIxAQUX9ACb3M0FAZ61n\nfpPrvwTaIIxxZ01L3IzPLpbc44x/DhJIEU+iDt6IMTrHOphD9MCG4631eIdB0H1b\n6zbNX1CXTsafqHRFV9XmYYIeOMggmd90s3xIbEujA6HKNP/gwzO6CDJ+nHFDEqoF\nSkxRdTkEqjTjVKieURW7Swv7zpfu5PrsrrkyGnsRrBJJzXlm2FOOxnbI2iSL1B5F\nrO5kbUxFeZUIDq+7Yv4kLWcCAwEAAQ==
+616a9724:MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAnC+bR4bHf/L6QdU4puhQ\ngl1MHePszRC38bzvVFDUJsmCaMCL2suCs2A2yxAgGb9pu9AJYLAmxQC4mM3jNqhg\n/E7yuaBbek3O02zN/ctvflJ250wZCy+z0ZGIp1ak6pu1j14IwHokl9j36zNfGtfv\nADVOcdpWITFFlPqwq1qt/H3UsKVmtiF3BNWWTeUEQwKvlU8ymxgS99yn0+4OPyNT\nL3EUeS+NQJtDS01unau0t7LnjUXn+XIneWny8bIYOQCuVR6s/gpIGuhBaUqwaJOw\n7jkJZYF2Ij7uPb4b5/R3vX2FfxxqEHqssFSg8FFUNTZz3qNZs0CRVyfA972g9WkJ\nhPfn31pQYil4QGRibCMIeU27YAEjXoqfJKEPh4UWMQsQLrEfdGfb8VgwrPbniGfU\nL3jKJR3VAafL9330iawzVQDlIlwGl6u77gEXMl9K0pfazunYhAp+BMP+9ot5ckK+\nosmrqj11qMESsAj083GeFdfV3pXEIwUytaB0AKEht9DbqUfiE/oeZ/LAXgySMtVC\nsbC4ESmgVeY2xSBIJdDyUap7FR49GGrw0W49NUv9gRgQtGGaNVQQO9oGL2PBC41P\niWF9GLoX30HIz1P8PF/cZvicSSPkQf2Z6TV+t0ebdGNS5DjapdnCrq8m9Z0pyKsQ\nuxAL2a7zX8l5i1CZh1ycUGsCAwEAAQ==
+616abc23:MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA0MfCDrhODRCIxR9Dep1s\neXafh5CE5BrF4WbCgCsevyPIdvTeyIaW4vmO3bbG4VzhogDZju+R3IQYFuhoXP5v\nY+zYJGnwrgz3r5wYAvPnLEs1+dtDKYOgJXQj+wLJBW1mzRDL8FoRXOe5iRmn1EFS\nwZ1DoUvyu7/J5r0itKicZp3QKED6YoilXed+1vnS4Sk0mzN4smuMR9eO1mMCqNp9\n9KTfRDHTbakIHwasECCXCp50uXdoW6ig/xUAFanpm9LtK6jctNDbXDhQmgvAaLXZ\nLvFqoaYJ/CvWkyYCgL6qxvMvVmPoRv7OPcyni4xR/WgWa0MSaEWjgPx3+yj9fiMA\n1S02pFWFDOr5OUF/O4YhFJvUCOtVsUPPfA/Lj6faL0h5QI9mQhy5Zb9TTaS9jB6p\nLw7u0dJlrjFedk8KTJdFCcaGYHP6kNPnOxMylcB/5WcztXZVQD5WpCicGNBxCGMm\nW64SgrV7M07gQfL/32QLsdqPUf0i8hoVD8wfQ3EpbQzv6Fk1Cn90bZqZafg8XWGY\nwddhkXk7egrr23Djv37V2okjzdqoyLBYBxMz63qQzFoAVv5VoY2NDTbXYUYytOvG\nGJ1afYDRVWrExCech1mX5ZVUB1br6WM+psFLJFoBFl6mDmiYt0vMYBddKISsvwLl\nIJQkzDwtXzT2cSjoj3T5QekCAwEAAQ==
+616ac3bc:MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvaaoSLab+IluixwKV5Od\n0gib2YurjPatGIbn5Ov2DLUFYiebj2oJINXJSwUOO+4WcuHFEqiL/1rya+k5hLZt\nhnPL1tn6QD4rESznvGSasRCQNT2vS/oyZbTYJRyAtFkEYLlq0t3S3xBxxHWuvIf0\nqVxVNYpQWyM3N9RIeYBR/euXKJXileSHk/uq1I5wTC0XBIHWcthczGN0m9wBEiWS\n0m3cnPk4q0Ea8mUJ91Rqob19qETz6VbSPYYpZk3qOycjKosuwcuzoMpwU8KRiMFd\n5LHtX0Hx85ghGsWDVtS0c0+aJa4lOMGvJCAOvDfqvODv7gKlCXUpgumGpLdTmaZ8\n1RwqspAe3IqBcdKTqRD4m2mSg23nVx2FAY3cjFvZQtfooT7q1ItRV5RgH6FhQSl7\n+6YIMJ1Bf8AAlLdRLpg+doOUGcEn+pkDiHFgI8ylH1LKyFKw+eXaAml/7DaWZk1d\ndqggwhXOhc/UUZFQuQQ8A8zpA13PcbC05XxN2hyP93tCEtyynMLVPtrRwDnHxFKa\nqKzs3rMDXPSXRn3ZZTdKH3069ApkEjQdpcwUh+EmJ1Ve/5cdtzT6kKWCjKBFZP/s\n91MlRrX2BTRdHaU5QJkUheUtakwxuHrdah2F94lRmsnQlpPr2YseJu6sIE+Dnx4M\nCfhdVbQL2w54R645nlnohu8CAwEAAQ==
+616adfeb:MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAq0BFD1D4lIxQcsqEpQzU\npNCYM3aP1V/fxxVdT4DWvSI53JHTwHQamKdMWtEXetWVbP5zSROniYKFXd/xrD9X\n0jiGHey3lEtylXRIPxe5s+wXoCmNLcJVnvTcDtwx/ne2NLHxp76lyc25At+6RgE6\nADjLVuoD7M4IFDkAsd8UQ8zM0Dww9SylIk/wgV3ZkifecvgUQRagrNUdUjR56EBZ\nraQrev4hhzOgwelT0kXCu3snbUuNY/lU53CoTzfBJ5UfEJ5pMw1ij6X0r5S9IVsy\nKLWH1hiO0NzU2c8ViUYCly4Fe9xMTFc6u2dy/dxf6FwERfGzETQxqZvSfrRX+GLj\n/QZAXiPg5178hT/m0Y3z5IGenIC/80Z9NCi+byF1WuJlzKjDcF/TU72zk0+PNM/H\nKuppf3JT4DyjiVzNC5YoWJT2QRMS9KLP5iKCSThwVceEEg5HfhQBRT9M6KIcFLSs\nmFjx9kNEEmc1E8hl5IR3+3Ry8G5/bTIIruz14jgeY9u5jhL8Vyyvo41jgt9sLHR1\n/J1TxKfkgksYev7PoX6/ZzJ1ksWKZY5NFoDXTNYUgzFUTOoEaOg3BAQKadb3Qbbq\nXIrxmPBdgrn9QI7NCgfnAY3Tb4EEjs3ON/BNyEhUENcXOH6I1NbcuBQ7g9P73kE4\nVORdoc8MdJ5eoKBpO8Ww8HECAwEAAQ==
+616ae350:MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAyduVzi1mWm+lYo2Tqt/0\nXkCIWrDNP1QBMVPrE0/ZlU2bCGSoo2Z9FHQKz/mTyMRlhNqTfhJ5qU3U9XlyGOPJ\npiM+b91g26pnpXJ2Q2kOypSgOMOPA4cQ42PkHBEqhuzssfj9t7x47ppS94bboh46\nxLSDRff/NAbtwTpvhStV3URYkxFG++cKGGa5MPXBrxIp+iZf9GnuxVdST5PGiVGP\nODL/b69sPJQNbJHVquqUTOh5Ry8uuD2WZuXfKf7/C0jC/ie9m2+0CttNu9tMciGM\nEyKG1/Xhk5iIWO43m4SrrT2WkFlcZ1z2JSf9Pjm4C2+HovYpihwwdM/OdP8Xmsnr\nDzVB4YvQiW+IHBjStHVuyiZWc+JsgEPJzisNY0Wyc/kNyNtqVKpX6dRhMLanLmy+\nf53cCSI05KPQAcGj6tdL+D60uKDkt+FsDa0BTAobZ31OsFVid0vCXtsbplNhW1IF\nHwsGXBTVcfXg44RLyL8Lk/2dQxDHNHzAUslJXzPxaHBLmt++2COa2EI1iWlvtznk\nOk9WP8SOAIj+xdqoiHcC4j72BOVVgiITIJNHrbppZCq6qPR+fgXmXa+sDcGh30m6\n9Wpbr28kLMSHiENCWTdsFij+NQTd5S47H7XTROHnalYDuF1RpS+DpQidT5tUimaT\nJZDr++FjKrnnijbyNF8b98UCAwEAAQ==
+616db30d:MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAnpUpyWDWjlUk3smlWeA0\nlIMW+oJ38t92CRLHH3IqRhyECBRW0d0aRGtq7TY8PmxjjvBZrxTNDpJT6KUk4LRm\na6A6IuAI7QnNK8SJqM0DLzlpygd7GJf8ZL9SoHSH+gFsYF67Cpooz/YDqWrlN7Vw\ntO00s0B+eXy+PCXYU7VSfuWFGK8TGEv6HfGMALLjhqMManyvfp8hz3ubN1rK3c8C\nUS/ilRh1qckdbtPvoDPhSbTDmfU1g/EfRSIEXBrIMLg9ka/XB9PvWRrekrppnQzP\nhP9YE3x/wbFc5QqQWiRCYyQl/rgIMOXvIxhkfe8H5n1Et4VAorkpEAXdsfN8KSVv\nLSMazVlLp9GYq5SUpqYX3KnxdWBgN7BJoZ4sltsTpHQ/34SXWfu3UmyUveWj7wp0\nx9hwsPirVI00EEea9AbP7NM2rAyu6ukcm4m6ATd2DZJIViq2es6m60AE6SMCmrQF\nwmk4H/kdQgeAELVfGOm2VyJ3z69fQuywz7xu27S6zTKi05Qlnohxol4wVb6OB7qG\nLPRtK9ObgzRo/OPumyXqlzAi/Yvyd1ZQk8labZps3e16bQp8+pVPiumWioMFJDWV\nGZjCmyMSU8V6MB6njbgLHoyg2LCukCAeSjbPGGGYhnKLm1AKSoJh3IpZuqcKCk5C\n8CM1S15HxV78s9dFntEqIokCAwEAAQ==
+'
__Keyring=
+__SkipSigCheck=0
__UseMirror=0
__UnprocessedBuildArgs=
@@ -184,11 +214,13 @@ while :; do
;;
x64)
__BuildArch=x64
+ __AlpineArch=x86_64
__UbuntuArch=amd64
__FreeBSDArch=amd64
__FreeBSDMachineArch=amd64
__illumosArch=x86_64
- __UbuntuRepo=
+ __HaikuArch=x86_64
+ __UbuntuRepo="http://archive.ubuntu.com/ubuntu/"
;;
x86)
__BuildArch=x86
@@ -308,7 +340,7 @@ while :; do
;;
freebsd13)
__CodeName=freebsd
- __FreeBSDBase="13.0-RELEASE"
+ __FreeBSDBase="13.2-RELEASE"
__FreeBSDABI="13"
__SkipUnmount=1
;;
@@ -318,12 +350,14 @@ while :; do
;;
haiku)
__CodeName=haiku
- __BuildArch=x64
__SkipUnmount=1
;;
--skipunmount)
__SkipUnmount=1
;;
+ --skipsigcheck)
+ __SkipSigCheck=1
+ ;;
--rootfsdir|-rootfsdir)
shift
__RootfsDir="$1"
@@ -351,7 +385,6 @@ case "$__AlpineVersion" in
edge) __AlpineLlvmLibsLookup=1 ;;
*)
if [[ "$__AlpineArch" =~ s390x|ppc64le ]]; then
- echo boo
__AlpineVersion=3.15 # minimum version that supports lldb-dev
__AlpinePackages+=" llvm12-libs"
elif [[ "$__AlpineArch" == "x86" ]]; then
@@ -380,6 +413,11 @@ if [[ "$__BuildArch" == "armel" ]]; then
__LLDB_Package="lldb-3.5-dev"
fi
+if [[ "$__CodeName" == "xenial" && "$__UbuntuArch" == "armhf" ]]; then
+ # libnuma-dev is not available on armhf for xenial
+ __UbuntuPackages="${__UbuntuPackages//libnuma-dev/}"
+fi
+
__UbuntuPackages+=" ${__LLDB_Package:-}"
if [[ -n "$__LLVM_MajorVersion" ]]; then
@@ -406,13 +444,18 @@ __RootfsDir="$( cd "$__RootfsDir" && pwd )"
if [[ "$__CodeName" == "alpine" ]]; then
__ApkToolsVersion=2.12.11
+ __ApkToolsSHA512SUM=53e57b49230da07ef44ee0765b9592580308c407a8d4da7125550957bb72cb59638e04f8892a18b584451c8d841d1c7cb0f0ab680cc323a3015776affaa3be33
__ApkToolsDir="$(mktemp -d)"
+ __ApkKeysDir="$(mktemp -d)"
wget "https://gitlab.alpinelinux.org/api/v4/projects/5/packages/generic//v$__ApkToolsVersion/x86_64/apk.static" -P "$__ApkToolsDir"
+ echo "$__ApkToolsSHA512SUM $__ApkToolsDir/apk.static" | sha512sum -c
chmod +x "$__ApkToolsDir/apk.static"
- mkdir -p "$__RootfsDir"/usr/bin
- cp -v "/usr/bin/qemu-$__QEMUArch-static" "$__RootfsDir/usr/bin"
+ if [[ -f "/usr/bin/qemu-$__QEMUArch-static" ]]; then
+ mkdir -p "$__RootfsDir"/usr/bin
+ cp -v "/usr/bin/qemu-$__QEMUArch-static" "$__RootfsDir/usr/bin"
+ fi
if [[ "$__AlpineVersion" == "edge" ]]; then
version=edge
@@ -420,17 +463,30 @@ if [[ "$__CodeName" == "alpine" ]]; then
version="v$__AlpineVersion"
fi
+ for line in $__AlpineKeys; do
+ id="${line%%:*}"
+ content="${line#*:}"
+
+ echo -e "-----BEGIN PUBLIC KEY-----\n$content\n-----END PUBLIC KEY-----" > "$__ApkKeysDir/alpine-devel@lists.alpinelinux.org-$id.rsa.pub"
+ done
+
+ if [[ "$__SkipSigCheck" == "1" ]]; then
+ __ApkSignatureArg="--allow-untrusted"
+ else
+ __ApkSignatureArg="--keys-dir $__ApkKeysDir"
+ fi
+
# initialize DB
"$__ApkToolsDir/apk.static" \
-X "http://dl-cdn.alpinelinux.org/alpine/$version/main" \
-X "http://dl-cdn.alpinelinux.org/alpine/$version/community" \
- -U --allow-untrusted --root "$__RootfsDir" --arch "$__AlpineArch" --initdb add
+ -U $__ApkSignatureArg --root "$__RootfsDir" --arch "$__AlpineArch" --initdb add
if [[ "$__AlpineLlvmLibsLookup" == 1 ]]; then
__AlpinePackages+=" $("$__ApkToolsDir/apk.static" \
-X "http://dl-cdn.alpinelinux.org/alpine/$version/main" \
-X "http://dl-cdn.alpinelinux.org/alpine/$version/community" \
- -U --allow-untrusted --root "$__RootfsDir" --arch "$__AlpineArch" \
+ -U $__ApkSignatureArg --root "$__RootfsDir" --arch "$__AlpineArch" \
search 'llvm*-libs' | sort | tail -1 | sed 's/-[^-]*//2g')"
fi
@@ -438,7 +494,7 @@ if [[ "$__CodeName" == "alpine" ]]; then
"$__ApkToolsDir/apk.static" \
-X "http://dl-cdn.alpinelinux.org/alpine/$version/main" \
-X "http://dl-cdn.alpinelinux.org/alpine/$version/community" \
- -U --allow-untrusted --root "$__RootfsDir" --arch "$__AlpineArch" \
+ -U $__ApkSignatureArg --root "$__RootfsDir" --arch "$__AlpineArch" \
add $__AlpinePackages
rm -r "$__ApkToolsDir"
@@ -512,69 +568,61 @@ elif [[ "$__CodeName" == "illumos" ]]; then
elif [[ "$__CodeName" == "haiku" ]]; then
JOBS=${MAXJOBS:="$(getconf _NPROCESSORS_ONLN)"}
- echo "Building Haiku sysroot for x86_64"
+ echo "Building Haiku sysroot for $__HaikuArch"
mkdir -p "$__RootfsDir/tmp"
- cd "$__RootfsDir/tmp"
- git clone -b hrev56235 https://review.haiku-os.org/haiku
- git clone -b btrev43195 https://review.haiku-os.org/buildtools
- cd "$__RootfsDir/tmp/buildtools" && git checkout 7487388f5110021d400b9f3b88e1a7f310dc066d
-
- # Fetch some unmerged patches
- cd "$__RootfsDir/tmp/haiku"
- ## Add development build profile (slimmer than nightly)
- git fetch origin refs/changes/64/4164/1 && git -c commit.gpgsign=false cherry-pick FETCH_HEAD
-
- # Build jam
- cd "$__RootfsDir/tmp/buildtools/jam"
- make
-
- # Configure cross tools
- echo "Building cross-compiler"
- mkdir -p "$__RootfsDir/generated"
- cd "$__RootfsDir/generated"
- "$__RootfsDir/tmp/haiku/configure" -j"$JOBS" --sysroot "$__RootfsDir" --cross-tools-source "$__RootfsDir/tmp/buildtools" --build-cross-tools x86_64
-
- # Build Haiku packages
- echo "Building Haiku"
- echo 'HAIKU_BUILD_PROFILE = "development-raw" ;' > UserProfileConfig
- "$__RootfsDir/tmp/buildtools/jam/jam0" -j"$JOBS" -q 'package' 'Haiku'
-
- BaseUrl="https://depot.haiku-os.org/__api/v2/pkg/get-pkg"
-
- # Download additional packages
- echo "Downloading additional required packages"
+ pushd "$__RootfsDir/tmp"
+
+ mkdir "$__RootfsDir/tmp/download"
+
+ echo "Downloading Haiku package tool"
+ git clone https://github.com/haiku/haiku-toolchains-ubuntu --depth 1 $__RootfsDir/tmp/script
+ wget -O "$__RootfsDir/tmp/download/hosttools.zip" $($__RootfsDir/tmp/script/fetch.sh --hosttools)
+ unzip -o "$__RootfsDir/tmp/download/hosttools.zip" -d "$__RootfsDir/tmp/bin"
+
+ DepotBaseUrl="https://depot.haiku-os.org/__api/v2/pkg/get-pkg"
+ HpkgBaseUrl="https://eu.hpkg.haiku-os.org/haiku/master/$__HaikuArch/current"
+
+ # Download Haiku packages
+ echo "Downloading Haiku packages"
read -ra array <<<"$__HaikuPackages"
for package in "${array[@]}"; do
echo "Downloading $package..."
# API documented here: https://github.com/haiku/haikudepotserver/blob/master/haikudepotserver-api2/src/main/resources/api2/pkg.yaml#L60
# The schema here: https://github.com/haiku/haikudepotserver/blob/master/haikudepotserver-api2/src/main/resources/api2/pkg.yaml#L598
- hpkgDownloadUrl="$(wget -qO- --post-data='{"name":"'"$package"'","repositorySourceCode":"haikuports_x86_64","versionType":"LATEST","naturalLanguageCode":"en"}' \
- --header='Content-Type:application/json' "$BaseUrl" | jq -r '.result.versions[].hpkgDownloadURL')"
- wget -P "$__RootfsDir/generated/download" "$hpkgDownloadUrl"
+ hpkgDownloadUrl="$(wget -qO- --post-data='{"name":"'"$package"'","repositorySourceCode":"haikuports_'$__HaikuArch'","versionType":"LATEST","naturalLanguageCode":"en"}' \
+ --header='Content-Type:application/json' "$DepotBaseUrl" | jq -r '.result.versions[].hpkgDownloadURL')"
+ wget -P "$__RootfsDir/tmp/download" "$hpkgDownloadUrl"
+ done
+ for package in haiku haiku_devel; do
+ echo "Downloading $package..."
+ hpkgVersion="$(wget -qO- $HpkgBaseUrl | sed -n 's/^.*version: "\([^"]*\)".*$/\1/p')"
+ wget -P "$__RootfsDir/tmp/download" "$HpkgBaseUrl/packages/$package-$hpkgVersion-1-$__HaikuArch.hpkg"
done
- # Setup the sysroot
- echo "Setting up sysroot and extracting needed packages"
+ # Set up the sysroot
+ echo "Setting up sysroot and extracting required packages"
mkdir -p "$__RootfsDir/boot/system"
- for file in "$__RootfsDir/generated/objects/haiku/x86_64/packaging/packages/"*.hpkg; do
- "$__RootfsDir/generated/objects/linux/x86_64/release/tools/package/package" extract -C "$__RootfsDir/boot/system" "$file"
- done
- for file in "$__RootfsDir/generated/download/"*.hpkg; do
- "$__RootfsDir/generated/objects/linux/x86_64/release/tools/package/package" extract -C "$__RootfsDir/boot/system" "$file"
+ for file in "$__RootfsDir/tmp/download/"*.hpkg; do
+ echo "Extracting $file..."
+ LD_LIBRARY_PATH="$__RootfsDir/tmp/bin" "$__RootfsDir/tmp/bin/package" extract -C "$__RootfsDir/boot/system" "$file"
done
+ # Download buildtools
+ echo "Downloading Haiku buildtools"
+ wget -O "$__RootfsDir/tmp/download/buildtools.zip" $($__RootfsDir/tmp/script/fetch.sh --buildtools --arch=$__HaikuArch)
+ unzip -o "$__RootfsDir/tmp/download/buildtools.zip" -d "$__RootfsDir"
+
# Cleaning up temporary files
echo "Cleaning up temporary files"
+ popd
rm -rf "$__RootfsDir/tmp"
- for name in "$__RootfsDir/generated/"*; do
- if [[ "$name" =~ "cross-tools-" ]]; then
- : # Keep the cross-compiler
- else
- rm -rf "$name"
- fi
- done
elif [[ -n "$__CodeName" ]]; then
- qemu-debootstrap $__Keyring --arch "$__UbuntuArch" "$__CodeName" "$__RootfsDir" "$__UbuntuRepo"
+
+ if [[ "$__SkipSigCheck" == "0" ]]; then
+ __Keyring="$__Keyring --force-check-gpg"
+ fi
+
+ debootstrap "--variant=minbase" $__Keyring --arch "$__UbuntuArch" "$__CodeName" "$__RootfsDir" "$__UbuntuRepo"
cp "$__CrossDir/$__BuildArch/sources.list.$__CodeName" "$__RootfsDir/etc/apt/sources.list"
chroot "$__RootfsDir" apt-get update
chroot "$__RootfsDir" apt-get -f -y install
diff --git a/eng/common/cross/toolchain.cmake b/eng/common/cross/toolchain.cmake
index ccfb9951a5..a88d643c8a 100644
--- a/eng/common/cross/toolchain.cmake
+++ b/eng/common/cross/toolchain.cmake
@@ -6,6 +6,7 @@ unset(FREEBSD)
unset(ILLUMOS)
unset(ANDROID)
unset(TIZEN)
+unset(HAIKU)
set(TARGET_ARCH_NAME $ENV{TARGET_BUILD_ARCH})
if(EXISTS ${CROSS_ROOTFS}/bin/freebsd-version)
@@ -16,6 +17,7 @@ elseif(EXISTS ${CROSS_ROOTFS}/usr/platform/i86pc)
set(ILLUMOS 1)
elseif(EXISTS ${CROSS_ROOTFS}/boot/system/develop/headers/config/HaikuConfig.h)
set(CMAKE_SYSTEM_NAME Haiku)
+ set(HAIKU 1)
else()
set(CMAKE_SYSTEM_NAME Linux)
set(LINUX 1)
@@ -67,16 +69,30 @@ elseif(TARGET_ARCH_NAME STREQUAL "armv6")
endif()
elseif(TARGET_ARCH_NAME STREQUAL "ppc64le")
set(CMAKE_SYSTEM_PROCESSOR ppc64le)
- set(TOOLCHAIN "powerpc64le-linux-gnu")
+ if(EXISTS ${CROSS_ROOTFS}/usr/lib/gcc/powerpc64le-alpine-linux-musl)
+ set(TOOLCHAIN "powerpc64le-alpine-linux-musl")
+ else()
+ set(TOOLCHAIN "powerpc64le-linux-gnu")
+ endif()
elseif(TARGET_ARCH_NAME STREQUAL "riscv64")
set(CMAKE_SYSTEM_PROCESSOR riscv64)
- set(TOOLCHAIN "riscv64-linux-gnu")
+ if(EXISTS ${CROSS_ROOTFS}/usr/lib/gcc/riscv64-alpine-linux-musl)
+ set(TOOLCHAIN "riscv64-alpine-linux-musl")
+ else()
+ set(TOOLCHAIN "riscv64-linux-gnu")
+ endif()
elseif(TARGET_ARCH_NAME STREQUAL "s390x")
set(CMAKE_SYSTEM_PROCESSOR s390x)
- set(TOOLCHAIN "s390x-linux-gnu")
+ if(EXISTS ${CROSS_ROOTFS}/usr/lib/gcc/s390x-alpine-linux-musl)
+ set(TOOLCHAIN "s390x-alpine-linux-musl")
+ else()
+ set(TOOLCHAIN "s390x-linux-gnu")
+ endif()
elseif(TARGET_ARCH_NAME STREQUAL "x64")
set(CMAKE_SYSTEM_PROCESSOR x86_64)
- if(LINUX)
+ if(EXISTS ${CROSS_ROOTFS}/usr/lib/gcc/x86_64-alpine-linux-musl)
+ set(TOOLCHAIN "x86_64-alpine-linux-musl")
+ elseif(LINUX)
set(TOOLCHAIN "x86_64-linux-gnu")
if(TIZEN)
set(TIZEN_TOOLCHAIN "x86_64-tizen-linux-gnu/9.2.0")
@@ -86,11 +102,15 @@ elseif(TARGET_ARCH_NAME STREQUAL "x64")
elseif(ILLUMOS)
set(TOOLCHAIN "x86_64-illumos")
elseif(HAIKU)
- set(TOOLCHAIN "x64_64-unknown-haiku")
+ set(TOOLCHAIN "x86_64-unknown-haiku")
endif()
elseif(TARGET_ARCH_NAME STREQUAL "x86")
set(CMAKE_SYSTEM_PROCESSOR i686)
- set(TOOLCHAIN "i686-linux-gnu")
+ if(EXISTS ${CROSS_ROOTFS}/usr/lib/gcc/i586-alpine-linux-musl)
+ set(TOOLCHAIN "i586-alpine-linux-musl")
+ else()
+ set(TOOLCHAIN "i686-linux-gnu")
+ endif()
if(TIZEN)
set(TIZEN_TOOLCHAIN "i586-tizen-linux-gnu/9.2.0")
endif()
@@ -196,10 +216,8 @@ elseif(HAIKU)
return()
endif()
- set(SEARCH_PATH "${CROSS_ROOTFS}/generated/cross-tools-x86_64/bin")
-
find_program(EXEC_LOCATION_${exec}
- PATHS ${SEARCH_PATH}
+ PATHS "${CROSS_ROOTFS}/cross-tools-x86_64/bin"
NAMES
"${TOOLSET_PREFIX}${exec}${CLR_CMAKE_COMPILER_FILE_NAME_VERSION}"
"${TOOLSET_PREFIX}${exec}")
@@ -264,8 +282,11 @@ elseif(TARGET_ARCH_NAME MATCHES "^(arm64|x64)$")
add_toolchain_linker_flag("-Wl,--rpath-link=${CROSS_ROOTFS}/usr/lib64/gcc/${TIZEN_TOOLCHAIN}")
endif()
elseif(TARGET_ARCH_NAME STREQUAL "x86")
+ if(EXISTS ${CROSS_ROOTFS}/usr/lib/gcc/i586-alpine-linux-musl)
+ add_toolchain_linker_flag("--target=${TOOLCHAIN}")
+ add_toolchain_linker_flag("-Wl,--rpath-link=${CROSS_ROOTFS}/usr/lib/gcc/${TOOLCHAIN}")
+ endif()
add_toolchain_linker_flag(-m32)
-
if(TIZEN)
add_toolchain_linker_flag("-B${CROSS_ROOTFS}/usr/lib/gcc/${TIZEN_TOOLCHAIN}")
add_toolchain_linker_flag("-L${CROSS_ROOTFS}/lib")
@@ -275,11 +296,14 @@ elseif(TARGET_ARCH_NAME STREQUAL "x86")
elseif(ILLUMOS)
add_toolchain_linker_flag("-L${CROSS_ROOTFS}/lib/amd64")
add_toolchain_linker_flag("-L${CROSS_ROOTFS}/usr/amd64/lib")
+elseif(HAIKU)
+ add_toolchain_linker_flag("-lnetwork")
+ add_toolchain_linker_flag("-lroot")
endif()
# Specify compile options
-if((TARGET_ARCH_NAME MATCHES "^(arm|arm64|armel|armv6|ppc64le|riscv64|s390x)$" AND NOT ANDROID AND NOT FREEBSD) OR ILLUMOS OR HAIKU)
+if((TARGET_ARCH_NAME MATCHES "^(arm|arm64|armel|armv6|ppc64le|riscv64|s390x|x64|x86)$" AND NOT ANDROID AND NOT FREEBSD) OR ILLUMOS OR HAIKU)
set(CMAKE_C_COMPILER_TARGET ${TOOLCHAIN})
set(CMAKE_CXX_COMPILER_TARGET ${TOOLCHAIN})
set(CMAKE_ASM_COMPILER_TARGET ${TOOLCHAIN})
@@ -298,10 +322,16 @@ if(TARGET_ARCH_NAME MATCHES "^(arm|armel)$")
add_definitions (-DCLR_ARM_FPU_CAPABILITY=${CLR_ARM_FPU_CAPABILITY})
+ # persist variables across multiple try_compile passes
+ list(APPEND CMAKE_TRY_COMPILE_PLATFORM_VARIABLES CLR_ARM_FPU_TYPE CLR_ARM_FPU_CAPABILITY)
+
if(TARGET_ARCH_NAME STREQUAL "armel")
add_compile_options(-mfloat-abi=softfp)
endif()
elseif(TARGET_ARCH_NAME STREQUAL "x86")
+ if(EXISTS ${CROSS_ROOTFS}/usr/lib/gcc/i586-alpine-linux-musl)
+ add_compile_options(--target=${TOOLCHAIN})
+ endif()
add_compile_options(-m32)
add_compile_options(-Wno-error=unused-command-line-argument)
endif()
diff --git a/eng/common/cross/x64/sources.list.bionic b/eng/common/cross/x64/sources.list.bionic
new file mode 100644
index 0000000000..a71ccadcff
--- /dev/null
+++ b/eng/common/cross/x64/sources.list.bionic
@@ -0,0 +1,11 @@
+deb http://archive.ubuntu.com/ubuntu/ bionic main restricted universe
+deb-src http://archive.ubuntu.com/ubuntu/ bionic main restricted universe
+
+deb http://archive.ubuntu.com/ubuntu/ bionic-updates main restricted universe
+deb-src http://archive.ubuntu.com/ubuntu/ bionic-updates main restricted universe
+
+deb http://archive.ubuntu.com/ubuntu/ bionic-backports main restricted
+deb-src http://archive.ubuntu.com/ubuntu/ bionic-backports main restricted
+
+deb http://archive.ubuntu.com/ubuntu/ bionic-security main restricted universe multiverse
+deb-src http://archive.ubuntu.com/ubuntu/ bionic-security main restricted universe multiverse
diff --git a/eng/common/cross/x64/sources.list.xenial b/eng/common/cross/x64/sources.list.xenial
new file mode 100644
index 0000000000..ad9c5a0144
--- /dev/null
+++ b/eng/common/cross/x64/sources.list.xenial
@@ -0,0 +1,11 @@
+deb http://archive.ubuntu.com/ubuntu/ xenial main restricted universe
+deb-src http://archive.ubuntu.com/ubuntu/ xenial main restricted universe
+
+deb http://archive.ubuntu.com/ubuntu/ xenial-updates main restricted universe
+deb-src http://archive.ubuntu.com/ubuntu/ xenial-updates main restricted universe
+
+deb http://archive.ubuntu.com/ubuntu/ xenial-backports main restricted
+deb-src http://archive.ubuntu.com/ubuntu/ xenial-backports main restricted
+
+deb http://archive.ubuntu.com/ubuntu/ xenial-security main restricted universe multiverse
+deb-src http://archive.ubuntu.com/ubuntu/ xenial-security main restricted universe multiverse
diff --git a/eng/common/native/init-compiler.sh b/eng/common/native/init-compiler.sh
index 7aee4213e1..517401b688 100644
--- a/eng/common/native/init-compiler.sh
+++ b/eng/common/native/init-compiler.sh
@@ -64,7 +64,7 @@ if [ -z "$CLR_CC" ]; then
if [ -z "$majorVersion" ]; then
# note: gcc (all versions) and clang versions higher than 6 do not have minor version in file name, if it is zero.
if [ "$compiler" = "clang" ]; then versions="16 15 14 13 12 11 10 9 8 7 6.0 5.0 4.0 3.9 3.8 3.7 3.6 3.5"
- elif [ "$compiler" = "gcc" ]; then versions="12 11 10 9 8 7 6 5 4.9"; fi
+ elif [ "$compiler" = "gcc" ]; then versions="13 12 11 10 9 8 7 6 5 4.9"; fi
for version in $versions; do
_major="${version%%.*}"
diff --git a/eng/common/templates/job/job.yml b/eng/common/templates/job/job.yml
index b214a31db2..44ad26abf5 100644
--- a/eng/common/templates/job/job.yml
+++ b/eng/common/templates/job/job.yml
@@ -25,7 +25,7 @@ parameters:
enablePublishTestResults: false
enablePublishUsingPipelines: false
enableBuildRetry: false
- disableComponentGovernance: false
+ disableComponentGovernance: ''
componentGovernanceIgnoreDirectories: ''
mergeTestResults: false
testRunTitle: ''
@@ -155,11 +155,16 @@ jobs:
uploadRichNavArtifacts: ${{ coalesce(parameters.richCodeNavigationUploadArtifacts, false) }}
continueOnError: true
- - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest'), ne(parameters.disableComponentGovernance, 'true')) }}:
- - task: ComponentGovernanceComponentDetection@0
- continueOnError: true
- inputs:
- ignoreDirectories: ${{ parameters.componentGovernanceIgnoreDirectories }}
+ - template: /eng/common/templates/steps/component-governance.yml
+ parameters:
+ ${{ if eq(parameters.disableComponentGovernance, '') }}:
+ ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest'), eq(parameters.runAsPublic, 'false'), or(startsWith(variables['Build.SourceBranch'], 'refs/heads/release/'), startsWith(variables['Build.SourceBranch'], 'refs/heads/dotnet/'), startsWith(variables['Build.SourceBranch'], 'refs/heads/microsoft/'), eq(variables['Build.SourceBranch'], 'refs/heads/main'))) }}:
+ disableComponentGovernance: false
+ ${{ else }}:
+ disableComponentGovernance: true
+ ${{ else }}:
+ disableComponentGovernance: ${{ parameters.disableComponentGovernance }}
+ componentGovernanceIgnoreDirectories: ${{ parameters.componentGovernanceIgnoreDirectories }}
- ${{ if eq(parameters.enableMicrobuild, 'true') }}:
- ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
diff --git a/eng/common/templates/steps/component-governance.yml b/eng/common/templates/steps/component-governance.yml
new file mode 100644
index 0000000000..0ecec47b0c
--- /dev/null
+++ b/eng/common/templates/steps/component-governance.yml
@@ -0,0 +1,13 @@
+parameters:
+ disableComponentGovernance: false
+ componentGovernanceIgnoreDirectories: ''
+
+steps:
+- ${{ if eq(parameters.disableComponentGovernance, 'true') }}:
+ - script: "echo ##vso[task.setvariable variable=skipComponentGovernanceDetection]true"
+ displayName: Set skipComponentGovernanceDetection variable
+- ${{ if ne(parameters.disableComponentGovernance, 'true') }}:
+ - task: ComponentGovernanceComponentDetection@0
+ continueOnError: true
+ inputs:
+ ignoreDirectories: ${{ parameters.componentGovernanceIgnoreDirectories }}
\ No newline at end of file
diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1
index 8ad03be3ec..38cf94ff88 100644
--- a/eng/common/tools.ps1
+++ b/eng/common/tools.ps1
@@ -287,6 +287,25 @@ function InstallDotNet([string] $dotnetRoot,
[string] $runtimeSourceFeedKey = '',
[switch] $noPath) {
+ $dotnetVersionLabel = "'sdk v$version'"
+
+ if ($runtime -ne '' -and $runtime -ne 'sdk') {
+ $runtimePath = $dotnetRoot
+ $runtimePath = $runtimePath + "\shared"
+ if ($runtime -eq "dotnet") { $runtimePath = $runtimePath + "\Microsoft.NETCore.App" }
+ if ($runtime -eq "aspnetcore") { $runtimePath = $runtimePath + "\Microsoft.AspNetCore.App" }
+ if ($runtime -eq "windowsdesktop") { $runtimePath = $runtimePath + "\Microsoft.WindowsDesktop.App" }
+ $runtimePath = $runtimePath + "\" + $version
+
+ $dotnetVersionLabel = "runtime toolset '$runtime/$architecture v$version'"
+
+ if (Test-Path $runtimePath) {
+ Write-Host " Runtime toolset '$runtime/$architecture v$version' already installed."
+ $installSuccess = $true
+ Exit
+ }
+ }
+
$installScript = GetDotNetInstallScript $dotnetRoot
$installParameters = @{
Version = $version
@@ -323,18 +342,18 @@ function InstallDotNet([string] $dotnetRoot,
} else {
$location = "public location";
}
- Write-Host "Attempting to install dotnet from $location."
+ Write-Host " Attempting to install $dotnetVersionLabel from $location."
try {
& $installScript @variation
$installSuccess = $true
break
}
catch {
- Write-Host "Failed to install dotnet from $location."
+ Write-Host " Failed to install $dotnetVersionLabel from $location."
}
}
if (-not $installSuccess) {
- Write-PipelineTelemetryError -Category 'InitializeToolset' -Message "Failed to install dotnet from any of the specified locations."
+ Write-PipelineTelemetryError -Category 'InitializeToolset' -Message "Failed to install $dotnetVersionLabel from any of the specified locations."
ExitWithExitCode 1
}
}
@@ -399,7 +418,8 @@ function InitializeVisualStudioMSBuild([bool]$install, [object]$vsRequirements =
# Locate Visual Studio installation or download x-copy msbuild.
$vsInfo = LocateVisualStudio $vsRequirements
if ($vsInfo -ne $null) {
- $vsInstallDir = $vsInfo.installationPath
+ # Ensure vsInstallDir has a trailing slash
+ $vsInstallDir = Join-Path $vsInfo.installationPath "\"
$vsMajorVersion = $vsInfo.installationVersion.Split('.')[0]
InitializeVisualStudioEnvironmentVariables $vsInstallDir $vsMajorVersion
diff --git a/eng/common/tools.sh b/eng/common/tools.sh
index cf9fb1ea2d..e8d4789433 100644
--- a/eng/common/tools.sh
+++ b/eng/common/tools.sh
@@ -184,6 +184,35 @@ function InstallDotNetSdk {
function InstallDotNet {
local root=$1
local version=$2
+ local runtime=$4
+
+ local dotnetVersionLabel="'$runtime v$version'"
+ if [[ -n "${4:-}" ]] && [ "$4" != 'sdk' ]; then
+ runtimePath="$root"
+ runtimePath="$runtimePath/shared"
+ case "$runtime" in
+ dotnet)
+ runtimePath="$runtimePath/Microsoft.NETCore.App"
+ ;;
+ aspnetcore)
+ runtimePath="$runtimePath/Microsoft.AspNetCore.App"
+ ;;
+ windowsdesktop)
+ runtimePath="$runtimePath/Microsoft.WindowsDesktop.App"
+ ;;
+ *)
+ ;;
+ esac
+ runtimePath="$runtimePath/$version"
+
+ dotnetVersionLabel="runtime toolset '$runtime/$architecture v$version'"
+
+ if [ -d "$runtimePath" ]; then
+ echo " Runtime toolset '$runtime/$architecture v$version' already installed."
+ local installSuccess=1
+ return
+ fi
+ fi
GetDotNetInstallScript "$root"
local install_script=$_GetDotNetInstallScript
@@ -228,17 +257,17 @@ function InstallDotNet {
for variationName in "${variations[@]}"; do
local name="$variationName[@]"
local variation=("${!name}")
- echo "Attempting to install dotnet from $variationName."
+ echo " Attempting to install $dotnetVersionLabel from $variationName."
bash "$install_script" "${variation[@]}" && installSuccess=1
if [[ "$installSuccess" -eq 1 ]]; then
break
fi
- echo "Failed to install dotnet from $variationName."
+ echo " Failed to install $dotnetVersionLabel from $variationName."
done
if [[ "$installSuccess" -eq 0 ]]; then
- Write-PipelineTelemetryError -category 'InitializeToolset' "Failed to install dotnet SDK from any of the specified locations."
+ Write-PipelineTelemetryError -category 'InitializeToolset' "Failed to install $dotnetVersionLabel from any of the specified locations."
ExitWithExitCode 1
fi
}
diff --git a/eng/restore-internal-tools.yml b/eng/restore-internal-tools.yml
new file mode 100644
index 0000000000..dcf3991644
--- /dev/null
+++ b/eng/restore-internal-tools.yml
@@ -0,0 +1,13 @@
+steps:
+ - task: NuGetAuthenticate@0
+ inputs:
+ nuGetServiceConnections: 'devdiv/dotnet-core-internal-tooling'
+ forceReinstallCredentialProvider: true
+
+ - script: $(Build.SourcesDirectory)\eng\RestoreInternal.cmd
+ -ci
+ -projects $(Build.SourcesDirectory)/eng/common/internal/Tools.csproj
+ /bl:$(Build.SourcesDirectory)/artifacts/log/$(_BuildConfig)/RestoreInternal.binlog
+ /v:normal
+ displayName: Restore internal tools
+ condition: and(succeeded(), ne(variables['_skipRestoreInternalTools'], 'true'))
diff --git a/global.json b/global.json
index 488063ccb8..4d8f7304b0 100644
--- a/global.json
+++ b/global.json
@@ -1,6 +1,6 @@
{
"sdk": {
- "version": "8.0.100-preview.1.23115.2",
+ "version": "8.0.100-preview.3.23178.7",
"rollForward": "minor",
"allowPrerelease": false,
"architecture": "x64"
@@ -29,10 +29,10 @@
"allowPrerelease": false
},
"vswhere": "2.2.7",
- "dotnet": "8.0.100-preview.1.23115.2"
+ "dotnet": "8.0.100-preview.3.23178.7"
},
"msbuild-sdks": {
- "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23168.1",
- "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.23168.1"
+ "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23262.5",
+ "Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.23226.4"
}
}
diff --git a/playground/TestPlatform.Playground/Environment.cs b/playground/TestPlatform.Playground/Environment.cs
index d5ec27d0cf..c23cd0ea3c 100644
--- a/playground/TestPlatform.Playground/Environment.cs
+++ b/playground/TestPlatform.Playground/Environment.cs
@@ -14,7 +14,7 @@ internal class EnvironmentVariables
["VSTEST_RUNNER_DEBUG_ATTACHVS"] = "0",
["VSTEST_HOST_DEBUG_ATTACHVS"] = "0",
["VSTEST_DATACOLLECTOR_DEBUG_ATTACHVS"] = "0",
- ["VSTEST_EXPERIMENTAL_FORWARD_OUTPUT_FEATURE"] = "1"
+ ["VSTEST_EXPERIMENTAL_FORWARD_OUTPUT_FEATURE"] = "0"
};
}
diff --git a/playground/TestPlatform.Playground/Program.cs b/playground/TestPlatform.Playground/Program.cs
index 2ad6c21f41..7abca6e5b6 100644
--- a/playground/TestPlatform.Playground/Program.cs
+++ b/playground/TestPlatform.Playground/Program.cs
@@ -88,9 +88,9 @@ static void Main()
""";
var sources = new[] {
- Path.Combine(playground, "MSTest1", "bin", "Debug", "net472", "MSTest1.dll"),
- //Path.Combine(playground, "MSTest2", "bin", "Debug", "net472", "MSTest2.dll"),
- //Path.Combine(playground, "MSTest1", "bin", "Debug", "net5.0", "MSTest1.dll"),
+ Path.Combine(playground, "bin", "MSTest1", "Debug", "net472", "MSTest1.dll"),
+ // Path.Combine(playground, "bin", "MSTest2", "Debug", "net472", "MSTest2.dll"),
+ // Path.Combine(playground, "bin", "MSTest1", "Debug", "net5.0", "MSTest1.dll"),
};
//// Console mode
diff --git a/playground/TestPlatform.Playground/TestPlatform.Playground.csproj b/playground/TestPlatform.Playground/TestPlatform.Playground.csproj
index fbbe3beb4c..8a96a0735a 100644
--- a/playground/TestPlatform.Playground/TestPlatform.Playground.csproj
+++ b/playground/TestPlatform.Playground/TestPlatform.Playground.csproj
@@ -38,44 +38,40 @@
-
+
- $(RepoRoot)src\
+ $(RepoRoot)artifacts\$(TargetDir)vstest.console\
-
-
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
+
-
+
diff --git a/src/AttachVS/AttachVs.cs b/src/AttachVS/AttachVs.cs
index 7f1379ecdf..f67634b74c 100644
--- a/src/AttachVS/AttachVs.cs
+++ b/src/AttachVS/AttachVs.cs
@@ -307,9 +307,6 @@ private static extern int NtQueryInformationProcess(
int processInformationLength,
out int returnLength);
- [DllImport("Kernel32")]
- private static extern uint GetTickCount();
-
[DllImport("ole32.dll")]
private static extern int CreateBindCtx(uint reserved, out IBindCtx ppbc);
}
diff --git a/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.cs.xlf b/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.cs.xlf
index 078f53b781..c7b59b6f48 100644
--- a/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.cs.xlf
+++ b/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.cs.xlf
@@ -1,32 +1,32 @@
-
-
-
-
-
- An exception occurred while collecting final entries from the event log '{0}': {1}
- Došlo k výjimce při shromažďování finálních položek z protokolu událostí {0}: {1}
-
-
-
- Event Log DataCollector did not find eventLogContext for DataCollectionContext: {0}
- DataCollector pro protokol událostí nenašel eventLogContext pro DataCollectionContext: {0}
-
-
-
- The '{0}' event log may have been cleared during collection; some events may not have been collected
- Protokol událostí {0} byl pravděpodobně při shromažďování vyčištěn. Některé události nemusely být shromážděny.
-
-
-
- Unable to read event log '{0}' from computer '{1}'
- Nepodařilo se přečíst protokol událostí {0} z počítače {1}
-
-
-
- The '{0}' event log has encountered an exception, some events might get lost. Error : {1}
- U protokolu událostí {0} došlo k výjimce. Některé události se mohly ztratit. Chyba: {1}
-
-
-
-
-
+
+
+
+
+
+ An exception occurred while collecting final entries from the event log '{0}': {1}
+ Došlo k výjimce při shromažďování finálních položek z protokolu událostí {0}: {1}
+
+
+
+ Event Log DataCollector did not find eventLogContext for DataCollectionContext: {0}
+ DataCollector pro protokol událostí nenašel eventLogContext pro DataCollectionContext: {0}
+
+
+
+ The '{0}' event log may have been cleared during collection; some events may not have been collected
+ Protokol událostí {0} byl pravděpodobně při shromažďování vyčištěn. Některé události nemusely být shromážděny.
+
+
+
+ Unable to read event log '{0}' from computer '{1}'
+ Nepodařilo se přečíst protokol událostí {0} z počítače {1}
+
+
+
+ The '{0}' event log has encountered an exception, some events might get lost. Error : {1}
+ U protokolu událostí {0} došlo k výjimce. Některé události se mohly ztratit. Chyba: {1}
+
+
+
+
+
\ No newline at end of file
diff --git a/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.de.xlf b/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.de.xlf
index 10e01eb2de..5a52c00e09 100644
--- a/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.de.xlf
+++ b/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.de.xlf
@@ -1,32 +1,32 @@
-
-
-
-
-
- An exception occurred while collecting final entries from the event log '{0}': {1}
- Ausnahme beim Erfassen von abschließenden Einträgen aus dem Ereignisprotokoll "{0}": {1}
-
-
-
- Event Log DataCollector did not find eventLogContext for DataCollectionContext: {0}
- Der DataCollector des Ereignisprotokolls hat den eventLogContext für DataCollectionContext nicht gefunden: {0}
-
-
-
- The '{0}' event log may have been cleared during collection; some events may not have been collected
- Das Ereignisprotokoll "{0}" wurde während der Sammlung möglicherweise gelöscht. Einige Ereignisse wurden eventuell nicht erfasst.
-
-
-
- Unable to read event log '{0}' from computer '{1}'
- Das Ereignisprotokoll "{0}" konnte vom Computer "{1}" nicht gelesen werden.
-
-
-
- The '{0}' event log has encountered an exception, some events might get lost. Error : {1}
- Beim Ereignisprotokoll "{0}" ist eine Ausnahme aufgetreten. Einige Ereignisse gehen möglicherweise verloren. Fehler: {1}
-
-
-
-
-
+
+
+
+
+
+ An exception occurred while collecting final entries from the event log '{0}': {1}
+ Ausnahme beim Erfassen von abschließenden Einträgen aus dem Ereignisprotokoll "{0}": {1}
+
+
+
+ Event Log DataCollector did not find eventLogContext for DataCollectionContext: {0}
+ Der DataCollector des Ereignisprotokolls hat den eventLogContext für DataCollectionContext nicht gefunden: {0}
+
+
+
+ The '{0}' event log may have been cleared during collection; some events may not have been collected
+ Das Ereignisprotokoll "{0}" wurde während der Sammlung möglicherweise gelöscht. Einige Ereignisse wurden eventuell nicht erfasst.
+
+
+
+ Unable to read event log '{0}' from computer '{1}'
+ Das Ereignisprotokoll "{0}" konnte vom Computer "{1}" nicht gelesen werden.
+
+
+
+ The '{0}' event log has encountered an exception, some events might get lost. Error : {1}
+ Beim Ereignisprotokoll "{0}" ist eine Ausnahme aufgetreten. Einige Ereignisse gehen möglicherweise verloren. Fehler: {1}
+
+
+
+
+
\ No newline at end of file
diff --git a/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.es.xlf b/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.es.xlf
index 1010bce8c9..859a024da4 100644
--- a/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.es.xlf
+++ b/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.es.xlf
@@ -1,32 +1,32 @@
-
-
-
-
-
- An exception occurred while collecting final entries from the event log '{0}': {1}
- Excepción al recopilar las entradas finales del registro de eventos "{0}": {1}
-
-
-
- Event Log DataCollector did not find eventLogContext for DataCollectionContext: {0}
- La propiedad DataCollector del registro de eventos no encontró eventLogContext para el contexto de DataCollectionContext: {0}
-
-
-
- The '{0}' event log may have been cleared during collection; some events may not have been collected
- Es posible que el registro de eventos "{0}" se haya borrado durante la recopilación; algunos eventos pueden no haberse recopilado
-
-
-
- Unable to read event log '{0}' from computer '{1}'
- No se puede leer el registro de eventos "{0}" desde el equipo "{1}"
-
-
-
- The '{0}' event log has encountered an exception, some events might get lost. Error : {1}
- El registro de eventos "{0}" ha encontrado una excepción; algunos eventos pueden haberse perdido. Error: {1}
-
-
-
-
-
+
+
+
+
+
+ An exception occurred while collecting final entries from the event log '{0}': {1}
+ Excepción al recopilar las entradas finales del registro de eventos "{0}": {1}
+
+
+
+ Event Log DataCollector did not find eventLogContext for DataCollectionContext: {0}
+ La propiedad DataCollector del registro de eventos no encontró eventLogContext para el contexto de DataCollectionContext: {0}
+
+
+
+ The '{0}' event log may have been cleared during collection; some events may not have been collected
+ Es posible que el registro de eventos "{0}" se haya borrado durante la recopilación; algunos eventos pueden no haberse recopilado
+
+
+
+ Unable to read event log '{0}' from computer '{1}'
+ No se puede leer el registro de eventos "{0}" desde el equipo "{1}"
+
+
+
+ The '{0}' event log has encountered an exception, some events might get lost. Error : {1}
+ El registro de eventos "{0}" ha encontrado una excepción; algunos eventos pueden haberse perdido. Error: {1}
+
+
+
+
+
\ No newline at end of file
diff --git a/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.fr.xlf b/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.fr.xlf
index 15f888351e..bae1194c90 100644
--- a/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.fr.xlf
+++ b/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.fr.xlf
@@ -1,32 +1,32 @@
-
-
-
-
-
- An exception occurred while collecting final entries from the event log '{0}': {1}
- Une exception s'est produite durant la collecte des entrées finales dans le journal des événements '{0}' : {1}
-
-
-
- Event Log DataCollector did not find eventLogContext for DataCollectionContext: {0}
- Le DataCollector du journal des événements n'a pas trouvé eventLogContext pour DataCollectionContext : {0}
-
-
-
- The '{0}' event log may have been cleared during collection; some events may not have been collected
- Le journal des événements '{0}' a peut-être été effacé durant la collecte. Il est possible que certains événements n'aient pas été collectés
-
-
-
- Unable to read event log '{0}' from computer '{1}'
- Impossible de lire le journal des événements '{0}' de l'ordinateur '{1}'
-
-
-
- The '{0}' event log has encountered an exception, some events might get lost. Error : {1}
- Le journal des événements '{0}' a rencontré une exception, certains événements risquent d'être perdus. Erreur : {1}
-
-
-
-
-
+
+
+
+
+
+ An exception occurred while collecting final entries from the event log '{0}': {1}
+ Une exception s'est produite durant la collecte des entrées finales dans le journal des événements '{0}' : {1}
+
+
+
+ Event Log DataCollector did not find eventLogContext for DataCollectionContext: {0}
+ Le DataCollector du journal des événements n'a pas trouvé eventLogContext pour DataCollectionContext : {0}
+
+
+
+ The '{0}' event log may have been cleared during collection; some events may not have been collected
+ Le journal des événements '{0}' a peut-être été effacé durant la collecte. Il est possible que certains événements n'aient pas été collectés
+
+
+
+ Unable to read event log '{0}' from computer '{1}'
+ Impossible de lire le journal des événements '{0}' de l'ordinateur '{1}'
+
+
+
+ The '{0}' event log has encountered an exception, some events might get lost. Error : {1}
+ Le journal des événements '{0}' a rencontré une exception, certains événements risquent d'être perdus. Erreur : {1}
+
+
+
+
+
\ No newline at end of file
diff --git a/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.it.xlf b/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.it.xlf
index 4ba584766e..8499d73bde 100644
--- a/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.it.xlf
+++ b/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.it.xlf
@@ -1,32 +1,32 @@
-
-
-
-
-
- An exception occurred while collecting final entries from the event log '{0}': {1}
- Si è verificata un'eccezione durante la raccolta delle voci finali del log eventi '{0}': {1}
-
-
-
- Event Log DataCollector did not find eventLogContext for DataCollectionContext: {0}
- L'agente di raccolta dati del log eventi non ha trovato l'elemento eventLogContext per DataCollectionContext: {0}
-
-
-
- The '{0}' event log may have been cleared during collection; some events may not have been collected
- È possibile che il log eventi '{0}' sia stato cancellato durante la raccolta. Alcuni eventi non sono stati raccolti
-
-
-
- Unable to read event log '{0}' from computer '{1}'
- Non è possibile leggere il log eventi '{0}' dal computer '{1}'
-
-
-
- The '{0}' event log has encountered an exception, some events might get lost. Error : {1}
- Il log eventi '{0}' ha rilevato un'eccezione. È possibile che alcuni eventi siano stati persi. Errore: {1}
-
-
-
-
-
+
+
+
+
+
+ An exception occurred while collecting final entries from the event log '{0}': {1}
+ Si è verificata un'eccezione durante la raccolta delle voci finali del log eventi '{0}': {1}
+
+
+
+ Event Log DataCollector did not find eventLogContext for DataCollectionContext: {0}
+ L'agente di raccolta dati del log eventi non ha trovato l'elemento eventLogContext per DataCollectionContext: {0}
+
+
+
+ The '{0}' event log may have been cleared during collection; some events may not have been collected
+ È possibile che il log eventi '{0}' sia stato cancellato durante la raccolta. Alcuni eventi non sono stati raccolti
+
+
+
+ Unable to read event log '{0}' from computer '{1}'
+ Non è possibile leggere il log eventi '{0}' dal computer '{1}'
+
+
+
+ The '{0}' event log has encountered an exception, some events might get lost. Error : {1}
+ Il log eventi '{0}' ha rilevato un'eccezione. È possibile che alcuni eventi siano stati persi. Errore: {1}
+
+
+
+
+
\ No newline at end of file
diff --git a/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.ja.xlf b/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.ja.xlf
index 61951da841..9cd84da41b 100644
--- a/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.ja.xlf
+++ b/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.ja.xlf
@@ -1,32 +1,32 @@
-
-
-
-
-
- An exception occurred while collecting final entries from the event log '{0}': {1}
- イベント ログ '{0}' からの最後のエントリの収集中に例外が発生しました: {1}
-
-
-
- Event Log DataCollector did not find eventLogContext for DataCollectionContext: {0}
- イベント ログ DataCollector では、DataCollectionContext の eventLogContext が見つかりませんでした: {0}
-
-
-
- The '{0}' event log may have been cleared during collection; some events may not have been collected
- 収集中に '{0}' イベント ログがクリアされた可能性があるため、一部のイベントが収集されていない可能性があります。
-
-
-
- Unable to read event log '{0}' from computer '{1}'
- イベント ログ '{0}' をコンピューター '{1}' から読み取れません
-
-
-
- The '{0}' event log has encountered an exception, some events might get lost. Error : {1}
- '{0}' イベント ログで例外が発生しました。一部のイベントが失われる可能性があります。エラー: {1}
-
-
-
-
-
+
+
+
+
+
+ An exception occurred while collecting final entries from the event log '{0}': {1}
+ イベント ログ '{0}' からの最後のエントリの収集中に例外が発生しました: {1}
+
+
+
+ Event Log DataCollector did not find eventLogContext for DataCollectionContext: {0}
+ イベント ログ DataCollector では、DataCollectionContext の eventLogContext が見つかりませんでした: {0}
+
+
+
+ The '{0}' event log may have been cleared during collection; some events may not have been collected
+ 収集中に '{0}' イベント ログがクリアされた可能性があるため、一部のイベントが収集されていない可能性があります。
+
+
+
+ Unable to read event log '{0}' from computer '{1}'
+ イベント ログ '{0}' をコンピューター '{1}' から読み取れません
+
+
+
+ The '{0}' event log has encountered an exception, some events might get lost. Error : {1}
+ '{0}' イベント ログで例外が発生しました。一部のイベントが失われる可能性があります。エラー: {1}
+
+
+
+
+
\ No newline at end of file
diff --git a/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.ko.xlf b/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.ko.xlf
index 2705beb2b0..e0eaf643c3 100644
--- a/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.ko.xlf
+++ b/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.ko.xlf
@@ -1,32 +1,32 @@
-
-
-
-
-
- An exception occurred while collecting final entries from the event log '{0}': {1}
- 이벤트 로그 ‘{0}’에서 최종 항목을 수집하는 동안 예외가 발생했습니다. {1}
-
-
-
- Event Log DataCollector did not find eventLogContext for DataCollectionContext: {0}
- 이벤트 로그 DataCollector에서 DataCollectionContext에 대한 eventLogContext를 찾지 못했습니다. {0}
-
-
-
- The '{0}' event log may have been cleared during collection; some events may not have been collected
- 수집 중 ‘{0}’ 이벤트 로그가 지워졌을 수 있습니다. 일부 이벤트는 수집되지 않았을 수 있습니다.
-
-
-
- Unable to read event log '{0}' from computer '{1}'
- ‘{1}’ 컴퓨터에서 이벤트 로그 ‘{0}’을(를) 읽을 수 없습니다.
-
-
-
- The '{0}' event log has encountered an exception, some events might get lost. Error : {1}
- ‘{0}’ 이벤트 로그에서 예외가 발생했습니다. 일부 이벤트가 손실되었을 수 있습니다. 오류: {1}
-
-
-
-
-
+
+
+
+
+
+ An exception occurred while collecting final entries from the event log '{0}': {1}
+ 이벤트 로그 ‘{0}’에서 최종 항목을 수집하는 동안 예외가 발생했습니다. {1}
+
+
+
+ Event Log DataCollector did not find eventLogContext for DataCollectionContext: {0}
+ 이벤트 로그 DataCollector에서 DataCollectionContext에 대한 eventLogContext를 찾지 못했습니다. {0}
+
+
+
+ The '{0}' event log may have been cleared during collection; some events may not have been collected
+ 수집 중 ‘{0}’ 이벤트 로그가 지워졌을 수 있습니다. 일부 이벤트는 수집되지 않았을 수 있습니다.
+
+
+
+ Unable to read event log '{0}' from computer '{1}'
+ ‘{1}’ 컴퓨터에서 이벤트 로그 ‘{0}’을(를) 읽을 수 없습니다.
+
+
+
+ The '{0}' event log has encountered an exception, some events might get lost. Error : {1}
+ ‘{0}’ 이벤트 로그에서 예외가 발생했습니다. 일부 이벤트가 손실되었을 수 있습니다. 오류: {1}
+
+
+
+
+
\ No newline at end of file
diff --git a/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.pl.xlf b/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.pl.xlf
index ed5106b41a..b0e29af077 100644
--- a/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.pl.xlf
+++ b/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.pl.xlf
@@ -1,32 +1,32 @@
-
-
-
-
-
- An exception occurred while collecting final entries from the event log '{0}': {1}
- Wystąpił wyjątek podczas zbierania końcowych wpisów z dziennika zdarzeń „{0}”: {1}
-
-
-
- Event Log DataCollector did not find eventLogContext for DataCollectionContext: {0}
- Element DataCollector dziennika zdarzeń nie znalazł elementu eventLogContext dla elementu DataCollectionContext: {0}
-
-
-
- The '{0}' event log may have been cleared during collection; some events may not have been collected
- Dziennik zdarzeń „{0}” mógł zostać wyczyszczony podczas zbierania; niektóre zdarzenia mogły nie zostać zebrane
-
-
-
- Unable to read event log '{0}' from computer '{1}'
- Nie można odczytać dziennika zdarzeń „{0}” z komputera „{1}”
-
-
-
- The '{0}' event log has encountered an exception, some events might get lost. Error : {1}
- Dziennik zdarzeń „{0}” napotkał wyjątek, niektóre zdarzenia mogły zostać utracone. Błąd: {1}
-
-
-
-
-
+
+
+
+
+
+ An exception occurred while collecting final entries from the event log '{0}': {1}
+ Wystąpił wyjątek podczas zbierania końcowych wpisów z dziennika zdarzeń „{0}”: {1}
+
+
+
+ Event Log DataCollector did not find eventLogContext for DataCollectionContext: {0}
+ Element DataCollector dziennika zdarzeń nie znalazł elementu eventLogContext dla elementu DataCollectionContext: {0}
+
+
+
+ The '{0}' event log may have been cleared during collection; some events may not have been collected
+ Dziennik zdarzeń „{0}” mógł zostać wyczyszczony podczas zbierania; niektóre zdarzenia mogły nie zostać zebrane
+
+
+
+ Unable to read event log '{0}' from computer '{1}'
+ Nie można odczytać dziennika zdarzeń „{0}” z komputera „{1}”
+
+
+
+ The '{0}' event log has encountered an exception, some events might get lost. Error : {1}
+ Dziennik zdarzeń „{0}” napotkał wyjątek, niektóre zdarzenia mogły zostać utracone. Błąd: {1}
+
+
+
+
+
\ No newline at end of file
diff --git a/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.pt-BR.xlf b/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.pt-BR.xlf
index fe38a4faa9..ed06f80387 100644
--- a/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.pt-BR.xlf
+++ b/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.pt-BR.xlf
@@ -1,32 +1,32 @@
-
-
-
-
-
- An exception occurred while collecting final entries from the event log '{0}': {1}
- Ocorreu uma exceção ao coletar entradas finais do log de eventos '{0}': {1}
-
-
-
- Event Log DataCollector did not find eventLogContext for DataCollectionContext: {0}
- O DataCollector de Log de Eventos não encontrou o eventLogContext para DataCollectionContext: {0}
-
-
-
- The '{0}' event log may have been cleared during collection; some events may not have been collected
- O log de evento '{0}' pode ter sido limpo durante a coleção; alguns eventos podem não ter sido coletados
-
-
-
- Unable to read event log '{0}' from computer '{1}'
- Não é possível ler o log de eventos '{0}' do computador '{1}'
-
-
-
- The '{0}' event log has encountered an exception, some events might get lost. Error : {1}
- O log de eventos '{0}' encontrou uma exceção, alguns eventos podem ser perdidos. Erro: {1}
-
-
-
-
-
+
+
+
+
+
+ An exception occurred while collecting final entries from the event log '{0}': {1}
+ Ocorreu uma exceção ao coletar entradas finais do log de eventos '{0}': {1}
+
+
+
+ Event Log DataCollector did not find eventLogContext for DataCollectionContext: {0}
+ O DataCollector de Log de Eventos não encontrou o eventLogContext para DataCollectionContext: {0}
+
+
+
+ The '{0}' event log may have been cleared during collection; some events may not have been collected
+ O log de evento '{0}' pode ter sido limpo durante a coleção; alguns eventos podem não ter sido coletados
+
+
+
+ Unable to read event log '{0}' from computer '{1}'
+ Não é possível ler o log de eventos '{0}' do computador '{1}'
+
+
+
+ The '{0}' event log has encountered an exception, some events might get lost. Error : {1}
+ O log de eventos '{0}' encontrou uma exceção, alguns eventos podem ser perdidos. Erro: {1}
+
+
+
+
+
\ No newline at end of file
diff --git a/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.ru.xlf b/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.ru.xlf
index 85e87a6897..1a586f9ba6 100644
--- a/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.ru.xlf
+++ b/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.ru.xlf
@@ -1,32 +1,32 @@
-
-
-
-
-
- An exception occurred while collecting final entries from the event log '{0}': {1}
- Произошло исключение при сборе последних записей в журнале событий "{0}": {1}
-
-
-
- Event Log DataCollector did not find eventLogContext for DataCollectionContext: {0}
- Сборщик данных из журнала событий не нашел eventLogContext по DataCollectionContext: {0}
-
-
-
- The '{0}' event log may have been cleared during collection; some events may not have been collected
- Возможно, журнал событий "{0}" был очищен во время сбора данных. Некоторые события могли быть не собраны.
-
-
-
- Unable to read event log '{0}' from computer '{1}'
- Не удалось прочитать журнал событий "{0}" с компьютера "{1}"
-
-
-
- The '{0}' event log has encountered an exception, some events might get lost. Error : {1}
- В журнале событий "{0}" произошло исключение; некоторые события могли быть потеряны. Ошибка: {1}
-
-
-
-
-
+
+
+
+
+
+ An exception occurred while collecting final entries from the event log '{0}': {1}
+ Произошло исключение при сборе последних записей в журнале событий "{0}": {1}
+
+
+
+ Event Log DataCollector did not find eventLogContext for DataCollectionContext: {0}
+ Сборщик данных из журнала событий не нашел eventLogContext по DataCollectionContext: {0}
+
+
+
+ The '{0}' event log may have been cleared during collection; some events may not have been collected
+ Возможно, журнал событий "{0}" был очищен во время сбора данных. Некоторые события могли быть не собраны.
+
+
+
+ Unable to read event log '{0}' from computer '{1}'
+ Не удалось прочитать журнал событий "{0}" с компьютера "{1}"
+
+
+
+ The '{0}' event log has encountered an exception, some events might get lost. Error : {1}
+ В журнале событий "{0}" произошло исключение; некоторые события могли быть потеряны. Ошибка: {1}
+
+
+
+
+
\ No newline at end of file
diff --git a/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.tr.xlf b/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.tr.xlf
index 0b818eb305..4502f92da2 100644
--- a/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.tr.xlf
+++ b/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.tr.xlf
@@ -1,32 +1,32 @@
-
-
-
-
-
- An exception occurred while collecting final entries from the event log '{0}': {1}
- '{0}' olay günlüğündeki son girdiler toplanırken bir özel durum oluştu: {1}
-
-
-
- Event Log DataCollector did not find eventLogContext for DataCollectionContext: {0}
- Event Log DataCollector, şu DataCollectionContext için eventLogContext bulamadı: {0}
-
-
-
- The '{0}' event log may have been cleared during collection; some events may not have been collected
- '{0}' olay günlüğü toplama sırasında temizlenmiş olabilir. Bazı olaylar toplanmamış olabilir
-
-
-
- Unable to read event log '{0}' from computer '{1}'
- '{1}' bilgisayarından olay günlüğü '{0}' okunamıyor
-
-
-
- The '{0}' event log has encountered an exception, some events might get lost. Error : {1}
- '{0}' olay günlüğü bir özel durumla karşılaştı. Bazı olaylar kaybolabilir. Hata : {1}
-
-
-
-
-
+
+
+
+
+
+ An exception occurred while collecting final entries from the event log '{0}': {1}
+ '{0}' olay günlüğündeki son girdiler toplanırken bir özel durum oluştu: {1}
+
+
+
+ Event Log DataCollector did not find eventLogContext for DataCollectionContext: {0}
+ Event Log DataCollector, şu DataCollectionContext için eventLogContext bulamadı: {0}
+
+
+
+ The '{0}' event log may have been cleared during collection; some events may not have been collected
+ '{0}' olay günlüğü toplama sırasında temizlenmiş olabilir. Bazı olaylar toplanmamış olabilir
+
+
+
+ Unable to read event log '{0}' from computer '{1}'
+ '{1}' bilgisayarından olay günlüğü '{0}' okunamıyor
+
+
+
+ The '{0}' event log has encountered an exception, some events might get lost. Error : {1}
+ '{0}' olay günlüğü bir özel durumla karşılaştı. Bazı olaylar kaybolabilir. Hata : {1}
+
+
+
+
+
\ No newline at end of file
diff --git a/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.zh-Hans.xlf b/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.zh-Hans.xlf
index b8c60338f8..baaa472c9a 100644
--- a/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.zh-Hans.xlf
+++ b/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.zh-Hans.xlf
@@ -1,32 +1,32 @@
-
-
-
-
-
- An exception occurred while collecting final entries from the event log '{0}': {1}
- 从事件日志“{0}”中收集最后的条目时出现异常: {1}
-
-
-
- Event Log DataCollector did not find eventLogContext for DataCollectionContext: {0}
- 事件日志数据收集器找不到数据收集上下文的事件日志上下文: {0}
-
-
-
- The '{0}' event log may have been cleared during collection; some events may not have been collected
- “{0}”事件日志可能在收集期间已被清除;某些事件可能还未被收集
-
-
-
- Unable to read event log '{0}' from computer '{1}'
- 无法从计算机“{1}”中读取事件日志“{0}”
-
-
-
- The '{0}' event log has encountered an exception, some events might get lost. Error : {1}
- 事件日志“{0}”出现异常,某些事件可能已丢失。错误: {1}
-
-
-
-
-
+
+
+
+
+
+ An exception occurred while collecting final entries from the event log '{0}': {1}
+ 从事件日志“{0}”中收集最后的条目时出现异常: {1}
+
+
+
+ Event Log DataCollector did not find eventLogContext for DataCollectionContext: {0}
+ 事件日志数据收集器找不到数据收集上下文的事件日志上下文: {0}
+
+
+
+ The '{0}' event log may have been cleared during collection; some events may not have been collected
+ “{0}”事件日志可能在收集期间已被清除;某些事件可能还未被收集
+
+
+
+ Unable to read event log '{0}' from computer '{1}'
+ 无法从计算机“{1}”中读取事件日志“{0}”
+
+
+
+ The '{0}' event log has encountered an exception, some events might get lost. Error : {1}
+ 事件日志“{0}”出现异常,某些事件可能已丢失。错误: {1}
+
+
+
+
+
\ No newline at end of file
diff --git a/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.zh-Hant.xlf b/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.zh-Hant.xlf
index ab61b85b5a..d434c66922 100644
--- a/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.zh-Hant.xlf
+++ b/src/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector/Resources/xlf/Resources.zh-Hant.xlf
@@ -1,32 +1,32 @@
-
-
-
-
-
- An exception occurred while collecting final entries from the event log '{0}': {1}
- 從事件記錄檔 '{0}' 收集最終項目時發生例外狀況: {1}
-
-
-
- Event Log DataCollector did not find eventLogContext for DataCollectionContext: {0}
- 事件記錄檔 DataCollector 找不到 DataCollectionContext 的 eventLogContext: {0}
-
-
-
- The '{0}' event log may have been cleared during collection; some events may not have been collected
- '{0}' 事件記錄檔可能已在收集期間清除; 某些事件可能未收集到
-
-
-
- Unable to read event log '{0}' from computer '{1}'
- 無法從電腦 '{1}' 讀取事件記錄檔 '{0}
-
-
-
- The '{0}' event log has encountered an exception, some events might get lost. Error : {1}
- '{0}' 事件記錄檔發生例外狀況,某些事件可能會遺失。錯誤: {1}
-
-
-
-
-
+
+
+
+
+
+ An exception occurred while collecting final entries from the event log '{0}': {1}
+ 從事件記錄檔 '{0}' 收集最終項目時發生例外狀況: {1}
+
+
+
+ Event Log DataCollector did not find eventLogContext for DataCollectionContext: {0}
+ 事件記錄檔 DataCollector 找不到 DataCollectionContext 的 eventLogContext: {0}
+
+
+
+ The '{0}' event log may have been cleared during collection; some events may not have been collected
+ '{0}' 事件記錄檔可能已在收集期間清除; 某些事件可能未收集到
+
+
+
+ Unable to read event log '{0}' from computer '{1}'
+ 無法從電腦 '{1}' 讀取事件記錄檔 '{0}
+
+
+
+ The '{0}' event log has encountered an exception, some events might get lost. Error : {1}
+ '{0}' 事件記錄檔發生例外狀況,某些事件可能會遺失。錯誤: {1}
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.AdapterUtilities/ManagedNameUtilities/InvalidManagedNameException.cs b/src/Microsoft.TestPlatform.AdapterUtilities/ManagedNameUtilities/InvalidManagedNameException.cs
index 78b6d36363..c0bdef2cbb 100644
--- a/src/Microsoft.TestPlatform.AdapterUtilities/ManagedNameUtilities/InvalidManagedNameException.cs
+++ b/src/Microsoft.TestPlatform.AdapterUtilities/ManagedNameUtilities/InvalidManagedNameException.cs
@@ -11,5 +11,8 @@ public class InvalidManagedNameException : Exception, ISerializable
{
public InvalidManagedNameException(string? message) : base(message) { }
+#if NET8_0_OR_GREATER
+ [Obsolete("Serialization constructors are deprecated in .NET8+", DiagnosticId = "SYSLIB0051")]
+#endif
protected InvalidManagedNameException(SerializationInfo info, StreamingContext context) : base(info, context) { }
}
diff --git a/src/Microsoft.TestPlatform.AdapterUtilities/ManagedNameUtilities/ManagedNameHelper.Reflection.cs b/src/Microsoft.TestPlatform.AdapterUtilities/ManagedNameUtilities/ManagedNameHelper.Reflection.cs
index 0f5848d568..d8eefb9288 100644
--- a/src/Microsoft.TestPlatform.AdapterUtilities/ManagedNameUtilities/ManagedNameHelper.Reflection.cs
+++ b/src/Microsoft.TestPlatform.AdapterUtilities/ManagedNameUtilities/ManagedNameHelper.Reflection.cs
@@ -201,7 +201,7 @@ private static void GetManagedNameAndHierarchy(MethodBase method, bool useClosed
hierarchyValues[HierarchyConstants.Levels.ClassIndex] = managedTypeName.Substring(hierarchyPos[1] + 1, hierarchyPos[2] - hierarchyPos[1] - 1);
hierarchyValues[HierarchyConstants.Levels.NamespaceIndex] = managedTypeName.Substring(hierarchyPos[0], hierarchyPos[1] - hierarchyPos[0]);
}
- hierarchyValues[HierarchyConstants.Levels.ContainerIndex] = method.DeclaringType?.GetTypeInfo()?.Assembly?.GetName()?.Name ?? string.Empty;
+ hierarchyValues[HierarchyConstants.Levels.ContainerIndex] = method.DeclaringType?.Assembly?.GetName()?.Name ?? string.Empty;
}
///
@@ -232,10 +232,8 @@ private static void GetManagedNameAndHierarchy(MethodBase method, bool useClosed
///
public static MethodBase GetMethod(Assembly assembly, string managedTypeName, string managedMethodName)
{
- Type? type;
-
var parsedManagedTypeName = ReflectionHelpers.ParseEscapedString(managedTypeName);
- type = assembly.GetType(parsedManagedTypeName, throwOnError: false, ignoreCase: false);
+ var type = assembly.GetType(parsedManagedTypeName, throwOnError: false, ignoreCase: false);
if (type == null)
{
@@ -291,10 +289,8 @@ bool Filter(MemberInfo mbr, object? param)
return true;
}
- MemberInfo[] methods;
-
var bindingFlags = BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.Static;
- methods = type.FindMembers(MemberTypes.Method, bindingFlags, Filter, null);
+ var methods = type.FindMembers(MemberTypes.Method, bindingFlags, Filter, null);
return (MethodInfo?)(methods.Length switch
{
diff --git a/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.cs.xlf b/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.cs.xlf
index f90d6af1da..8e2910e5ef 100644
--- a/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.cs.xlf
+++ b/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.cs.xlf
@@ -1,64 +1,64 @@
-
-
-
-
-
- ManagedName is incomplete
- Název ManagedName není úplný.
-
-
-
- Method arity must be numeric.
- Arita metody musí být číselná.
-
-
-
- Method '{0}' not found on type '{1}'
- Metoda {0} nebyla nalezena u typu {1}.
- {0} is the method name, {1} is the full type name.
-
-
- Type '{0}' not found
- Typ {0} nebyl nalezen.
- {0} is the full type name.
-
-
- Unexpected characters after the end of the ManagedName (pos: {0})
- Neočekávané znaky na konci položky ManagedName (pozice: {0})
- {0} is the position of unexpected characters
-
-
- Whitespace is not valid in a ManagedName (pos: {0})
- V ManagedName se nepovoluje mezera (pozice: {0}).
- {0} is the position of invalid whitespace
-
-
- '{0}.{1}' is not implemented on this platform!
- Metoda {0}.{1} není na této platformě implementována.
- '{className}.{methodName}' is not implemented on this platform!
-
-Example: 'System.Reflection.MethodBase' is not implemented on this platform!
-
-
- Invalid escape sequence! (segment: {0}, pos: {1})
- Neplatná řídicí sekvence. (Segment: {0}, pozice: {1})
- An escape sequence started with '\', but it wasn't legal. {0}: Invalid string, {1}: starting position of invalid sequence.
-
-
- A closing single quote was expected at the end of the segment! (segment: {0})
- Na konci segmentu se očekávala ukončovací jednoduchá uvozovka. (Segment: {0})
- An error thrown when the type name ended but opened single quote was not matched.
-
-
- Argument must be a method. (Argument name: {0})
- Argument musí být metoda. (Název argumentu: {0})
-
-
-
- Cannot append to a TestIdProvider, after GetId or GetHash method is called.
- Po volání metody GetId nebo GetHash není možné připojit k zprostředkovateli TestIdProvider.
-
-
-
-
-
+
+
+
+
+
+ ManagedName is incomplete
+ Název ManagedName není úplný.
+
+
+
+ Method arity must be numeric.
+ Arita metody musí být číselná.
+
+
+
+ Method '{0}' not found on type '{1}'
+ Metoda {0} nebyla nalezena u typu {1}.
+ {0} is the method name, {1} is the full type name.
+
+
+ Type '{0}' not found
+ Typ {0} nebyl nalezen.
+ {0} is the full type name.
+
+
+ Unexpected characters after the end of the ManagedName (pos: {0})
+ Neočekávané znaky na konci položky ManagedName (pozice: {0})
+ {0} is the position of unexpected characters
+
+
+ Whitespace is not valid in a ManagedName (pos: {0})
+ V ManagedName se nepovoluje mezera (pozice: {0}).
+ {0} is the position of invalid whitespace
+
+
+ '{0}.{1}' is not implemented on this platform!
+ Metoda {0}.{1} není na této platformě implementována.
+ '{className}.{methodName}' is not implemented on this platform!
+
+Example: 'System.Reflection.MethodBase' is not implemented on this platform!
+
+
+ Invalid escape sequence! (segment: {0}, pos: {1})
+ Neplatná řídicí sekvence. (Segment: {0}, pozice: {1})
+ An escape sequence started with '\', but it wasn't legal. {0}: Invalid string, {1}: starting position of invalid sequence.
+
+
+ A closing single quote was expected at the end of the segment! (segment: {0})
+ Na konci segmentu se očekávala ukončovací jednoduchá uvozovka. (Segment: {0})
+ An error thrown when the type name ended but opened single quote was not matched.
+
+
+ Argument must be a method. (Argument name: {0})
+ Argument musí být metoda. (Název argumentu: {0})
+
+
+
+ Cannot append to a TestIdProvider, after GetId or GetHash method is called.
+ Po volání metody GetId nebo GetHash není možné připojit k zprostředkovateli TestIdProvider.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.de.xlf b/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.de.xlf
index cfd4d56e00..468af1bf0f 100644
--- a/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.de.xlf
+++ b/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.de.xlf
@@ -1,64 +1,64 @@
-
-
-
-
-
- ManagedName is incomplete
- ManagedName unvollständig
-
-
-
- Method arity must be numeric.
- Die Stelligkeit der Methode muss numerisch sein.
-
-
-
- Method '{0}' not found on type '{1}'
- Die Methode "{0}" wurde für den Typ "{1}" nicht gefunden.
- {0} is the method name, {1} is the full type name.
-
-
- Type '{0}' not found
- Der Typ "{0}" wurde nicht gefunden.
- {0} is the full type name.
-
-
- Unexpected characters after the end of the ManagedName (pos: {0})
- Unerwartetes Zeichen nach dem Ende von ManagedName (Position: {0}).
- {0} is the position of unexpected characters
-
-
- Whitespace is not valid in a ManagedName (pos: {0})
- Leerzeichen sind in einem ManagedName unzulässig (Position: {0}).
- {0} is the position of invalid whitespace
-
-
- '{0}.{1}' is not implemented on this platform!
- "{0}.{1}" ist auf dieser Plattform nicht implementiert!
- '{className}.{methodName}' is not implemented on this platform!
-
-Example: 'System.Reflection.MethodBase' is not implemented on this platform!
-
-
- Invalid escape sequence! (segment: {0}, pos: {1})
- Ungültige Escapesequenz (Segment: {0}, Position: {1}).
- An escape sequence started with '\', but it wasn't legal. {0}: Invalid string, {1}: starting position of invalid sequence.
-
-
- A closing single quote was expected at the end of the segment! (segment: {0})
- Am Ende des Segments wurde ein schließendes einfaches Anführungszeichen erwartet (Segment: {0}).
- An error thrown when the type name ended but opened single quote was not matched.
-
-
- Argument must be a method. (Argument name: {0})
- Das Argument muss eine Methode sein. (Argumentname: {0})
-
-
-
- Cannot append to a TestIdProvider, after GetId or GetHash method is called.
- Kann nicht an einen TestIdProvider angefügt werden, nachdem die GetId- oder GetHash-Methode aufgerufen wurde.
-
-
-
-
-
+
+
+
+
+
+ ManagedName is incomplete
+ ManagedName unvollständig
+
+
+
+ Method arity must be numeric.
+ Die Stelligkeit der Methode muss numerisch sein.
+
+
+
+ Method '{0}' not found on type '{1}'
+ Die Methode "{0}" wurde für den Typ "{1}" nicht gefunden.
+ {0} is the method name, {1} is the full type name.
+
+
+ Type '{0}' not found
+ Der Typ "{0}" wurde nicht gefunden.
+ {0} is the full type name.
+
+
+ Unexpected characters after the end of the ManagedName (pos: {0})
+ Unerwartetes Zeichen nach dem Ende von ManagedName (Position: {0}).
+ {0} is the position of unexpected characters
+
+
+ Whitespace is not valid in a ManagedName (pos: {0})
+ Leerzeichen sind in einem ManagedName unzulässig (Position: {0}).
+ {0} is the position of invalid whitespace
+
+
+ '{0}.{1}' is not implemented on this platform!
+ "{0}.{1}" ist auf dieser Plattform nicht implementiert!
+ '{className}.{methodName}' is not implemented on this platform!
+
+Example: 'System.Reflection.MethodBase' is not implemented on this platform!
+
+
+ Invalid escape sequence! (segment: {0}, pos: {1})
+ Ungültige Escapesequenz (Segment: {0}, Position: {1}).
+ An escape sequence started with '\', but it wasn't legal. {0}: Invalid string, {1}: starting position of invalid sequence.
+
+
+ A closing single quote was expected at the end of the segment! (segment: {0})
+ Am Ende des Segments wurde ein schließendes einfaches Anführungszeichen erwartet (Segment: {0}).
+ An error thrown when the type name ended but opened single quote was not matched.
+
+
+ Argument must be a method. (Argument name: {0})
+ Das Argument muss eine Methode sein. (Argumentname: {0})
+
+
+
+ Cannot append to a TestIdProvider, after GetId or GetHash method is called.
+ Kann nicht an einen TestIdProvider angefügt werden, nachdem die GetId- oder GetHash-Methode aufgerufen wurde.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.es.xlf b/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.es.xlf
index e7567df6d8..6d93fe7b57 100644
--- a/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.es.xlf
+++ b/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.es.xlf
@@ -1,64 +1,64 @@
-
-
-
-
-
- ManagedName is incomplete
- ManagedName está incompleto.
-
-
-
- Method arity must be numeric.
- La aridad del método debe ser numérica.
-
-
-
- Method '{0}' not found on type '{1}'
- Método "{0}" no encontrado en el tipo "{1}"
- {0} is the method name, {1} is the full type name.
-
-
- Type '{0}' not found
- Tipo "{0}" no encontrado
- {0} is the full type name.
-
-
- Unexpected characters after the end of the ManagedName (pos: {0})
- Caracteres inesperados después del final de ManagedName (posición: {0})
- {0} is the position of unexpected characters
-
-
- Whitespace is not valid in a ManagedName (pos: {0})
- El espacio en blanco no es válido en un elemento ManagedName (posición: {0})
- {0} is the position of invalid whitespace
-
-
- '{0}.{1}' is not implemented on this platform!
- "{0}.{1}" no se ha implementado en esta plataforma.
- '{className}.{methodName}' is not implemented on this platform!
-
-Example: 'System.Reflection.MethodBase' is not implemented on this platform!
-
-
- Invalid escape sequence! (segment: {0}, pos: {1})
- Secuencia de escape no válida. (Segmento: {0}. Posición: {1})
- An escape sequence started with '\', but it wasn't legal. {0}: Invalid string, {1}: starting position of invalid sequence.
-
-
- A closing single quote was expected at the end of the segment! (segment: {0})
- Se esperaba una comilla simple de cierre al final del segmento. (Segmento: {0})
- An error thrown when the type name ended but opened single quote was not matched.
-
-
- Argument must be a method. (Argument name: {0})
- El argumento debe ser un método. (Nombre del argumento: {0})
-
-
-
- Cannot append to a TestIdProvider, after GetId or GetHash method is called.
- No se puede anexar a un TestIdProvider después de llamar al método GetId o GetHash.
-
-
-
-
-
+
+
+
+
+
+ ManagedName is incomplete
+ ManagedName está incompleto.
+
+
+
+ Method arity must be numeric.
+ La aridad del método debe ser numérica.
+
+
+
+ Method '{0}' not found on type '{1}'
+ Método "{0}" no encontrado en el tipo "{1}"
+ {0} is the method name, {1} is the full type name.
+
+
+ Type '{0}' not found
+ Tipo "{0}" no encontrado
+ {0} is the full type name.
+
+
+ Unexpected characters after the end of the ManagedName (pos: {0})
+ Caracteres inesperados después del final de ManagedName (posición: {0})
+ {0} is the position of unexpected characters
+
+
+ Whitespace is not valid in a ManagedName (pos: {0})
+ El espacio en blanco no es válido en un elemento ManagedName (posición: {0})
+ {0} is the position of invalid whitespace
+
+
+ '{0}.{1}' is not implemented on this platform!
+ "{0}.{1}" no se ha implementado en esta plataforma.
+ '{className}.{methodName}' is not implemented on this platform!
+
+Example: 'System.Reflection.MethodBase' is not implemented on this platform!
+
+
+ Invalid escape sequence! (segment: {0}, pos: {1})
+ Secuencia de escape no válida. (Segmento: {0}. Posición: {1})
+ An escape sequence started with '\', but it wasn't legal. {0}: Invalid string, {1}: starting position of invalid sequence.
+
+
+ A closing single quote was expected at the end of the segment! (segment: {0})
+ Se esperaba una comilla simple de cierre al final del segmento. (Segmento: {0})
+ An error thrown when the type name ended but opened single quote was not matched.
+
+
+ Argument must be a method. (Argument name: {0})
+ El argumento debe ser un método. (Nombre del argumento: {0})
+
+
+
+ Cannot append to a TestIdProvider, after GetId or GetHash method is called.
+ No se puede anexar a un TestIdProvider después de llamar al método GetId o GetHash.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.fr.xlf b/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.fr.xlf
index f57a734438..1d368f958f 100644
--- a/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.fr.xlf
+++ b/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.fr.xlf
@@ -1,64 +1,64 @@
-
-
-
-
-
- ManagedName is incomplete
- ManagedName est incomplet
-
-
-
- Method arity must be numeric.
- L'arité de la méthode doit être numérique.
-
-
-
- Method '{0}' not found on type '{1}'
- Méthode '{0}' introuvable sur le type '{1}'
- {0} is the method name, {1} is the full type name.
-
-
- Type '{0}' not found
- Type '{0}' introuvable
- {0} is the full type name.
-
-
- Unexpected characters after the end of the ManagedName (pos: {0})
- Caractères inattendus après la fin de ManagedName (pos. : {0})
- {0} is the position of unexpected characters
-
-
- Whitespace is not valid in a ManagedName (pos: {0})
- Les espaces blancs ne sont pas valides dans un ManagedName (pos. : {0})
- {0} is the position of invalid whitespace
-
-
- '{0}.{1}' is not implemented on this platform!
- '{0}.{1}' n'est pas implémenté sur cette plateforme !
- '{className}.{methodName}' is not implemented on this platform!
-
-Example: 'System.Reflection.MethodBase' is not implemented on this platform!
-
-
- Invalid escape sequence! (segment: {0}, pos: {1})
- Séquence d'échappement non valide ! (segment : {0}, position : {1})
- An escape sequence started with '\', but it wasn't legal. {0}: Invalid string, {1}: starting position of invalid sequence.
-
-
- A closing single quote was expected at the end of the segment! (segment: {0})
- Un guillemet simple fermant était attendu à la fin du segment ! (segment : {0})
- An error thrown when the type name ended but opened single quote was not matched.
-
-
- Argument must be a method. (Argument name: {0})
- L’argument doit être une méthode. (Nom de l’argument : {0})
-
-
-
- Cannot append to a TestIdProvider, after GetId or GetHash method is called.
- Impossible d’ajouter à un TestIdProvider, après l’appel de la méthode GetId ou GetHash.
-
-
-
-
-
+
+
+
+
+
+ ManagedName is incomplete
+ ManagedName est incomplet
+
+
+
+ Method arity must be numeric.
+ L'arité de la méthode doit être numérique.
+
+
+
+ Method '{0}' not found on type '{1}'
+ Méthode '{0}' introuvable sur le type '{1}'
+ {0} is the method name, {1} is the full type name.
+
+
+ Type '{0}' not found
+ Type '{0}' introuvable
+ {0} is the full type name.
+
+
+ Unexpected characters after the end of the ManagedName (pos: {0})
+ Caractères inattendus après la fin de ManagedName (pos. : {0})
+ {0} is the position of unexpected characters
+
+
+ Whitespace is not valid in a ManagedName (pos: {0})
+ Les espaces blancs ne sont pas valides dans un ManagedName (pos. : {0})
+ {0} is the position of invalid whitespace
+
+
+ '{0}.{1}' is not implemented on this platform!
+ '{0}.{1}' n'est pas implémenté sur cette plateforme !
+ '{className}.{methodName}' is not implemented on this platform!
+
+Example: 'System.Reflection.MethodBase' is not implemented on this platform!
+
+
+ Invalid escape sequence! (segment: {0}, pos: {1})
+ Séquence d'échappement non valide ! (segment : {0}, position : {1})
+ An escape sequence started with '\', but it wasn't legal. {0}: Invalid string, {1}: starting position of invalid sequence.
+
+
+ A closing single quote was expected at the end of the segment! (segment: {0})
+ Un guillemet simple fermant était attendu à la fin du segment ! (segment : {0})
+ An error thrown when the type name ended but opened single quote was not matched.
+
+
+ Argument must be a method. (Argument name: {0})
+ L’argument doit être une méthode. (Nom de l’argument : {0})
+
+
+
+ Cannot append to a TestIdProvider, after GetId or GetHash method is called.
+ Impossible d’ajouter à un TestIdProvider, après l’appel de la méthode GetId ou GetHash.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.it.xlf b/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.it.xlf
index 0b16ea262b..5612c49ce1 100644
--- a/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.it.xlf
+++ b/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.it.xlf
@@ -1,64 +1,64 @@
-
-
-
-
-
- ManagedName is incomplete
- L'elemento ManagedName è incompleto
-
-
-
- Method arity must be numeric.
- Il grado del metodo deve essere numerico.
-
-
-
- Method '{0}' not found on type '{1}'
- Il metodo '{0}' non è stato trovato nel tipo '{1}'
- {0} is the method name, {1} is the full type name.
-
-
- Type '{0}' not found
- Il tipo '{0}' non è stato trovato
- {0} is the full type name.
-
-
- Unexpected characters after the end of the ManagedName (pos: {0})
- Caratteri imprevisti dopo la fine dell'elemento ManagedName (pos.: {0})
- {0} is the position of unexpected characters
-
-
- Whitespace is not valid in a ManagedName (pos: {0})
- Gli spazi vuoti non sono validi in un elemento ManagedName (pos.: {0})
- {0} is the position of invalid whitespace
-
-
- '{0}.{1}' is not implemented on this platform!
- '{0}.{1}' non è implementato in questa piattaforma.
- '{className}.{methodName}' is not implemented on this platform!
-
-Example: 'System.Reflection.MethodBase' is not implemented on this platform!
-
-
- Invalid escape sequence! (segment: {0}, pos: {1})
- La sequenza di escape non è valida. Segmento: {0}. Posizione: {1}
- An escape sequence started with '\', but it wasn't legal. {0}: Invalid string, {1}: starting position of invalid sequence.
-
-
- A closing single quote was expected at the end of the segment! (segment: {0})
- Alla fine del segmento era prevista una virgoletta singola di chiusura. Segmento: {0}
- An error thrown when the type name ended but opened single quote was not matched.
-
-
- Argument must be a method. (Argument name: {0})
- L'argomento deve essere un metodo. (Nome argomento: {0})
-
-
-
- Cannot append to a TestIdProvider, after GetId or GetHash method is called.
- Non è possibile accodare a TestIdProvider dopo la chiamata del metodo GetId o GetHash.
-
-
-
-
-
+
+
+
+
+
+ ManagedName is incomplete
+ L'elemento ManagedName è incompleto
+
+
+
+ Method arity must be numeric.
+ Il grado del metodo deve essere numerico.
+
+
+
+ Method '{0}' not found on type '{1}'
+ Il metodo '{0}' non è stato trovato nel tipo '{1}'
+ {0} is the method name, {1} is the full type name.
+
+
+ Type '{0}' not found
+ Il tipo '{0}' non è stato trovato
+ {0} is the full type name.
+
+
+ Unexpected characters after the end of the ManagedName (pos: {0})
+ Caratteri imprevisti dopo la fine dell'elemento ManagedName (pos.: {0})
+ {0} is the position of unexpected characters
+
+
+ Whitespace is not valid in a ManagedName (pos: {0})
+ Gli spazi vuoti non sono validi in un elemento ManagedName (pos.: {0})
+ {0} is the position of invalid whitespace
+
+
+ '{0}.{1}' is not implemented on this platform!
+ '{0}.{1}' non è implementato in questa piattaforma.
+ '{className}.{methodName}' is not implemented on this platform!
+
+Example: 'System.Reflection.MethodBase' is not implemented on this platform!
+
+
+ Invalid escape sequence! (segment: {0}, pos: {1})
+ La sequenza di escape non è valida. Segmento: {0}. Posizione: {1}
+ An escape sequence started with '\', but it wasn't legal. {0}: Invalid string, {1}: starting position of invalid sequence.
+
+
+ A closing single quote was expected at the end of the segment! (segment: {0})
+ Alla fine del segmento era prevista una virgoletta singola di chiusura. Segmento: {0}
+ An error thrown when the type name ended but opened single quote was not matched.
+
+
+ Argument must be a method. (Argument name: {0})
+ L'argomento deve essere un metodo. (Nome argomento: {0})
+
+
+
+ Cannot append to a TestIdProvider, after GetId or GetHash method is called.
+ Non è possibile accodare a TestIdProvider dopo la chiamata del metodo GetId o GetHash.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.ja.xlf b/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.ja.xlf
index 9d7fe0d100..56c3aac7e3 100644
--- a/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.ja.xlf
+++ b/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.ja.xlf
@@ -1,64 +1,64 @@
-
-
-
-
-
- ManagedName is incomplete
- ManagedName が不完全です
-
-
-
- Method arity must be numeric.
- メソッドのアリティは数値である必要があります。
-
-
-
- Method '{0}' not found on type '{1}'
- メソッド '{0}' が型 '{1}' に見つかりませんでした。
- {0} is the method name, {1} is the full type name.
-
-
- Type '{0}' not found
- 型 '{0}' が見つかりません。
- {0} is the full type name.
-
-
- Unexpected characters after the end of the ManagedName (pos: {0})
- ManagedName の末尾の後ろに予期しない文字があります (位置: {0})
- {0} is the position of unexpected characters
-
-
- Whitespace is not valid in a ManagedName (pos: {0})
- ManagedName では空白は無効です (位置: {0})
- {0} is the position of invalid whitespace
-
-
- '{0}.{1}' is not implemented on this platform!
- '{0}.{1}' はこのプラットフォームに実装されていません。
- '{className}.{methodName}' is not implemented on this platform!
-
-Example: 'System.Reflection.MethodBase' is not implemented on this platform!
-
-
- Invalid escape sequence! (segment: {0}, pos: {1})
- 無効なエスケープ シーケンスです。(セグメント: {0}、位置: {1})
- An escape sequence started with '\', but it wasn't legal. {0}: Invalid string, {1}: starting position of invalid sequence.
-
-
- A closing single quote was expected at the end of the segment! (segment: {0})
- セグメントの最後に対応する一重引用符を指定する必要があります。(セグメント: {0})
- An error thrown when the type name ended but opened single quote was not matched.
-
-
- Argument must be a method. (Argument name: {0})
- 引数はメソッドである必要があります。(引数名: {0})
-
-
-
- Cannot append to a TestIdProvider, after GetId or GetHash method is called.
- GetId メソッドまたは GetHash メソッドが呼び出された後は、TestIdProvider に追加できません。
-
-
-
-
-
+
+
+
+
+
+ ManagedName is incomplete
+ ManagedName が不完全です
+
+
+
+ Method arity must be numeric.
+ メソッドのアリティは数値である必要があります。
+
+
+
+ Method '{0}' not found on type '{1}'
+ メソッド '{0}' が型 '{1}' に見つかりませんでした。
+ {0} is the method name, {1} is the full type name.
+
+
+ Type '{0}' not found
+ 型 '{0}' が見つかりません。
+ {0} is the full type name.
+
+
+ Unexpected characters after the end of the ManagedName (pos: {0})
+ ManagedName の末尾の後ろに予期しない文字があります (位置: {0})
+ {0} is the position of unexpected characters
+
+
+ Whitespace is not valid in a ManagedName (pos: {0})
+ ManagedName では空白は無効です (位置: {0})
+ {0} is the position of invalid whitespace
+
+
+ '{0}.{1}' is not implemented on this platform!
+ '{0}.{1}' はこのプラットフォームに実装されていません。
+ '{className}.{methodName}' is not implemented on this platform!
+
+Example: 'System.Reflection.MethodBase' is not implemented on this platform!
+
+
+ Invalid escape sequence! (segment: {0}, pos: {1})
+ 無効なエスケープ シーケンスです。(セグメント: {0}、位置: {1})
+ An escape sequence started with '\', but it wasn't legal. {0}: Invalid string, {1}: starting position of invalid sequence.
+
+
+ A closing single quote was expected at the end of the segment! (segment: {0})
+ セグメントの最後に対応する一重引用符を指定する必要があります。(セグメント: {0})
+ An error thrown when the type name ended but opened single quote was not matched.
+
+
+ Argument must be a method. (Argument name: {0})
+ 引数はメソッドである必要があります。(引数名: {0})
+
+
+
+ Cannot append to a TestIdProvider, after GetId or GetHash method is called.
+ GetId メソッドまたは GetHash メソッドが呼び出された後は、TestIdProvider に追加できません。
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.ko.xlf b/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.ko.xlf
index 2872926a80..d061d56352 100644
--- a/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.ko.xlf
+++ b/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.ko.xlf
@@ -1,64 +1,64 @@
-
-
-
-
-
- ManagedName is incomplete
- ManagedName이 불완전함
-
-
-
- Method arity must be numeric.
- 메서드 인수 개수는 숫자여야 합니다.
-
-
-
- Method '{0}' not found on type '{1}'
- '{0}' 메서드를 '{1}' 형식에서 찾을 수 없습니다.
- {0} is the method name, {1} is the full type name.
-
-
- Type '{0}' not found
- '{0}' 형식을 찾을 수 없습니다.
- {0} is the full type name.
-
-
- Unexpected characters after the end of the ManagedName (pos: {0})
- ManagedName의 끝 다음에 예기치 않은 문자가 있습니다(pos: {0}).
- {0} is the position of unexpected characters
-
-
- Whitespace is not valid in a ManagedName (pos: {0})
- ManagedName에서 공백은 유효하지 않습니다(pos: {0}).
- {0} is the position of invalid whitespace
-
-
- '{0}.{1}' is not implemented on this platform!
- '{0}.{1}'이(가)이 플랫폼에서 구현되지 않았습니다.
- '{className}.{methodName}' is not implemented on this platform!
-
-Example: 'System.Reflection.MethodBase' is not implemented on this platform!
-
-
- Invalid escape sequence! (segment: {0}, pos: {1})
- 이스케이프 시퀀스가 잘못되었습니다. (세그먼트: {0}, pos: {1})
- An escape sequence started with '\', but it wasn't legal. {0}: Invalid string, {1}: starting position of invalid sequence.
-
-
- A closing single quote was expected at the end of the segment! (segment: {0})
- 세그먼트 끝에 닫는 작은따옴표가 있어야 합니다. (세그먼트: {0})
- An error thrown when the type name ended but opened single quote was not matched.
-
-
- Argument must be a method. (Argument name: {0})
- 인수는 메서드여야 합니다. (인수 이름: {0})
-
-
-
- Cannot append to a TestIdProvider, after GetId or GetHash method is called.
- GetId 또는 GetHash 메서드가 호출된 후에는 TestIdProvider에 추가할 수 없습니다.
-
-
-
-
-
+
+
+
+
+
+ ManagedName is incomplete
+ ManagedName이 불완전함
+
+
+
+ Method arity must be numeric.
+ 메서드 인수 개수는 숫자여야 합니다.
+
+
+
+ Method '{0}' not found on type '{1}'
+ '{0}' 메서드를 '{1}' 형식에서 찾을 수 없습니다.
+ {0} is the method name, {1} is the full type name.
+
+
+ Type '{0}' not found
+ '{0}' 형식을 찾을 수 없습니다.
+ {0} is the full type name.
+
+
+ Unexpected characters after the end of the ManagedName (pos: {0})
+ ManagedName의 끝 다음에 예기치 않은 문자가 있습니다(pos: {0}).
+ {0} is the position of unexpected characters
+
+
+ Whitespace is not valid in a ManagedName (pos: {0})
+ ManagedName에서 공백은 유효하지 않습니다(pos: {0}).
+ {0} is the position of invalid whitespace
+
+
+ '{0}.{1}' is not implemented on this platform!
+ '{0}.{1}'이(가)이 플랫폼에서 구현되지 않았습니다.
+ '{className}.{methodName}' is not implemented on this platform!
+
+Example: 'System.Reflection.MethodBase' is not implemented on this platform!
+
+
+ Invalid escape sequence! (segment: {0}, pos: {1})
+ 이스케이프 시퀀스가 잘못되었습니다. (세그먼트: {0}, pos: {1})
+ An escape sequence started with '\', but it wasn't legal. {0}: Invalid string, {1}: starting position of invalid sequence.
+
+
+ A closing single quote was expected at the end of the segment! (segment: {0})
+ 세그먼트 끝에 닫는 작은따옴표가 있어야 합니다. (세그먼트: {0})
+ An error thrown when the type name ended but opened single quote was not matched.
+
+
+ Argument must be a method. (Argument name: {0})
+ 인수는 메서드여야 합니다. (인수 이름: {0})
+
+
+
+ Cannot append to a TestIdProvider, after GetId or GetHash method is called.
+ GetId 또는 GetHash 메서드가 호출된 후에는 TestIdProvider에 추가할 수 없습니다.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.pl.xlf b/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.pl.xlf
index d8792a4dfe..8a39e98765 100644
--- a/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.pl.xlf
+++ b/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.pl.xlf
@@ -1,64 +1,64 @@
-
-
-
-
-
- ManagedName is incomplete
- Wartość ManagedName jest niekompletna
-
-
-
- Method arity must be numeric.
- Liczba argumentów metody musi mieść wartość liczbową.
-
-
-
- Method '{0}' not found on type '{1}'
- Nie znaleziono metody „{0}” w typie „{1}”
- {0} is the method name, {1} is the full type name.
-
-
- Type '{0}' not found
- Nie znaleziono typu „{0}”
- {0} is the full type name.
-
-
- Unexpected characters after the end of the ManagedName (pos: {0})
- Nieoczekiwane znaki po zakończeniu wartości ManagedName (pozycja: {0})
- {0} is the position of unexpected characters
-
-
- Whitespace is not valid in a ManagedName (pos: {0})
- Biały znak jest niedozwolony w wartości ManagedName (pozycja: {0})
- {0} is the position of invalid whitespace
-
-
- '{0}.{1}' is not implemented on this platform!
- Element „{0}.{1}” nie jest zaimplementowany na tej platformie.
- '{className}.{methodName}' is not implemented on this platform!
-
-Example: 'System.Reflection.MethodBase' is not implemented on this platform!
-
-
- Invalid escape sequence! (segment: {0}, pos: {1})
- Nieprawidłowa sekwencja ucieczki (segment: {0}, pozycja: {1})
- An escape sequence started with '\', but it wasn't legal. {0}: Invalid string, {1}: starting position of invalid sequence.
-
-
- A closing single quote was expected at the end of the segment! (segment: {0})
- Oczekiwano zamykającego cudzysłowu pojedynczego na końcu segmentu. (segment: {0})
- An error thrown when the type name ended but opened single quote was not matched.
-
-
- Argument must be a method. (Argument name: {0})
- Argument musi być metodą. (Nazwa argumentu: {0})
-
-
-
- Cannot append to a TestIdProvider, after GetId or GetHash method is called.
- Nie można dołączyć do elementu TestIdProvider po wywołaniu metody GetId lub GetHash.
-
-
-
-
-
+
+
+
+
+
+ ManagedName is incomplete
+ Wartość ManagedName jest niekompletna
+
+
+
+ Method arity must be numeric.
+ Liczba argumentów metody musi mieść wartość liczbową.
+
+
+
+ Method '{0}' not found on type '{1}'
+ Nie znaleziono metody „{0}” w typie „{1}”
+ {0} is the method name, {1} is the full type name.
+
+
+ Type '{0}' not found
+ Nie znaleziono typu „{0}”
+ {0} is the full type name.
+
+
+ Unexpected characters after the end of the ManagedName (pos: {0})
+ Nieoczekiwane znaki po zakończeniu wartości ManagedName (pozycja: {0})
+ {0} is the position of unexpected characters
+
+
+ Whitespace is not valid in a ManagedName (pos: {0})
+ Biały znak jest niedozwolony w wartości ManagedName (pozycja: {0})
+ {0} is the position of invalid whitespace
+
+
+ '{0}.{1}' is not implemented on this platform!
+ Element „{0}.{1}” nie jest zaimplementowany na tej platformie.
+ '{className}.{methodName}' is not implemented on this platform!
+
+Example: 'System.Reflection.MethodBase' is not implemented on this platform!
+
+
+ Invalid escape sequence! (segment: {0}, pos: {1})
+ Nieprawidłowa sekwencja ucieczki (segment: {0}, pozycja: {1})
+ An escape sequence started with '\', but it wasn't legal. {0}: Invalid string, {1}: starting position of invalid sequence.
+
+
+ A closing single quote was expected at the end of the segment! (segment: {0})
+ Oczekiwano zamykającego cudzysłowu pojedynczego na końcu segmentu. (segment: {0})
+ An error thrown when the type name ended but opened single quote was not matched.
+
+
+ Argument must be a method. (Argument name: {0})
+ Argument musi być metodą. (Nazwa argumentu: {0})
+
+
+
+ Cannot append to a TestIdProvider, after GetId or GetHash method is called.
+ Nie można dołączyć do elementu TestIdProvider po wywołaniu metody GetId lub GetHash.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.pt-BR.xlf b/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.pt-BR.xlf
index 6f25bfbf3a..b01c848a0c 100644
--- a/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.pt-BR.xlf
+++ b/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.pt-BR.xlf
@@ -1,64 +1,64 @@
-
-
-
-
-
- ManagedName is incomplete
- O ManagedName está incompleto
-
-
-
- Method arity must be numeric.
- A aridade do método deve ser numérica.
-
-
-
- Method '{0}' not found on type '{1}'
- Método '{0}' não encontrado no tipo '{1}'
- {0} is the method name, {1} is the full type name.
-
-
- Type '{0}' not found
- Tipo '{0}' não encontrado
- {0} is the full type name.
-
-
- Unexpected characters after the end of the ManagedName (pos: {0})
- Caracteres inesperados após o final de ManagedName (posição: {0})
- {0} is the position of unexpected characters
-
-
- Whitespace is not valid in a ManagedName (pos: {0})
- O espaço em branco não é válido em um ManagedName (posição: {0})
- {0} is the position of invalid whitespace
-
-
- '{0}.{1}' is not implemented on this platform!
- '{0}.{1}' não está implementado nesta plataforma.
- '{className}.{methodName}' is not implemented on this platform!
-
-Example: 'System.Reflection.MethodBase' is not implemented on this platform!
-
-
- Invalid escape sequence! (segment: {0}, pos: {1})
- Sequência de escape inválida. (segmento: {0}, posição: {1})
- An escape sequence started with '\', but it wasn't legal. {0}: Invalid string, {1}: starting position of invalid sequence.
-
-
- A closing single quote was expected at the end of the segment! (segment: {0})
- Uma aspa simples de fechamento era esperada no final do segmento. (segmento: {0})
- An error thrown when the type name ended but opened single quote was not matched.
-
-
- Argument must be a method. (Argument name: {0})
- O argumento deve ser um método. (Nome do argumento: {0})
-
-
-
- Cannot append to a TestIdProvider, after GetId or GetHash method is called.
- Não é possível anexar a um TestIdProvider depois que o método GetId ou GetHash é chamado.
-
-
-
-
-
+
+
+
+
+
+ ManagedName is incomplete
+ O ManagedName está incompleto
+
+
+
+ Method arity must be numeric.
+ A aridade do método deve ser numérica.
+
+
+
+ Method '{0}' not found on type '{1}'
+ Método '{0}' não encontrado no tipo '{1}'
+ {0} is the method name, {1} is the full type name.
+
+
+ Type '{0}' not found
+ Tipo '{0}' não encontrado
+ {0} is the full type name.
+
+
+ Unexpected characters after the end of the ManagedName (pos: {0})
+ Caracteres inesperados após o final de ManagedName (posição: {0})
+ {0} is the position of unexpected characters
+
+
+ Whitespace is not valid in a ManagedName (pos: {0})
+ O espaço em branco não é válido em um ManagedName (posição: {0})
+ {0} is the position of invalid whitespace
+
+
+ '{0}.{1}' is not implemented on this platform!
+ '{0}.{1}' não está implementado nesta plataforma.
+ '{className}.{methodName}' is not implemented on this platform!
+
+Example: 'System.Reflection.MethodBase' is not implemented on this platform!
+
+
+ Invalid escape sequence! (segment: {0}, pos: {1})
+ Sequência de escape inválida. (segmento: {0}, posição: {1})
+ An escape sequence started with '\', but it wasn't legal. {0}: Invalid string, {1}: starting position of invalid sequence.
+
+
+ A closing single quote was expected at the end of the segment! (segment: {0})
+ Uma aspa simples de fechamento era esperada no final do segmento. (segmento: {0})
+ An error thrown when the type name ended but opened single quote was not matched.
+
+
+ Argument must be a method. (Argument name: {0})
+ O argumento deve ser um método. (Nome do argumento: {0})
+
+
+
+ Cannot append to a TestIdProvider, after GetId or GetHash method is called.
+ Não é possível anexar a um TestIdProvider depois que o método GetId ou GetHash é chamado.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.ru.xlf b/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.ru.xlf
index 7f3eb94cec..a926405638 100644
--- a/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.ru.xlf
+++ b/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.ru.xlf
@@ -1,64 +1,64 @@
-
-
-
-
-
- ManagedName is incomplete
- ManagedName является неполным.
-
-
-
- Method arity must be numeric.
- Арность метода должна быть числовым значением
-
-
-
- Method '{0}' not found on type '{1}'
- Метод "{0}" не найден для типа "{1}"
- {0} is the method name, {1} is the full type name.
-
-
- Type '{0}' not found
- Тип "{0}" не найден
- {0} is the full type name.
-
-
- Unexpected characters after the end of the ManagedName (pos: {0})
- Неожиданные символы после окончания ManagedName (позиция: {0}).
- {0} is the position of unexpected characters
-
-
- Whitespace is not valid in a ManagedName (pos: {0})
- Пробел в ManagedName (позиция: {0}) не допускается.
- {0} is the position of invalid whitespace
-
-
- '{0}.{1}' is not implemented on this platform!
- Метод "{0}.{1}" не реализован на этой платформе.
- '{className}.{methodName}' is not implemented on this platform!
-
-Example: 'System.Reflection.MethodBase' is not implemented on this platform!
-
-
- Invalid escape sequence! (segment: {0}, pos: {1})
- Недопустимая escape-последовательность (сегмент: {0}, позиция: {1}).
- An escape sequence started with '\', but it wasn't legal. {0}: Invalid string, {1}: starting position of invalid sequence.
-
-
- A closing single quote was expected at the end of the segment! (segment: {0})
- В конце сегмента ожидалась закрывающая одинарная кавычка (сегмент: {0}).
- An error thrown when the type name ended but opened single quote was not matched.
-
-
- Argument must be a method. (Argument name: {0})
- Аргумент должен быть методом. (Имя аргумента: {0})
-
-
-
- Cannot append to a TestIdProvider, after GetId or GetHash method is called.
- Невозможно добавить к TestIdProvider после вызова метода GetId или GetHash.
-
-
-
-
-
+
+
+
+
+
+ ManagedName is incomplete
+ ManagedName является неполным.
+
+
+
+ Method arity must be numeric.
+ Арность метода должна быть числовым значением
+
+
+
+ Method '{0}' not found on type '{1}'
+ Метод "{0}" не найден для типа "{1}"
+ {0} is the method name, {1} is the full type name.
+
+
+ Type '{0}' not found
+ Тип "{0}" не найден
+ {0} is the full type name.
+
+
+ Unexpected characters after the end of the ManagedName (pos: {0})
+ Неожиданные символы после окончания ManagedName (позиция: {0}).
+ {0} is the position of unexpected characters
+
+
+ Whitespace is not valid in a ManagedName (pos: {0})
+ Пробел в ManagedName (позиция: {0}) не допускается.
+ {0} is the position of invalid whitespace
+
+
+ '{0}.{1}' is not implemented on this platform!
+ Метод "{0}.{1}" не реализован на этой платформе.
+ '{className}.{methodName}' is not implemented on this platform!
+
+Example: 'System.Reflection.MethodBase' is not implemented on this platform!
+
+
+ Invalid escape sequence! (segment: {0}, pos: {1})
+ Недопустимая escape-последовательность (сегмент: {0}, позиция: {1}).
+ An escape sequence started with '\', but it wasn't legal. {0}: Invalid string, {1}: starting position of invalid sequence.
+
+
+ A closing single quote was expected at the end of the segment! (segment: {0})
+ В конце сегмента ожидалась закрывающая одинарная кавычка (сегмент: {0}).
+ An error thrown when the type name ended but opened single quote was not matched.
+
+
+ Argument must be a method. (Argument name: {0})
+ Аргумент должен быть методом. (Имя аргумента: {0})
+
+
+
+ Cannot append to a TestIdProvider, after GetId or GetHash method is called.
+ Невозможно добавить к TestIdProvider после вызова метода GetId или GetHash.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.tr.xlf b/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.tr.xlf
index 86f8b7be38..d67a10b6c9 100644
--- a/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.tr.xlf
+++ b/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.tr.xlf
@@ -1,64 +1,64 @@
-
-
-
-
-
- ManagedName is incomplete
- ManagedName tamamlanmadı
-
-
-
- Method arity must be numeric.
- Yöntem parametre sayısı, sayısal bir değer olmalıdır.
-
-
-
- Method '{0}' not found on type '{1}'
- '{1}' türünde '{0}' metodu bulunamadı
- {0} is the method name, {1} is the full type name.
-
-
- Type '{0}' not found
- {0} türü bulunamadı.
- {0} is the full type name.
-
-
- Unexpected characters after the end of the ManagedName (pos: {0})
- ManagedName'den sonra beklenmeyen karakterler var (konum: {0})
- {0} is the position of unexpected characters
-
-
- Whitespace is not valid in a ManagedName (pos: {0})
- ManagedName'de boşluk geçersiz (konum: {0})
- {0} is the position of invalid whitespace
-
-
- '{0}.{1}' is not implemented on this platform!
- '{0}.{1}' bu platformda uygulanmıyor!
- '{className}.{methodName}' is not implemented on this platform!
-
-Example: 'System.Reflection.MethodBase' is not implemented on this platform!
-
-
- Invalid escape sequence! (segment: {0}, pos: {1})
- Kaçış dizisi geçersiz! (segment: {0}, pos: {1})
- An escape sequence started with '\', but it wasn't legal. {0}: Invalid string, {1}: starting position of invalid sequence.
-
-
- A closing single quote was expected at the end of the segment! (segment: {0})
- Segmentin sonunda bir kapanış tek tırnak işareti bekleniyordu! (segment: {0})
- An error thrown when the type name ended but opened single quote was not matched.
-
-
- Argument must be a method. (Argument name: {0})
- Bağımsız değişken bir yöntem olmalıdır. (Bağımsız değişken adı: {0})
-
-
-
- Cannot append to a TestIdProvider, after GetId or GetHash method is called.
- GetId veya GetHash yöntemi çağrıldıktan sonra bir TestIdProvider sağlayıcısına eklenemiyor.
-
-
-
-
-
+
+
+
+
+
+ ManagedName is incomplete
+ ManagedName tamamlanmadı
+
+
+
+ Method arity must be numeric.
+ Yöntem parametre sayısı, sayısal bir değer olmalıdır.
+
+
+
+ Method '{0}' not found on type '{1}'
+ '{1}' türünde '{0}' metodu bulunamadı
+ {0} is the method name, {1} is the full type name.
+
+
+ Type '{0}' not found
+ {0} türü bulunamadı.
+ {0} is the full type name.
+
+
+ Unexpected characters after the end of the ManagedName (pos: {0})
+ ManagedName'den sonra beklenmeyen karakterler var (konum: {0})
+ {0} is the position of unexpected characters
+
+
+ Whitespace is not valid in a ManagedName (pos: {0})
+ ManagedName'de boşluk geçersiz (konum: {0})
+ {0} is the position of invalid whitespace
+
+
+ '{0}.{1}' is not implemented on this platform!
+ '{0}.{1}' bu platformda uygulanmıyor!
+ '{className}.{methodName}' is not implemented on this platform!
+
+Example: 'System.Reflection.MethodBase' is not implemented on this platform!
+
+
+ Invalid escape sequence! (segment: {0}, pos: {1})
+ Kaçış dizisi geçersiz! (segment: {0}, pos: {1})
+ An escape sequence started with '\', but it wasn't legal. {0}: Invalid string, {1}: starting position of invalid sequence.
+
+
+ A closing single quote was expected at the end of the segment! (segment: {0})
+ Segmentin sonunda bir kapanış tek tırnak işareti bekleniyordu! (segment: {0})
+ An error thrown when the type name ended but opened single quote was not matched.
+
+
+ Argument must be a method. (Argument name: {0})
+ Bağımsız değişken bir yöntem olmalıdır. (Bağımsız değişken adı: {0})
+
+
+
+ Cannot append to a TestIdProvider, after GetId or GetHash method is called.
+ GetId veya GetHash yöntemi çağrıldıktan sonra bir TestIdProvider sağlayıcısına eklenemiyor.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.zh-Hans.xlf b/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.zh-Hans.xlf
index 3af2e897af..773e38d4c3 100644
--- a/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.zh-Hans.xlf
+++ b/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.zh-Hans.xlf
@@ -1,64 +1,64 @@
-
-
-
-
-
- ManagedName is incomplete
- ManagedName 不完整
-
-
-
- Method arity must be numeric.
- 方法参数数量必须是数值。
-
-
-
- Method '{0}' not found on type '{1}'
- 类型“{1}”上找不到方法“{0}”
- {0} is the method name, {1} is the full type name.
-
-
- Type '{0}' not found
- 找不到类型“{0}”
- {0} is the full type name.
-
-
- Unexpected characters after the end of the ManagedName (pos: {0})
- ManagedName 末尾后面有不需要的字符(位置: {0})
- {0} is the position of unexpected characters
-
-
- Whitespace is not valid in a ManagedName (pos: {0})
- ManagedName 中空白无效(位置: {0})
- {0} is the position of invalid whitespace
-
-
- '{0}.{1}' is not implemented on this platform!
- 未在此平台上实现 "{0}.{1}"!
- '{className}.{methodName}' is not implemented on this platform!
-
-Example: 'System.Reflection.MethodBase' is not implemented on this platform!
-
-
- Invalid escape sequence! (segment: {0}, pos: {1})
- 无效转义序列! (段: {0},位置: {1})
- An escape sequence started with '\', but it wasn't legal. {0}: Invalid string, {1}: starting position of invalid sequence.
-
-
- A closing single quote was expected at the end of the segment! (segment: {0})
- 该段末尾应使用右单引号! (段: {0})
- An error thrown when the type name ended but opened single quote was not matched.
-
-
- Argument must be a method. (Argument name: {0})
- 参数必须是方法。(参数名称: {0})
-
-
-
- Cannot append to a TestIdProvider, after GetId or GetHash method is called.
- 调用 GetId 或 GetHash 方法后,无法追加到 TestIdProvider。
-
-
-
-
-
+
+
+
+
+
+ ManagedName is incomplete
+ ManagedName 不完整
+
+
+
+ Method arity must be numeric.
+ 方法参数数量必须是数值。
+
+
+
+ Method '{0}' not found on type '{1}'
+ 类型“{1}”上找不到方法“{0}”
+ {0} is the method name, {1} is the full type name.
+
+
+ Type '{0}' not found
+ 找不到类型“{0}”
+ {0} is the full type name.
+
+
+ Unexpected characters after the end of the ManagedName (pos: {0})
+ ManagedName 末尾后面有不需要的字符(位置: {0})
+ {0} is the position of unexpected characters
+
+
+ Whitespace is not valid in a ManagedName (pos: {0})
+ ManagedName 中空白无效(位置: {0})
+ {0} is the position of invalid whitespace
+
+
+ '{0}.{1}' is not implemented on this platform!
+ 未在此平台上实现 "{0}.{1}"!
+ '{className}.{methodName}' is not implemented on this platform!
+
+Example: 'System.Reflection.MethodBase' is not implemented on this platform!
+
+
+ Invalid escape sequence! (segment: {0}, pos: {1})
+ 无效转义序列! (段: {0},位置: {1})
+ An escape sequence started with '\', but it wasn't legal. {0}: Invalid string, {1}: starting position of invalid sequence.
+
+
+ A closing single quote was expected at the end of the segment! (segment: {0})
+ 该段末尾应使用右单引号! (段: {0})
+ An error thrown when the type name ended but opened single quote was not matched.
+
+
+ Argument must be a method. (Argument name: {0})
+ 参数必须是方法。(参数名称: {0})
+
+
+
+ Cannot append to a TestIdProvider, after GetId or GetHash method is called.
+ 调用 GetId 或 GetHash 方法后,无法追加到 TestIdProvider。
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.zh-Hant.xlf b/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.zh-Hant.xlf
index 9f0498d7e9..e45a020643 100644
--- a/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.zh-Hant.xlf
+++ b/src/Microsoft.TestPlatform.AdapterUtilities/Resources/xlf/Resources.zh-Hant.xlf
@@ -1,64 +1,64 @@
-
-
-
-
-
- ManagedName is incomplete
- ManagedName 不完整
-
-
-
- Method arity must be numeric.
- 方法 arity 必須為數值。
-
-
-
- Method '{0}' not found on type '{1}'
- 在類型 '{1}' 上找不到方法 '{0}'
- {0} is the method name, {1} is the full type name.
-
-
- Type '{0}' not found
- 找不到類型 '{0}'
- {0} is the full type name.
-
-
- Unexpected characters after the end of the ManagedName (pos: {0})
- ManagedName 的結尾後出現非預期的字元 (位置: {0})
- {0} is the position of unexpected characters
-
-
- Whitespace is not valid in a ManagedName (pos: {0})
- 空白字元在 ManagedName 中無效 (位置: {0})
- {0} is the position of invalid whitespace
-
-
- '{0}.{1}' is not implemented on this platform!
- '{0}.{1}' 未在此平台上實作!
- '{className}.{methodName}' is not implemented on this platform!
-
-Example: 'System.Reflection.MethodBase' is not implemented on this platform!
-
-
- Invalid escape sequence! (segment: {0}, pos: {1})
- 逸出序列無效! (區段: {0},位置: {1})
- An escape sequence started with '\', but it wasn't legal. {0}: Invalid string, {1}: starting position of invalid sequence.
-
-
- A closing single quote was expected at the end of the segment! (segment: {0})
- 區段結尾必須有右單引號! (區段: {0})
- An error thrown when the type name ended but opened single quote was not matched.
-
-
- Argument must be a method. (Argument name: {0})
- 引數必須是方法。(引數名稱: {0})
-
-
-
- Cannot append to a TestIdProvider, after GetId or GetHash method is called.
- 在呼叫 GetId 或 GetHash 方法之,無法附加到 TestIdProvider。
-
-
-
-
-
+
+
+
+
+
+ ManagedName is incomplete
+ ManagedName 不完整
+
+
+
+ Method arity must be numeric.
+ 方法 arity 必須為數值。
+
+
+
+ Method '{0}' not found on type '{1}'
+ 在類型 '{1}' 上找不到方法 '{0}'
+ {0} is the method name, {1} is the full type name.
+
+
+ Type '{0}' not found
+ 找不到類型 '{0}'
+ {0} is the full type name.
+
+
+ Unexpected characters after the end of the ManagedName (pos: {0})
+ ManagedName 的結尾後出現非預期的字元 (位置: {0})
+ {0} is the position of unexpected characters
+
+
+ Whitespace is not valid in a ManagedName (pos: {0})
+ 空白字元在 ManagedName 中無效 (位置: {0})
+ {0} is the position of invalid whitespace
+
+
+ '{0}.{1}' is not implemented on this platform!
+ '{0}.{1}' 未在此平台上實作!
+ '{className}.{methodName}' is not implemented on this platform!
+
+Example: 'System.Reflection.MethodBase' is not implemented on this platform!
+
+
+ Invalid escape sequence! (segment: {0}, pos: {1})
+ 逸出序列無效! (區段: {0},位置: {1})
+ An escape sequence started with '\', but it wasn't legal. {0}: Invalid string, {1}: starting position of invalid sequence.
+
+
+ A closing single quote was expected at the end of the segment! (segment: {0})
+ 區段結尾必須有右單引號! (區段: {0})
+ An error thrown when the type name ended but opened single quote was not matched.
+
+
+ Argument must be a method. (Argument name: {0})
+ 引數必須是方法。(引數名稱: {0})
+
+
+
+ Cannot append to a TestIdProvider, after GetId or GetHash method is called.
+ 在呼叫 GetId 或 GetHash 方法之,無法附加到 TestIdProvider。
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.cs.xlf b/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.cs.xlf
index 41433a12f5..b74c6a609b 100644
--- a/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.cs.xlf
+++ b/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.cs.xlf
@@ -1,32 +1,32 @@
-
-
-
-
-
- Build completed.
- Sestavení bylo dokončeno.
-
-
-
- Build started, please wait...
- Začalo sestavování. Počkejte prosím...
-
-
-
- Test run for {0} ({1})
- Testovací běh pro {0} ({1})
-
-
-
- Warning: Update the Microsoft.NET.Test.Sdk package reference to version 15.8.0 or later to collect code coverage.
- Upozornění: Aktualizujte odkaz na balíček Microsoft.NET.Test.Sdk na verzi 15.8.0 nebo novější, aby se získalo pokrytí kódu.
-
-
-
- Skipping running test for project {0}. To run tests with dotnet test add "<IsTestProject>true</IsTestProject>" property to project file.
- Přeskakuje se spuštění testu pro projekt {0}. Pokud chcete spustit testy pomocí příkazu dotnet test, přidejte do souboru projektu vlastnost <IsTestProject>true</IsTestProject>.
-
-
-
-
-
+
+
+
+
+
+ Build completed.
+ Sestavení bylo dokončeno.
+
+
+
+ Build started, please wait...
+ Začalo sestavování. Počkejte prosím...
+
+
+
+ Test run for {0} ({1})
+ Testovací běh pro {0} ({1})
+
+
+
+ Warning: Update the Microsoft.NET.Test.Sdk package reference to version 15.8.0 or later to collect code coverage.
+ Upozornění: Aktualizujte odkaz na balíček Microsoft.NET.Test.Sdk na verzi 15.8.0 nebo novější, aby se získalo pokrytí kódu.
+
+
+
+ Skipping running test for project {0}. To run tests with dotnet test add "<IsTestProject>true</IsTestProject>" property to project file.
+ Přeskakuje se spuštění testu pro projekt {0}. Pokud chcete spustit testy pomocí příkazu dotnet test, přidejte do souboru projektu vlastnost <IsTestProject>true</IsTestProject>.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.de.xlf b/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.de.xlf
index f72cce13b1..097000b274 100644
--- a/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.de.xlf
+++ b/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.de.xlf
@@ -1,32 +1,32 @@
-
-
-
-
-
- Build completed.
- Buildvorgang abgeschlossen.
-
-
-
- Build started, please wait...
- Buildvorgang gestartet, bitte warten...
-
-
-
- Test run for {0} ({1})
- Testlauf für "{0}" ({1})
-
-
-
- Warning: Update the Microsoft.NET.Test.Sdk package reference to version 15.8.0 or later to collect code coverage.
- Warnung: Aktualisieren Sie die Microsoft.NET.Test.Sdk-Paketreferenz auf Version 15.8.0 oder höher, um von Code Coverage zu profitieren.
-
-
-
- Skipping running test for project {0}. To run tests with dotnet test add "<IsTestProject>true</IsTestProject>" property to project file.
- Die Ausführung des Tests für das Projekt "{0}" wird übersprungen. Um Tests mit "dotnet test" auszuführen, fügen Sie der Projektdatei die Eigenschaft <IsTestProject>true</IsTestProject> hinzu.
-
-
-
-
-
+
+
+
+
+
+ Build completed.
+ Buildvorgang abgeschlossen.
+
+
+
+ Build started, please wait...
+ Buildvorgang gestartet, bitte warten...
+
+
+
+ Test run for {0} ({1})
+ Testlauf für "{0}" ({1})
+
+
+
+ Warning: Update the Microsoft.NET.Test.Sdk package reference to version 15.8.0 or later to collect code coverage.
+ Warnung: Aktualisieren Sie die Microsoft.NET.Test.Sdk-Paketreferenz auf Version 15.8.0 oder höher, um von Code Coverage zu profitieren.
+
+
+
+ Skipping running test for project {0}. To run tests with dotnet test add "<IsTestProject>true</IsTestProject>" property to project file.
+ Die Ausführung des Tests für das Projekt "{0}" wird übersprungen. Um Tests mit "dotnet test" auszuführen, fügen Sie der Projektdatei die Eigenschaft <IsTestProject>true</IsTestProject> hinzu.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.es.xlf b/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.es.xlf
index a92b68d48d..663b65b466 100644
--- a/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.es.xlf
+++ b/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.es.xlf
@@ -1,32 +1,32 @@
-
-
-
-
-
- Build completed.
- Se completó la compilación.
-
-
-
- Build started, please wait...
- Compilación iniciada, espere...
-
-
-
- Test run for {0} ({1})
- Serie de pruebas para {0} ({1})
-
-
-
- Warning: Update the Microsoft.NET.Test.Sdk package reference to version 15.8.0 or later to collect code coverage.
- Advertencia: Actualice la referencia del paquete Microsoft.NET.Test.Sdk a la versión 15.8.0 o posterior para recopilar la cobertura de código.
-
-
-
- Skipping running test for project {0}. To run tests with dotnet test add "<IsTestProject>true</IsTestProject>" property to project file.
- Omitiendo la ejecución de la prueba para el proyecto {0}. Para ejecutar pruebas con dotnet test, agregue la propiedad "<IsTestProject>true</IsTestProject>" al archivo del proyecto.
-
-
-
-
-
+
+
+
+
+
+ Build completed.
+ Se completó la compilación.
+
+
+
+ Build started, please wait...
+ Compilación iniciada, espere...
+
+
+
+ Test run for {0} ({1})
+ Serie de pruebas para {0} ({1})
+
+
+
+ Warning: Update the Microsoft.NET.Test.Sdk package reference to version 15.8.0 or later to collect code coverage.
+ Advertencia: Actualice la referencia del paquete Microsoft.NET.Test.Sdk a la versión 15.8.0 o posterior para recopilar la cobertura de código.
+
+
+
+ Skipping running test for project {0}. To run tests with dotnet test add "<IsTestProject>true</IsTestProject>" property to project file.
+ Omitiendo la ejecución de la prueba para el proyecto {0}. Para ejecutar pruebas con dotnet test, agregue la propiedad "<IsTestProject>true</IsTestProject>" al archivo del proyecto.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.fr.xlf b/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.fr.xlf
index c005ef6f06..b8f5761abf 100644
--- a/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.fr.xlf
+++ b/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.fr.xlf
@@ -1,32 +1,32 @@
-
-
-
-
-
- Build completed.
- Fin de la build.
-
-
-
- Build started, please wait...
- La build a démarré. Patientez…
-
-
-
- Test run for {0} ({1})
- Série de tests pour {0} ({1})
-
-
-
- Warning: Update the Microsoft.NET.Test.Sdk package reference to version 15.8.0 or later to collect code coverage.
- Avertissement : mettez à jour la référence de package Microsoft.NET.Test.Sdk vers la version 15.8.0 ou ultérieure pour collecter la couverture du code.
-
-
-
- Skipping running test for project {0}. To run tests with dotnet test add "<IsTestProject>true</IsTestProject>" property to project file.
- Le test en cours d'exécution est ignoré pour le projet {0}. Pour exécuter des tests avec dotnet test, ajoutez la propriété "<IsTestProject>true</IsTestProject>" au fichier projet.
-
-
-
-
-
+
+
+
+
+
+ Build completed.
+ Fin de la build.
+
+
+
+ Build started, please wait...
+ La build a démarré. Patientez…
+
+
+
+ Test run for {0} ({1})
+ Série de tests pour {0} ({1})
+
+
+
+ Warning: Update the Microsoft.NET.Test.Sdk package reference to version 15.8.0 or later to collect code coverage.
+ Avertissement : mettez à jour la référence de package Microsoft.NET.Test.Sdk vers la version 15.8.0 ou ultérieure pour collecter la couverture du code.
+
+
+
+ Skipping running test for project {0}. To run tests with dotnet test add "<IsTestProject>true</IsTestProject>" property to project file.
+ Le test en cours d'exécution est ignoré pour le projet {0}. Pour exécuter des tests avec dotnet test, ajoutez la propriété "<IsTestProject>true</IsTestProject>" au fichier projet.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.it.xlf b/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.it.xlf
index b4343ed65c..6c707ff8d9 100644
--- a/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.it.xlf
+++ b/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.it.xlf
@@ -1,32 +1,32 @@
-
-
-
-
-
- Build completed.
- Compilazione completata.
-
-
-
- Build started, please wait...
- Compilazione avviata. Attendere...
-
-
-
- Test run for {0} ({1})
- Esecuzione dei test per {0} ({1})
-
-
-
- Warning: Update the Microsoft.NET.Test.Sdk package reference to version 15.8.0 or later to collect code coverage.
- Avviso: per raccogliere i dati di code coverage, aggiornare il riferimento al pacchetto Microsoft.NET.Test.Sdk alla versione 15.8.0 o successiva.
-
-
-
- Skipping running test for project {0}. To run tests with dotnet test add "<IsTestProject>true</IsTestProject>" property to project file.
- L'esecuzione del test per il progetto {0} verrà ignorata. Per eseguire test con dotnet test, aggiungere la proprietà "<IsTestProject>true</IsTestProject>" al file di progetto.
-
-
-
-
-
+
+
+
+
+
+ Build completed.
+ Compilazione completata.
+
+
+
+ Build started, please wait...
+ Compilazione avviata. Attendere...
+
+
+
+ Test run for {0} ({1})
+ Esecuzione dei test per {0} ({1})
+
+
+
+ Warning: Update the Microsoft.NET.Test.Sdk package reference to version 15.8.0 or later to collect code coverage.
+ Avviso: per raccogliere i dati di code coverage, aggiornare il riferimento al pacchetto Microsoft.NET.Test.Sdk alla versione 15.8.0 o successiva.
+
+
+
+ Skipping running test for project {0}. To run tests with dotnet test add "<IsTestProject>true</IsTestProject>" property to project file.
+ L'esecuzione del test per il progetto {0} verrà ignorata. Per eseguire test con dotnet test, aggiungere la proprietà "<IsTestProject>true</IsTestProject>" al file di progetto.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.ja.xlf b/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.ja.xlf
index 6a600729e1..17beb21646 100644
--- a/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.ja.xlf
+++ b/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.ja.xlf
@@ -1,32 +1,32 @@
-
-
-
-
-
- Build completed.
- ビルドが完了しました。
-
-
-
- Build started, please wait...
- ビルドが開始されました。しばらくお待ちください...
-
-
-
- Test run for {0} ({1})
- {0} ({1}) のテスト実行
-
-
-
- Warning: Update the Microsoft.NET.Test.Sdk package reference to version 15.8.0 or later to collect code coverage.
- 警告: コード カバレッジを収集するには、Microsoft.NET.Test.Sdk パッケージ参照をバージョン 15.8.0 以降に更新してください。
-
-
-
- Skipping running test for project {0}. To run tests with dotnet test add "<IsTestProject>true</IsTestProject>" property to project file.
- プロジェクト {0} へのテストの実行をスキップしています。dotnet テストでテストを実行するには、"<IsTestProject>true</IsTestProject>" プロパティをプロジェクト ファイルに追加します。
-
-
-
-
-
+
+
+
+
+
+ Build completed.
+ ビルドが完了しました。
+
+
+
+ Build started, please wait...
+ ビルドが開始されました。しばらくお待ちください...
+
+
+
+ Test run for {0} ({1})
+ {0} ({1}) のテスト実行
+
+
+
+ Warning: Update the Microsoft.NET.Test.Sdk package reference to version 15.8.0 or later to collect code coverage.
+ 警告: コード カバレッジを収集するには、Microsoft.NET.Test.Sdk パッケージ参照をバージョン 15.8.0 以降に更新してください。
+
+
+
+ Skipping running test for project {0}. To run tests with dotnet test add "<IsTestProject>true</IsTestProject>" property to project file.
+ プロジェクト {0} へのテストの実行をスキップしています。dotnet テストでテストを実行するには、"<IsTestProject>true</IsTestProject>" プロパティをプロジェクト ファイルに追加します。
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.ko.xlf b/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.ko.xlf
index 954e77c3b0..83ae74691e 100644
--- a/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.ko.xlf
+++ b/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.ko.xlf
@@ -1,32 +1,32 @@
-
-
-
-
-
- Build completed.
- 빌드가 완료되었습니다.
-
-
-
- Build started, please wait...
- 빌드가 시작되었습니다. 잠시 기다려 주세요.
-
-
-
- Test run for {0} ({1})
- {0}({1})에 대한 테스트 실행
-
-
-
- Warning: Update the Microsoft.NET.Test.Sdk package reference to version 15.8.0 or later to collect code coverage.
- 경고: 코드 검사를 수집하려면 Microsoft.NET.Test.Sdk 패키지 참조를 버전 15.8.0 이상으로 업데이트하세요.
-
-
-
- Skipping running test for project {0}. To run tests with dotnet test add "<IsTestProject>true</IsTestProject>" property to project file.
- 프로젝트 {0}에 대한 테스트 실행을 건너뜁니다. dotnet 테스트와 함께 테스트를 실행하려면 "<IsTestProject>true</IsTestProject>" 속성을 프로젝트 파일에 추가합니다.
-
-
-
-
-
+
+
+
+
+
+ Build completed.
+ 빌드가 완료되었습니다.
+
+
+
+ Build started, please wait...
+ 빌드가 시작되었습니다. 잠시 기다려 주세요.
+
+
+
+ Test run for {0} ({1})
+ {0}({1})에 대한 테스트 실행
+
+
+
+ Warning: Update the Microsoft.NET.Test.Sdk package reference to version 15.8.0 or later to collect code coverage.
+ 경고: 코드 검사를 수집하려면 Microsoft.NET.Test.Sdk 패키지 참조를 버전 15.8.0 이상으로 업데이트하세요.
+
+
+
+ Skipping running test for project {0}. To run tests with dotnet test add "<IsTestProject>true</IsTestProject>" property to project file.
+ 프로젝트 {0}에 대한 테스트 실행을 건너뜁니다. dotnet 테스트와 함께 테스트를 실행하려면 "<IsTestProject>true</IsTestProject>" 속성을 프로젝트 파일에 추가합니다.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.pl.xlf b/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.pl.xlf
index 5b0b1716b1..48f474faf4 100644
--- a/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.pl.xlf
+++ b/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.pl.xlf
@@ -1,32 +1,32 @@
-
-
-
-
-
- Build completed.
- Kompilacja zakończona.
-
-
-
- Build started, please wait...
- Kompilacja została rozpoczęta, czekaj...
-
-
-
- Test run for {0} ({1})
- Przebieg testu dla: {0} ({1})
-
-
-
- Warning: Update the Microsoft.NET.Test.Sdk package reference to version 15.8.0 or later to collect code coverage.
- Ostrzeżenie: zaktualizuj odwołanie do pakietu Microsoft.NET.Test.Sdk do wersji 15.8.0 lub nowszej w celu zbierania danych dotyczących pokrycia kodu.
-
-
-
- Skipping running test for project {0}. To run tests with dotnet test add "<IsTestProject>true</IsTestProject>" property to project file.
- Pomijanie uruchamiania testu dla projektu {0}. Aby uruchomić testy za pomocą polecenia dotnet test, dodaj właściwość „<IsTestProject>true</IsTestProject>” do pliku projektu.
-
-
-
-
-
+
+
+
+
+
+ Build completed.
+ Kompilacja zakończona.
+
+
+
+ Build started, please wait...
+ Kompilacja została rozpoczęta, czekaj...
+
+
+
+ Test run for {0} ({1})
+ Przebieg testu dla: {0} ({1})
+
+
+
+ Warning: Update the Microsoft.NET.Test.Sdk package reference to version 15.8.0 or later to collect code coverage.
+ Ostrzeżenie: zaktualizuj odwołanie do pakietu Microsoft.NET.Test.Sdk do wersji 15.8.0 lub nowszej w celu zbierania danych dotyczących pokrycia kodu.
+
+
+
+ Skipping running test for project {0}. To run tests with dotnet test add "<IsTestProject>true</IsTestProject>" property to project file.
+ Pomijanie uruchamiania testu dla projektu {0}. Aby uruchomić testy za pomocą polecenia dotnet test, dodaj właściwość „<IsTestProject>true</IsTestProject>” do pliku projektu.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.pt-BR.xlf b/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.pt-BR.xlf
index cc6183e971..1fbecc2281 100644
--- a/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.pt-BR.xlf
+++ b/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.pt-BR.xlf
@@ -1,32 +1,32 @@
-
-
-
-
-
- Build completed.
- Build concluído.
-
-
-
- Build started, please wait...
- Build iniciada, aguarde...
-
-
-
- Test run for {0} ({1})
- Execução de teste para {0} ({1})
-
-
-
- Warning: Update the Microsoft.NET.Test.Sdk package reference to version 15.8.0 or later to collect code coverage.
- Aviso: Atualize a referência do pacote Microsoft.NET.Test.Sdk para a versão 15.8.0 ou posterior para coletar a cobertura do código.
-
-
-
- Skipping running test for project {0}. To run tests with dotnet test add "<IsTestProject>true</IsTestProject>" property to project file.
- Ignorando a execução de teste do projeto {0}. Para executar testes com dotnet test, adicione a propriedade "<IsTestProject>true</IsTestProject>" ao arquivo de projeto.
-
-
-
-
-
+
+
+
+
+
+ Build completed.
+ Build concluído.
+
+
+
+ Build started, please wait...
+ Build iniciada, aguarde...
+
+
+
+ Test run for {0} ({1})
+ Execução de teste para {0} ({1})
+
+
+
+ Warning: Update the Microsoft.NET.Test.Sdk package reference to version 15.8.0 or later to collect code coverage.
+ Aviso: Atualize a referência do pacote Microsoft.NET.Test.Sdk para a versão 15.8.0 ou posterior para coletar a cobertura do código.
+
+
+
+ Skipping running test for project {0}. To run tests with dotnet test add "<IsTestProject>true</IsTestProject>" property to project file.
+ Ignorando a execução de teste do projeto {0}. Para executar testes com dotnet test, adicione a propriedade "<IsTestProject>true</IsTestProject>" ao arquivo de projeto.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.ru.xlf b/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.ru.xlf
index fb5780e282..754035a805 100644
--- a/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.ru.xlf
+++ b/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.ru.xlf
@@ -1,32 +1,32 @@
-
-
-
-
-
- Build completed.
- Сборка выполнена.
-
-
-
- Build started, please wait...
- Сборка начата, подождите...
-
-
-
- Test run for {0} ({1})
- Тестовый запуск для {0} ({1})
-
-
-
- Warning: Update the Microsoft.NET.Test.Sdk package reference to version 15.8.0 or later to collect code coverage.
- Внимание. Для сбора данных об объеме протестированного кода обновите пакет Microsoft.NET.Test.Sdk по ссылке как минимум до версии 15.8.0.
-
-
-
- Skipping running test for project {0}. To run tests with dotnet test add "<IsTestProject>true</IsTestProject>" property to project file.
- Пропуск выполнения теста для проекта {0}. Чтобы выполнить тесты с помощью теста dotnet, добавьте свойство "<IsTestProject>true</IsTestProject>" в файл проекта.
-
-
-
-
-
+
+
+
+
+
+ Build completed.
+ Сборка выполнена.
+
+
+
+ Build started, please wait...
+ Сборка начата, подождите...
+
+
+
+ Test run for {0} ({1})
+ Тестовый запуск для {0} ({1})
+
+
+
+ Warning: Update the Microsoft.NET.Test.Sdk package reference to version 15.8.0 or later to collect code coverage.
+ Внимание. Для сбора данных об объеме протестированного кода обновите пакет Microsoft.NET.Test.Sdk по ссылке как минимум до версии 15.8.0.
+
+
+
+ Skipping running test for project {0}. To run tests with dotnet test add "<IsTestProject>true</IsTestProject>" property to project file.
+ Пропуск выполнения теста для проекта {0}. Чтобы выполнить тесты с помощью теста dotnet, добавьте свойство "<IsTestProject>true</IsTestProject>" в файл проекта.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.tr.xlf b/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.tr.xlf
index bc220fe38c..497bf2b840 100644
--- a/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.tr.xlf
+++ b/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.tr.xlf
@@ -1,32 +1,32 @@
-
-
-
-
-
- Build completed.
- Derleme tamamlandı.
-
-
-
- Build started, please wait...
- Derleme başlatıldı. Lütfen bekleyin...
-
-
-
- Test run for {0} ({1})
- {0} ({1}) için test çalıştırması
-
-
-
- Warning: Update the Microsoft.NET.Test.Sdk package reference to version 15.8.0 or later to collect code coverage.
- Uyarı: Kod kapsamını toplamak için Microsoft.NET.Test.Sdk paketinin başvurusunu 15.8.0 veya üzeri bir sürüme güncelleştirin.
-
-
-
- Skipping running test for project {0}. To run tests with dotnet test add "<IsTestProject>true</IsTestProject>" property to project file.
- {0} projesi için test çalıştırma atlanıyor. Testleri dotnet test ile çalıştırmak için proje dosyasına "<IsTestProject>true</IsTestProject>" özelliğini ekleyin.
-
-
-
-
-
+
+
+
+
+
+ Build completed.
+ Derleme tamamlandı.
+
+
+
+ Build started, please wait...
+ Derleme başlatıldı. Lütfen bekleyin...
+
+
+
+ Test run for {0} ({1})
+ {0} ({1}) için test çalıştırması
+
+
+
+ Warning: Update the Microsoft.NET.Test.Sdk package reference to version 15.8.0 or later to collect code coverage.
+ Uyarı: Kod kapsamını toplamak için Microsoft.NET.Test.Sdk paketinin başvurusunu 15.8.0 veya üzeri bir sürüme güncelleştirin.
+
+
+
+ Skipping running test for project {0}. To run tests with dotnet test add "<IsTestProject>true</IsTestProject>" property to project file.
+ {0} projesi için test çalıştırma atlanıyor. Testleri dotnet test ile çalıştırmak için proje dosyasına "<IsTestProject>true</IsTestProject>" özelliğini ekleyin.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.zh-Hans.xlf b/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.zh-Hans.xlf
index b0707a2e96..f853215269 100644
--- a/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.zh-Hans.xlf
+++ b/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.zh-Hans.xlf
@@ -1,32 +1,32 @@
-
-
-
-
-
- Build completed.
- 完成的生成。
-
-
-
- Build started, please wait...
- 已开始生成,请等待...
-
-
-
- Test run for {0} ({1})
- {0} ({1})的测试运行
-
-
-
- Warning: Update the Microsoft.NET.Test.Sdk package reference to version 15.8.0 or later to collect code coverage.
- 警告: 将 Microsoft.NET.Test.Sdk 包引用更新为版本 15.8.0 或更高版本,以便收集代码覆盖率。
-
-
-
- Skipping running test for project {0}. To run tests with dotnet test add "<IsTestProject>true</IsTestProject>" property to project file.
- 正在跳过项目 {0} 的运行测试。若要使用 dotnet test 运行 dotnet 测试,请向项目文件添加 "<IsTestProject>true</IsTestProject>" 属性。
-
-
-
-
-
+
+
+
+
+
+ Build completed.
+ 完成的生成。
+
+
+
+ Build started, please wait...
+ 已开始生成,请等待...
+
+
+
+ Test run for {0} ({1})
+ {0} ({1})的测试运行
+
+
+
+ Warning: Update the Microsoft.NET.Test.Sdk package reference to version 15.8.0 or later to collect code coverage.
+ 警告: 将 Microsoft.NET.Test.Sdk 包引用更新为版本 15.8.0 或更高版本,以便收集代码覆盖率。
+
+
+
+ Skipping running test for project {0}. To run tests with dotnet test add "<IsTestProject>true</IsTestProject>" property to project file.
+ 正在跳过项目 {0} 的运行测试。若要使用 dotnet test 运行 dotnet 测试,请向项目文件添加 "<IsTestProject>true</IsTestProject>" 属性。
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.zh-Hant.xlf b/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.zh-Hant.xlf
index 0734dcf823..250f0e4166 100644
--- a/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.zh-Hant.xlf
+++ b/src/Microsoft.TestPlatform.Build/Resources/xlf/Resources.zh-Hant.xlf
@@ -1,32 +1,32 @@
-
-
-
-
-
- Build completed.
- 建置完成。
-
-
-
- Build started, please wait...
- 已開始建置,請稍候...
-
-
-
- Test run for {0} ({1})
- {0} 的測試回合 ({1})
-
-
-
- Warning: Update the Microsoft.NET.Test.Sdk package reference to version 15.8.0 or later to collect code coverage.
- 警告: 將 Microsoft.NET.Test.Sdk 套件參考更新至版本 15.8.0 或更新版本,才可收集程式碼涵蓋範圍。
-
-
-
- Skipping running test for project {0}. To run tests with dotnet test add "<IsTestProject>true</IsTestProject>" property to project file.
- 跳過專案 {0} 目前正在執行中的測試。若要執行有 dotnet 測試的測試項目,請對專案檔新增 "<IsTestProject>true</IsTestProject>" 屬性。
-
-
-
-
-
+
+
+
+
+
+ Build completed.
+ 建置完成。
+
+
+
+ Build started, please wait...
+ 已開始建置,請稍候...
+
+
+
+ Test run for {0} ({1})
+ {0} 的測試回合 ({1})
+
+
+
+ Warning: Update the Microsoft.NET.Test.Sdk package reference to version 15.8.0 or later to collect code coverage.
+ 警告: 將 Microsoft.NET.Test.Sdk 套件參考更新至版本 15.8.0 或更新版本,才可收集程式碼涵蓋範圍。
+
+
+
+ Skipping running test for project {0}. To run tests with dotnet test add "<IsTestProject>true</IsTestProject>" property to project file.
+ 跳過專案 {0} 目前正在執行中的測試。若要執行有 dotnet 測試的測試項目,請對專案檔新增 "<IsTestProject>true</IsTestProject>" 屬性。
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.cs.xlf b/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.cs.xlf
index 73aacebf18..b75d2bec98 100644
--- a/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.cs.xlf
+++ b/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.cs.xlf
@@ -1,27 +1,27 @@
-
-
-
-
-
- The test run could not be executed because the initial state was invalid.
- Testovací běh nešlo spustit, protože byl neplatný počáteční stav.
-
-
-
- Wait for completion operation is not allowed when there is no active test run.
- V případě, že nejsou aktivní žádné testovací běhy, se operace čekání na dokončení nepovoluje.
-
-
-
- Aborting test run: test run timeout of {0} milliseconds exceeded.
- Testovací běh se ruší: byl překročen časový limit testovacího běhu ({0} ms).
-
-
-
- No suitable test runtime provider found for this run.
- Pro tento běh se nenašel žádný vhodný zprostředkovatel testů v režimu runtime.
-
-
-
-
-
+
+
+
+
+
+ The test run could not be executed because the initial state was invalid.
+ Testovací běh nešlo spustit, protože byl neplatný počáteční stav.
+
+
+
+ Wait for completion operation is not allowed when there is no active test run.
+ V případě, že nejsou aktivní žádné testovací běhy, se operace čekání na dokončení nepovoluje.
+
+
+
+ Aborting test run: test run timeout of {0} milliseconds exceeded.
+ Testovací běh se ruší: byl překročen časový limit testovacího běhu ({0} ms).
+
+
+
+ No suitable test runtime provider found for this run.
+ Pro tento běh se nenašel žádný vhodný zprostředkovatel testů v režimu runtime.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.de.xlf b/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.de.xlf
index 5fdaac161b..b722981722 100644
--- a/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.de.xlf
+++ b/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.de.xlf
@@ -1,27 +1,27 @@
-
-
-
-
-
- The test run could not be executed because the initial state was invalid.
- Der Testlauf konnte nicht ausgeführt werden, weil der Anfangszustand ungültig war.
-
-
-
- Wait for completion operation is not allowed when there is no active test run.
- Das Warten auf den Fertigstellungsvorgang ist unzulässig, wenn kein aktiver Testlauf vorhanden ist.
-
-
-
- Aborting test run: test run timeout of {0} milliseconds exceeded.
- Der Testlauf wird abgebrochen: Das Timeout von {0} Millisekunden für den Testlauf wurde überschritten.
-
-
-
- No suitable test runtime provider found for this run.
- Für diese Ausführung wurde kein geeigneter Testlaufzeitanbieter gefunden.
-
-
-
-
-
+
+
+
+
+
+ The test run could not be executed because the initial state was invalid.
+ Der Testlauf konnte nicht ausgeführt werden, weil der Anfangszustand ungültig war.
+
+
+
+ Wait for completion operation is not allowed when there is no active test run.
+ Das Warten auf den Fertigstellungsvorgang ist unzulässig, wenn kein aktiver Testlauf vorhanden ist.
+
+
+
+ Aborting test run: test run timeout of {0} milliseconds exceeded.
+ Der Testlauf wird abgebrochen: Das Timeout von {0} Millisekunden für den Testlauf wurde überschritten.
+
+
+
+ No suitable test runtime provider found for this run.
+ Für diese Ausführung wurde kein geeigneter Testlaufzeitanbieter gefunden.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.es.xlf b/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.es.xlf
index eb9488bd7d..795f155215 100644
--- a/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.es.xlf
+++ b/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.es.xlf
@@ -1,27 +1,27 @@
-
-
-
-
-
- The test run could not be executed because the initial state was invalid.
- No se pudo ejecutar la serie de pruebas porque el estado inicial no era válido.
-
-
-
- Wait for completion operation is not allowed when there is no active test run.
- La operación “Esperar que termine” no se permite cuando no hay ninguna serie de pruebas activa.
-
-
-
- Aborting test run: test run timeout of {0} milliseconds exceeded.
- Anulando la serie de pruebas: se superó el tiempo de espera de {0} milisegundos para la serie de pruebas.
-
-
-
- No suitable test runtime provider found for this run.
- No se encontró un proveedor de tiempo de ejecución de prueba adecuado para esta ejecución.
-
-
-
-
-
+
+
+
+
+
+ The test run could not be executed because the initial state was invalid.
+ No se pudo ejecutar la serie de pruebas porque el estado inicial no era válido.
+
+
+
+ Wait for completion operation is not allowed when there is no active test run.
+ La operación “Esperar que termine” no se permite cuando no hay ninguna serie de pruebas activa.
+
+
+
+ Aborting test run: test run timeout of {0} milliseconds exceeded.
+ Anulando la serie de pruebas: se superó el tiempo de espera de {0} milisegundos para la serie de pruebas.
+
+
+
+ No suitable test runtime provider found for this run.
+ No se encontró un proveedor de tiempo de ejecución de prueba adecuado para esta ejecución.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.fr.xlf b/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.fr.xlf
index ca318587d6..de3857c34d 100644
--- a/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.fr.xlf
+++ b/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.fr.xlf
@@ -1,27 +1,27 @@
-
-
-
-
-
- The test run could not be executed because the initial state was invalid.
- Impossible d'exécuter la série de tests, car l'état initial est non valide.
-
-
-
- Wait for completion operation is not allowed when there is no active test run.
- L'attente de la fin de l'exécution d'une opération n'est pas autorisée quand il n'existe aucune série de tests active.
-
-
-
- Aborting test run: test run timeout of {0} milliseconds exceeded.
- Abandon de la série de tests : dépassement du délai d'expiration de la série de tests fixé à {0} millisecondes.
-
-
-
- No suitable test runtime provider found for this run.
- Aucun fournisseur d'exécution de tests approprié n'a été trouvé pour cette série.
-
-
-
-
-
+
+
+
+
+
+ The test run could not be executed because the initial state was invalid.
+ Impossible d'exécuter la série de tests, car l'état initial est non valide.
+
+
+
+ Wait for completion operation is not allowed when there is no active test run.
+ L'attente de la fin de l'exécution d'une opération n'est pas autorisée quand il n'existe aucune série de tests active.
+
+
+
+ Aborting test run: test run timeout of {0} milliseconds exceeded.
+ Abandon de la série de tests : dépassement du délai d'expiration de la série de tests fixé à {0} millisecondes.
+
+
+
+ No suitable test runtime provider found for this run.
+ Aucun fournisseur d'exécution de tests approprié n'a été trouvé pour cette série.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.it.xlf b/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.it.xlf
index ee91031a5f..5c1c78429e 100644
--- a/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.it.xlf
+++ b/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.it.xlf
@@ -1,27 +1,27 @@
-
-
-
-
-
- The test run could not be executed because the initial state was invalid.
- Non è stato possibile completare l'esecuzione dei test perché lo stato iniziale non era valido.
-
-
-
- Wait for completion operation is not allowed when there is no active test run.
- L'operazione di attesa completamento non è consentita se non sono presenti esecuzioni dei test attive.
-
-
-
- Aborting test run: test run timeout of {0} milliseconds exceeded.
- Interruzione dell'esecuzione dei test: è stato superato il timeout dell'esecuzione dei test, pari a {0} millisecondi.
-
-
-
- No suitable test runtime provider found for this run.
- Non è stato trovato alcun provider di runtime dei test adatto per questa esecuzione.
-
-
-
-
-
+
+
+
+
+
+ The test run could not be executed because the initial state was invalid.
+ Non è stato possibile completare l'esecuzione dei test perché lo stato iniziale non era valido.
+
+
+
+ Wait for completion operation is not allowed when there is no active test run.
+ L'operazione di attesa completamento non è consentita se non sono presenti esecuzioni dei test attive.
+
+
+
+ Aborting test run: test run timeout of {0} milliseconds exceeded.
+ Interruzione dell'esecuzione dei test: è stato superato il timeout dell'esecuzione dei test, pari a {0} millisecondi.
+
+
+
+ No suitable test runtime provider found for this run.
+ Non è stato trovato alcun provider di runtime dei test adatto per questa esecuzione.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.ja.xlf b/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.ja.xlf
index fa4594b51f..8a41f55e84 100644
--- a/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.ja.xlf
+++ b/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.ja.xlf
@@ -1,27 +1,27 @@
-
-
-
-
-
- The test run could not be executed because the initial state was invalid.
- 初期状態が無効なため、テストの実行を実行できませんでした。
-
-
-
- Wait for completion operation is not allowed when there is no active test run.
- アクティブなテストの実行がない場合、完了の待機操作は許可されません。
-
-
-
- Aborting test run: test run timeout of {0} milliseconds exceeded.
- テストの実行を中止しています: テスト実行のタイムアウト {0} ミリ秒を超過しました。
-
-
-
- No suitable test runtime provider found for this run.
- この実行に対して適切なテスト ランタイム プロバイダーが見つかりませんでした。
-
-
-
-
-
+
+
+
+
+
+ The test run could not be executed because the initial state was invalid.
+ 初期状態が無効なため、テストの実行を実行できませんでした。
+
+
+
+ Wait for completion operation is not allowed when there is no active test run.
+ アクティブなテストの実行がない場合、完了の待機操作は許可されません。
+
+
+
+ Aborting test run: test run timeout of {0} milliseconds exceeded.
+ テストの実行を中止しています: テスト実行のタイムアウト {0} ミリ秒を超過しました。
+
+
+
+ No suitable test runtime provider found for this run.
+ この実行に対して適切なテスト ランタイム プロバイダーが見つかりませんでした。
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.ko.xlf b/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.ko.xlf
index a0e43c19ca..4ab193fad0 100644
--- a/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.ko.xlf
+++ b/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.ko.xlf
@@ -1,27 +1,27 @@
-
-
-
-
-
- The test run could not be executed because the initial state was invalid.
- 초기 상태가 잘못되어 테스트 실행을 실행할 수 없습니다.
-
-
-
- Wait for completion operation is not allowed when there is no active test run.
- 활성 테스트 실행이 없으면 완료 작업을 대기할 수 없습니다.
-
-
-
- Aborting test run: test run timeout of {0} milliseconds exceeded.
- 테스트 실행 중단 중: 테스트 실행 시간 제한 {0}밀리초가 초과되었습니다.
-
-
-
- No suitable test runtime provider found for this run.
- 이 실행에 적합한 테스트 런타임 공급자를 찾지 못했습니다.
-
-
-
-
-
+
+
+
+
+
+ The test run could not be executed because the initial state was invalid.
+ 초기 상태가 잘못되어 테스트 실행을 실행할 수 없습니다.
+
+
+
+ Wait for completion operation is not allowed when there is no active test run.
+ 활성 테스트 실행이 없으면 완료 작업을 대기할 수 없습니다.
+
+
+
+ Aborting test run: test run timeout of {0} milliseconds exceeded.
+ 테스트 실행 중단 중: 테스트 실행 시간 제한 {0}밀리초가 초과되었습니다.
+
+
+
+ No suitable test runtime provider found for this run.
+ 이 실행에 적합한 테스트 런타임 공급자를 찾지 못했습니다.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.pl.xlf b/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.pl.xlf
index 82c9eddd59..85452cc58a 100644
--- a/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.pl.xlf
+++ b/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.pl.xlf
@@ -1,27 +1,27 @@
-
-
-
-
-
- The test run could not be executed because the initial state was invalid.
- Nie można wykonać przebiegu testu, ponieważ stan początkowy jest nieprawidłowy.
-
-
-
- Wait for completion operation is not allowed when there is no active test run.
- Oczekiwanie na operację zakończenia nie jest dozwolone, gdy nie ma aktywnego przebiegu testu.
-
-
-
- Aborting test run: test run timeout of {0} milliseconds exceeded.
- Przerywanie przebiegu testu: przekroczono limit czasu dla przebiegu testu równy {0}.
-
-
-
- No suitable test runtime provider found for this run.
- Nie znaleziono odpowiedniego dostawcy testowego środowiska uruchomieniowego dla tego uruchomienia.
-
-
-
-
-
+
+
+
+
+
+ The test run could not be executed because the initial state was invalid.
+ Nie można wykonać przebiegu testu, ponieważ stan początkowy jest nieprawidłowy.
+
+
+
+ Wait for completion operation is not allowed when there is no active test run.
+ Oczekiwanie na operację zakończenia nie jest dozwolone, gdy nie ma aktywnego przebiegu testu.
+
+
+
+ Aborting test run: test run timeout of {0} milliseconds exceeded.
+ Przerywanie przebiegu testu: przekroczono limit czasu dla przebiegu testu równy {0}.
+
+
+
+ No suitable test runtime provider found for this run.
+ Nie znaleziono odpowiedniego dostawcy testowego środowiska uruchomieniowego dla tego uruchomienia.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.pt-BR.xlf b/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.pt-BR.xlf
index dbaedfcd5c..66beb85c5a 100644
--- a/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.pt-BR.xlf
+++ b/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.pt-BR.xlf
@@ -1,27 +1,27 @@
-
-
-
-
-
- The test run could not be executed because the initial state was invalid.
- A execução de teste não pôde ser realizada porque o estado inicial era inválido.
-
-
-
- Wait for completion operation is not allowed when there is no active test run.
- A operação esperar conclusão não é permitida quando não há nenhuma execução de teste ativa.
-
-
-
- Aborting test run: test run timeout of {0} milliseconds exceeded.
- Anulando a execução de teste: o tempo limite da execução de teste de {0} milissegundos foi excedido.
-
-
-
- No suitable test runtime provider found for this run.
- Nenhum provedor de runtime de teste encontrado para esta execução.
-
-
-
-
-
+
+
+
+
+
+ The test run could not be executed because the initial state was invalid.
+ A execução de teste não pôde ser realizada porque o estado inicial era inválido.
+
+
+
+ Wait for completion operation is not allowed when there is no active test run.
+ A operação esperar conclusão não é permitida quando não há nenhuma execução de teste ativa.
+
+
+
+ Aborting test run: test run timeout of {0} milliseconds exceeded.
+ Anulando a execução de teste: o tempo limite da execução de teste de {0} milissegundos foi excedido.
+
+
+
+ No suitable test runtime provider found for this run.
+ Nenhum provedor de runtime de teste encontrado para esta execução.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.ru.xlf b/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.ru.xlf
index cb07c48b46..1f3f922fc0 100644
--- a/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.ru.xlf
+++ b/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.ru.xlf
@@ -1,27 +1,27 @@
-
-
-
-
-
- The test run could not be executed because the initial state was invalid.
- Не удалось выполнить тестовый запуск из-за недопустимого начального состояния.
-
-
-
- Wait for completion operation is not allowed when there is no active test run.
- Операция "Ожидать завершения" запрещена, если нет активного тестового запуска.
-
-
-
- Aborting test run: test run timeout of {0} milliseconds exceeded.
- Тестовый запуск отменяется: превышено допустимое время ожидания в {0} мс.
-
-
-
- No suitable test runtime provider found for this run.
- Не найден подходящий поставщик среды выполнения теста для этого запуска.
-
-
-
-
-
+
+
+
+
+
+ The test run could not be executed because the initial state was invalid.
+ Не удалось выполнить тестовый запуск из-за недопустимого начального состояния.
+
+
+
+ Wait for completion operation is not allowed when there is no active test run.
+ Операция "Ожидать завершения" запрещена, если нет активного тестового запуска.
+
+
+
+ Aborting test run: test run timeout of {0} milliseconds exceeded.
+ Тестовый запуск отменяется: превышено допустимое время ожидания в {0} мс.
+
+
+
+ No suitable test runtime provider found for this run.
+ Не найден подходящий поставщик среды выполнения теста для этого запуска.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.tr.xlf b/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.tr.xlf
index 10681eb096..45f5697dfb 100644
--- a/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.tr.xlf
+++ b/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.tr.xlf
@@ -1,27 +1,27 @@
-
-
-
-
-
- The test run could not be executed because the initial state was invalid.
- İlk durum geçersiz olduğundan test çalıştırması yürütülemedi.
-
-
-
- Wait for completion operation is not allowed when there is no active test run.
- Etkin bir test çalıştırması olmadığında tamamlanmasını bekleme işlemine izin verilmez.
-
-
-
- Aborting test run: test run timeout of {0} milliseconds exceeded.
- Test çalıştırması durduruluyor: Test çalıştırması için {0} milisaniyelik zaman aşımına ulaşıldı.
-
-
-
- No suitable test runtime provider found for this run.
- Bu çalıştırma için uygun bir test çalışma zamanı sağlayıcısı yok.
-
-
-
-
-
+
+
+
+
+
+ The test run could not be executed because the initial state was invalid.
+ İlk durum geçersiz olduğundan test çalıştırması yürütülemedi.
+
+
+
+ Wait for completion operation is not allowed when there is no active test run.
+ Etkin bir test çalıştırması olmadığında tamamlanmasını bekleme işlemine izin verilmez.
+
+
+
+ Aborting test run: test run timeout of {0} milliseconds exceeded.
+ Test çalıştırması durduruluyor: Test çalıştırması için {0} milisaniyelik zaman aşımına ulaşıldı.
+
+
+
+ No suitable test runtime provider found for this run.
+ Bu çalıştırma için uygun bir test çalışma zamanı sağlayıcısı yok.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.zh-Hans.xlf b/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.zh-Hans.xlf
index 1f082f20c3..d2e08e3ee2 100644
--- a/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.zh-Hans.xlf
+++ b/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.zh-Hans.xlf
@@ -1,27 +1,27 @@
-
-
-
-
-
- The test run could not be executed because the initial state was invalid.
- 由于初始状态无效,无法执行测试运行。
-
-
-
- Wait for completion operation is not allowed when there is no active test run.
- 没有活动的测试运行时不允许等待完成操作。
-
-
-
- Aborting test run: test run timeout of {0} milliseconds exceeded.
- 中止测试运行: 测试运行超时时间超出 {0} 毫秒。
-
-
-
- No suitable test runtime provider found for this run.
- 对于此运行,未找到适合的测试运行时提供程序。
-
-
-
-
-
+
+
+
+
+
+ The test run could not be executed because the initial state was invalid.
+ 由于初始状态无效,无法执行测试运行。
+
+
+
+ Wait for completion operation is not allowed when there is no active test run.
+ 没有活动的测试运行时不允许等待完成操作。
+
+
+
+ Aborting test run: test run timeout of {0} milliseconds exceeded.
+ 中止测试运行: 测试运行超时时间超出 {0} 毫秒。
+
+
+
+ No suitable test runtime provider found for this run.
+ 对于此运行,未找到适合的测试运行时提供程序。
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.zh-Hant.xlf b/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.zh-Hant.xlf
index 44626a9894..3d4a773655 100644
--- a/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.zh-Hant.xlf
+++ b/src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.zh-Hant.xlf
@@ -1,27 +1,27 @@
-
-
-
-
-
- The test run could not be executed because the initial state was invalid.
- 因為初始狀態無效,所以無法執行測試回合。
-
-
-
- Wait for completion operation is not allowed when there is no active test run.
- 沒有使用中的測試回合時,不允許等候完成作業。
-
-
-
- Aborting test run: test run timeout of {0} milliseconds exceeded.
- 正在中止測試回合: 超過了測試回合逾時 ({0} 毫秒)。
-
-
-
- No suitable test runtime provider found for this run.
- 找不到適用於此回合的測試執行階段提供者。
-
-
-
-
-
+
+
+
+
+
+ The test run could not be executed because the initial state was invalid.
+ 因為初始狀態無效,所以無法執行測試回合。
+
+
+
+ Wait for completion operation is not allowed when there is no active test run.
+ 沒有使用中的測試回合時,不允許等候完成作業。
+
+
+
+ Aborting test run: test run timeout of {0} milliseconds exceeded.
+ 正在中止測試回合: 超過了測試回合逾時 ({0} 毫秒)。
+
+
+
+ No suitable test runtime provider found for this run.
+ 找不到適用於此回合的測試執行階段提供者。
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Client/TestPlatform.cs b/src/Microsoft.TestPlatform.Client/TestPlatform.cs
index 17da54ad1b..4408c94f4e 100644
--- a/src/Microsoft.TestPlatform.Client/TestPlatform.cs
+++ b/src/Microsoft.TestPlatform.Client/TestPlatform.cs
@@ -3,10 +3,8 @@
using System;
using System.Collections.Generic;
-using System.Globalization;
using System.IO;
using System.Linq;
-using System.Reflection;
using Microsoft.VisualStudio.TestPlatform.Client.Discovery;
using Microsoft.VisualStudio.TestPlatform.Client.Execution;
@@ -18,14 +16,11 @@
using Microsoft.VisualStudio.TestPlatform.ObjectModel;
using Microsoft.VisualStudio.TestPlatform.ObjectModel.Client;
using Microsoft.VisualStudio.TestPlatform.ObjectModel.Engine;
-using Microsoft.VisualStudio.TestPlatform.ObjectModel.Host;
using Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities;
using Microsoft.VisualStudio.TestPlatform.PlatformAbstractions;
using Microsoft.VisualStudio.TestPlatform.Utilities.Helpers;
using Microsoft.VisualStudio.TestPlatform.Utilities.Helpers.Interfaces;
-using ClientResources = Microsoft.VisualStudio.TestPlatform.Client.Resources.Resources;
-
namespace Microsoft.VisualStudio.TestPlatform.Client;
///
@@ -191,18 +186,6 @@ public void ClearExtensions()
_testEngine.GetExtensionManager().ClearExtensions();
}
- private static void ThrowExceptionIfTestHostManagerIsNull(
- ITestRuntimeProvider? testHostManager,
- string settingsXml)
- {
- if (testHostManager == null)
- {
- EqtTrace.Error($"{nameof(TestPlatform)}.{nameof(ThrowExceptionIfTestHostManagerIsNull)}: No suitable testHostProvider found for runsettings: {settingsXml}");
- throw new TestPlatformException(string.Format(CultureInfo.CurrentCulture, ClientResources.NoTestHostProviderFound));
- }
- }
-
-
private void AddExtensionAssemblies(string? runSettings, TestAdapterLoadingStrategy adapterLoadingStrategy)
{
IEnumerable customTestAdaptersPaths = RunSettingsUtilities.GetTestAdaptersPaths(runSettings);
@@ -292,7 +275,7 @@ private static void AddExtensionAssembliesFromExtensionDirectory()
}
string extensionsFolder = Path.Combine(
- Path.GetDirectoryName(typeof(TestPlatform).GetTypeInfo().Assembly.GetAssemblyLocation())!,
+ Path.GetDirectoryName(typeof(TestPlatform).Assembly.GetAssemblyLocation())!,
"Extensions");
if (!fileHelper.DirectoryExists(extensionsFolder))
{
diff --git a/src/Microsoft.TestPlatform.Common/DataCollection/DataCollectionManager.cs b/src/Microsoft.TestPlatform.Common/DataCollection/DataCollectionManager.cs
index 81f9f69503..cc4c18c914 100644
--- a/src/Microsoft.TestPlatform.Common/DataCollection/DataCollectionManager.cs
+++ b/src/Microsoft.TestPlatform.Common/DataCollection/DataCollectionManager.cs
@@ -4,6 +4,7 @@
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
+using System.Diagnostics.CodeAnalysis;
using System.Globalization;
using System.Linq;
@@ -387,7 +388,7 @@ private void CleanupPlugins()
/// The friendly Name.
/// The data collector Uri.
///
- protected virtual bool TryGetUriFromFriendlyName(string? friendlyName, out string? dataCollectorUri)
+ protected virtual bool TryGetUriFromFriendlyName(string? friendlyName, [NotNullWhen(true)] out string? dataCollectorUri)
{
TPDebug.Assert(_dataCollectorExtensionManager is not null, "_dataCollectorExtensionManager is null");
foreach (var extension in _dataCollectorExtensionManager.TestExtensions)
diff --git a/src/Microsoft.TestPlatform.Common/DataCollection/DataCollectorConfig.cs b/src/Microsoft.TestPlatform.Common/DataCollection/DataCollectorConfig.cs
index c0a46e7423..7c6019e525 100644
--- a/src/Microsoft.TestPlatform.Common/DataCollection/DataCollectorConfig.cs
+++ b/src/Microsoft.TestPlatform.Common/DataCollection/DataCollectorConfig.cs
@@ -4,7 +4,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
-using System.Reflection;
using Microsoft.VisualStudio.TestPlatform.Common.ExtensionFramework.Utilities;
using Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection;
@@ -155,6 +154,6 @@ private static object[] GetAttributes(Type dataCollectorType, Type attributeType
// If any attribute constructor on the type throws, the exception will bubble up through
// the "GetCustomAttributes" method.
- return dataCollectorType.GetTypeInfo().GetCustomAttributes(attributeType, true).ToArray();
+ return dataCollectorType.GetCustomAttributes(attributeType, true).ToArray();
}
}
diff --git a/src/Microsoft.TestPlatform.Common/ExtensionFramework/TestPluginCache.cs b/src/Microsoft.TestPlatform.Common/ExtensionFramework/TestPluginCache.cs
index a62f6c3af4..40ca9a1cf3 100644
--- a/src/Microsoft.TestPlatform.Common/ExtensionFramework/TestPluginCache.cs
+++ b/src/Microsoft.TestPlatform.Common/ExtensionFramework/TestPluginCache.cs
@@ -128,7 +128,7 @@ public List GetExtensionPaths(string endsWithPattern, bool skipDefaultEx
return TestExtensions.GetTestExtensionCache();
}
- Dictionary? pluginInfos = null;
+ Dictionary? pluginInfos;
SetupAssemblyResolver(null);
// Some times TestPlatform.core.dll assembly fails to load in the current appdomain (from devenv.exe).
@@ -177,6 +177,7 @@ public List GetExtensionPaths(string endsWithPattern, bool skipDefaultEx
// Nothing to do here, we just do not want to do an EqtTrace.Fail for this thread
// being aborted as it is a legitimate exception to receive.
EqtTrace.Verbose("TestPluginCache.DiscoverTestExtensions: Data extension discovery is being aborted due to a thread abort.");
+ return null;
}
#endif
catch (Exception e)
@@ -349,7 +350,7 @@ internal static IList GetResolutionPaths(string extensionAssembly)
var extensionDirectory = Path.GetDirectoryName(Path.GetFullPath(extensionAssembly))!;
resolutionPaths.Add(extensionDirectory);
- var currentDirectory = Path.GetDirectoryName(typeof(TestPluginCache).GetTypeInfo().Assembly.GetAssemblyLocation())!;
+ var currentDirectory = Path.GetDirectoryName(typeof(TestPluginCache).Assembly.GetAssemblyLocation())!;
if (!resolutionPaths.Contains(currentDirectory))
{
resolutionPaths.Add(currentDirectory);
@@ -374,7 +375,7 @@ internal IList GetDefaultResolutionPaths()
}
// Keep current directory for resolution
- var currentDirectory = Path.GetDirectoryName(typeof(TestPluginCache).GetTypeInfo().Assembly.GetAssemblyLocation())!;
+ var currentDirectory = Path.GetDirectoryName(typeof(TestPluginCache).Assembly.GetAssemblyLocation())!;
if (!resolutionPaths.Contains(currentDirectory))
{
resolutionPaths.Add(currentDirectory);
diff --git a/src/Microsoft.TestPlatform.Common/ExtensionFramework/TestPluginDiscoverer.cs b/src/Microsoft.TestPlatform.Common/ExtensionFramework/TestPluginDiscoverer.cs
index 3bbef8f8cf..360d29bb92 100644
--- a/src/Microsoft.TestPlatform.Common/ExtensionFramework/TestPluginDiscoverer.cs
+++ b/src/Microsoft.TestPlatform.Common/ExtensionFramework/TestPluginDiscoverer.cs
@@ -91,9 +91,8 @@ private static void GetTestExtensionsFromFiles(
}
try
{
- Assembly? assembly = null;
var assemblyName = Path.GetFileNameWithoutExtension(file);
- assembly = Assembly.Load(new AssemblyName(assemblyName));
+ var assembly = Assembly.Load(new AssemblyName(assemblyName));
if (assembly != null)
{
GetTestExtensionsFromAssembly(assembly, pluginInfos, file);
@@ -156,7 +155,7 @@ private static void GetTestExtensionsFromAssembly(Assem
if (types.Count == 0)
{
- types.AddRange(assembly.GetTypes().Where(type => type.GetTypeInfo() is { } typeInfo && typeInfo.IsClass && !typeInfo.IsAbstract));
+ types.AddRange(assembly.GetTypes().Where(type => type.IsClass && !type.IsAbstract));
}
}
catch (ReflectionTypeLoadException e)
@@ -166,7 +165,7 @@ private static void GetTestExtensionsFromAssembly(Assem
if (e.Types?.Length > 0)
{
// Unloaded types on e.Types are null, make sure we skip them.
- types.AddRange(e.Types.Where(type => type != null && type.GetTypeInfo().IsClass && !type.GetTypeInfo().IsAbstract)!);
+ types.AddRange(e.Types.Where(type => type != null && type.IsClass && !type.IsAbstract)!);
}
if (e.LoaderExceptions != null)
@@ -209,7 +208,7 @@ private static void GetTestExtensionFromType(
string filePath)
where TPluginInfo : TestPluginInformation
{
- if (!extensionType.GetTypeInfo().IsAssignableFrom(type.GetTypeInfo()))
+ if (!extensionType.IsAssignableFrom(type))
{
return;
}
diff --git a/src/Microsoft.TestPlatform.Common/ExtensionFramework/Utilities/TestDiscovererPluginInformation.cs b/src/Microsoft.TestPlatform.Common/ExtensionFramework/Utilities/TestDiscovererPluginInformation.cs
index 54eed86b92..8b947cd8e2 100644
--- a/src/Microsoft.TestPlatform.Common/ExtensionFramework/Utilities/TestDiscovererPluginInformation.cs
+++ b/src/Microsoft.TestPlatform.Common/ExtensionFramework/Utilities/TestDiscovererPluginInformation.cs
@@ -90,7 +90,7 @@ private static List GetFileExtensions(Type testDiscovererType)
{
var fileExtensions = new List();
- var attributes = testDiscovererType.GetTypeInfo().GetCustomAttributes(typeof(FileExtensionAttribute), inherit: false).ToArray();
+ var attributes = testDiscovererType.GetCustomAttributes(typeof(FileExtensionAttribute), inherit: false).ToArray();
if (attributes != null && attributes.Length > 0)
{
foreach (var attribute in attributes)
@@ -115,7 +115,7 @@ private static string GetDefaultExecutorUri(Type testDiscovererType)
{
var result = string.Empty;
- var attributes = testDiscovererType.GetTypeInfo().GetCustomAttributes(typeof(DefaultExecutorUriAttribute), inherit: false).ToArray();
+ var attributes = testDiscovererType.GetCustomAttributes(typeof(DefaultExecutorUriAttribute), inherit: false).ToArray();
if (attributes != null && attributes.Length > 0)
{
DefaultExecutorUriAttribute executorUriAttribute = (DefaultExecutorUriAttribute)attributes[0];
@@ -138,7 +138,7 @@ private static AssemblyType GetAssemblyType(Type testDiscovererType)
{
// Get Category
- var attribute = testDiscovererType.GetTypeInfo().GetCustomAttribute(typeof(CategoryAttribute));
+ var attribute = testDiscovererType.GetCustomAttribute(typeof(CategoryAttribute));
var category = (attribute as CategoryAttribute)?.Category;
// Get assembly type from category.
@@ -153,7 +153,7 @@ private static AssemblyType GetAssemblyType(Type testDiscovererType)
/// Data type of the test discoverer
private static bool GetIsDirectoryBased(Type testDiscovererType)
{
- var attribute = testDiscovererType.GetTypeInfo().GetCustomAttribute(typeof(DirectoryBasedTestDiscovererAttribute), inherit: false);
+ var attribute = testDiscovererType.GetCustomAttribute(typeof(DirectoryBasedTestDiscovererAttribute), inherit: false);
return attribute is DirectoryBasedTestDiscovererAttribute;
}
}
diff --git a/src/Microsoft.TestPlatform.Common/ExtensionFramework/Utilities/TestExtensionPluginInformation.cs b/src/Microsoft.TestPlatform.Common/ExtensionFramework/Utilities/TestExtensionPluginInformation.cs
index 6aaa8bd8c0..14e9eea63e 100644
--- a/src/Microsoft.TestPlatform.Common/ExtensionFramework/Utilities/TestExtensionPluginInformation.cs
+++ b/src/Microsoft.TestPlatform.Common/ExtensionFramework/Utilities/TestExtensionPluginInformation.cs
@@ -4,7 +4,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
-using System.Reflection;
using Microsoft.VisualStudio.TestPlatform.ObjectModel;
@@ -68,7 +67,7 @@ private static string GetExtensionUri(Type testLoggerType)
{
string extensionUri = string.Empty;
- object[] attributes = testLoggerType.GetTypeInfo().GetCustomAttributes(typeof(ExtensionUriAttribute), false).ToArray();
+ object[] attributes = testLoggerType.GetCustomAttributes(typeof(ExtensionUriAttribute), false).ToArray();
if (attributes.Length > 0)
{
ExtensionUriAttribute extensionUriAttribute = (ExtensionUriAttribute)attributes[0];
@@ -81,7 +80,7 @@ private static string GetExtensionUri(Type testLoggerType)
if (extensionUri.IsNullOrEmpty())
{
- EqtTrace.Error("The type \"{0}\" defined in \"{1}\" does not have ExtensionUri attribute.", testLoggerType.ToString(), testLoggerType.GetTypeInfo().Module.Name);
+ EqtTrace.Error("The type \"{0}\" defined in \"{1}\" does not have ExtensionUri attribute.", testLoggerType.ToString(), testLoggerType.Module.Name);
}
return extensionUri;
diff --git a/src/Microsoft.TestPlatform.Common/ExtensionFramework/Utilities/TestExtensions.cs b/src/Microsoft.TestPlatform.Common/ExtensionFramework/Utilities/TestExtensions.cs
index afc3a705df..e1f6c01ebc 100644
--- a/src/Microsoft.TestPlatform.Common/ExtensionFramework/Utilities/TestExtensions.cs
+++ b/src/Microsoft.TestPlatform.Common/ExtensionFramework/Utilities/TestExtensions.cs
@@ -4,7 +4,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
-using System.Reflection;
using Microsoft.VisualStudio.TestPlatform.Common.DataCollector;
using Microsoft.VisualStudio.TestPlatform.Common.Telemetry;
@@ -430,7 +429,7 @@ internal static Dictionary GetExtensionsDiscoveredFromAssem
var testPluginInformation = extension.Value as TestPluginInformation;
// TODO: Avoid ArgumentNullException here
var extensionType = Type.GetType(testPluginInformation?.AssemblyQualifiedName!);
- if (string.Equals(extensionType?.GetTypeInfo().Assembly.GetAssemblyLocation(), extensionAssembly))
+ if (string.Equals(extensionType?.Assembly.GetAssemblyLocation(), extensionAssembly))
{
extensions.Add(extension.Key, extension.Value);
}
diff --git a/src/Microsoft.TestPlatform.Common/ExtensionFramework/Utilities/TestLoggerPluginInformation.cs b/src/Microsoft.TestPlatform.Common/ExtensionFramework/Utilities/TestLoggerPluginInformation.cs
index 4e57bcd94c..14b7e06105 100644
--- a/src/Microsoft.TestPlatform.Common/ExtensionFramework/Utilities/TestLoggerPluginInformation.cs
+++ b/src/Microsoft.TestPlatform.Common/ExtensionFramework/Utilities/TestLoggerPluginInformation.cs
@@ -4,7 +4,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
-using System.Reflection;
using Microsoft.VisualStudio.TestPlatform.ObjectModel;
@@ -54,7 +53,7 @@ private static string GetFriendlyName(Type testLoggerType)
{
string friendlyName = string.Empty;
- object[] attributes = testLoggerType.GetTypeInfo().GetCustomAttributes(typeof(FriendlyNameAttribute), false).ToArray();
+ object[] attributes = testLoggerType.GetCustomAttributes(typeof(FriendlyNameAttribute), false).ToArray();
if (attributes.Length > 0)
{
FriendlyNameAttribute friendlyNameAttribute = (FriendlyNameAttribute)attributes[0];
diff --git a/src/Microsoft.TestPlatform.Common/ExtensionFramework/Utilities/TestRunTimePluginInformation.cs b/src/Microsoft.TestPlatform.Common/ExtensionFramework/Utilities/TestRunTimePluginInformation.cs
index 4a7060713a..52554b9197 100644
--- a/src/Microsoft.TestPlatform.Common/ExtensionFramework/Utilities/TestRunTimePluginInformation.cs
+++ b/src/Microsoft.TestPlatform.Common/ExtensionFramework/Utilities/TestRunTimePluginInformation.cs
@@ -4,7 +4,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
-using System.Reflection;
using Microsoft.VisualStudio.TestPlatform.ObjectModel;
@@ -54,7 +53,7 @@ private static string GetFriendlyName(Type? testHostType)
{
string friendlyName = string.Empty;
- object[]? attributes = testHostType?.GetTypeInfo().GetCustomAttributes(typeof(FriendlyNameAttribute), false).ToArray();
+ object[]? attributes = testHostType?.GetCustomAttributes(typeof(FriendlyNameAttribute), false).ToArray();
if (attributes != null && attributes.Length > 0)
{
FriendlyNameAttribute friendlyNameAttribute = (FriendlyNameAttribute)attributes[0];
diff --git a/src/Microsoft.TestPlatform.Common/ExtensionFramework/Utilities/TestSettingsProviderPluginInformation.cs b/src/Microsoft.TestPlatform.Common/ExtensionFramework/Utilities/TestSettingsProviderPluginInformation.cs
index 6322353be3..3066bb52c8 100644
--- a/src/Microsoft.TestPlatform.Common/ExtensionFramework/Utilities/TestSettingsProviderPluginInformation.cs
+++ b/src/Microsoft.TestPlatform.Common/ExtensionFramework/Utilities/TestSettingsProviderPluginInformation.cs
@@ -4,7 +4,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
-using System.Reflection;
using Microsoft.VisualStudio.TestPlatform.ObjectModel;
@@ -68,7 +67,7 @@ private static string GetTestSettingsName(Type testSettingsProviderType)
{
string settingName = string.Empty;
- object[] attributes = testSettingsProviderType.GetTypeInfo().GetCustomAttributes(typeof(SettingsNameAttribute), false).ToArray();
+ object[] attributes = testSettingsProviderType.GetCustomAttributes(typeof(SettingsNameAttribute), false).ToArray();
if (attributes != null && attributes.Length > 0)
{
SettingsNameAttribute settingsNameAttribute = (SettingsNameAttribute)attributes[0];
diff --git a/src/Microsoft.TestPlatform.Common/ExtensionFramework/VSExtensionManager.cs b/src/Microsoft.TestPlatform.Common/ExtensionFramework/VSExtensionManager.cs
index 9b516ea109..cec8312fe0 100644
--- a/src/Microsoft.TestPlatform.Common/ExtensionFramework/VSExtensionManager.cs
+++ b/src/Microsoft.TestPlatform.Common/ExtensionFramework/VSExtensionManager.cs
@@ -85,10 +85,7 @@ private IEnumerable GetTestExtensionsInternal(string extensionType)
var resolutionPaths = installContext.GetVisualStudioCommonLocations(vsInstallPath);
using (var assemblyResolver = new AssemblyResolver(resolutionPaths))
{
- object? extensionManager;
- object? settingsManager;
-
- settingsManager = SettingsManagerType.GetMethod("CreateForApplication", new Type[] { typeof(string) })?.Invoke(null, new object[] { installContext.GetVisualStudioPath(vsInstallPath) });
+ var settingsManager = SettingsManagerType.GetMethod("CreateForApplication", new Type[] { typeof(string) })?.Invoke(null, new object[] { installContext.GetVisualStudioPath(vsInstallPath) });
if (settingsManager == null)
{
EqtTrace.Warning("VSExtensionManager : Unable to create settings manager");
@@ -98,7 +95,7 @@ private IEnumerable GetTestExtensionsInternal(string extensionType)
try
{
// create extension manager
- extensionManager = Activator.CreateInstance(ExtensionManagerServiceType, settingsManager);
+ var extensionManager = Activator.CreateInstance(ExtensionManagerServiceType, settingsManager);
if (extensionManager != null)
{
diff --git a/src/Microsoft.TestPlatform.Common/Filtering/FilterExpression.cs b/src/Microsoft.TestPlatform.Common/Filtering/FilterExpression.cs
index c2a30a33a8..417d10fae4 100644
--- a/src/Microsoft.TestPlatform.Common/Filtering/FilterExpression.cs
+++ b/src/Microsoft.TestPlatform.Common/Filtering/FilterExpression.cs
@@ -130,8 +130,7 @@ private static void ProcessOperator(Stack filterStack, Operato
// Only the leaves have a condition value.
if (current._condition != null)
{
- bool valid = false;
- valid = current._condition.ValidForProperties(properties, propertyProvider);
+ var valid = current._condition.ValidForProperties(properties, propertyProvider);
// If it's not valid will add it to the function's return array.
return !valid ? new string[1] { current._condition.Name } : null;
}
diff --git a/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.cs.xlf b/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.cs.xlf
index 46a62f3755..4b59416829 100644
--- a/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.cs.xlf
+++ b/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.cs.xlf
@@ -1,202 +1,202 @@
-
-
-
-
-
- Data collection : {0}
- Shromažďování dat: {0}
-
-
-
- Data collector '{0}' message: {1}.
- Zpráva kolekce dat {0}: {1}
-
-
-
- Duplicate test extension URI '{0}'. Ignoring the duplicate extension.
- Duplicitní identifikátor URI testu rozšíření {0}. Duplicitní rozšíření se ignoruje.
-
-
-
- Duplicate settings provider named '{0}'. Ignoring the duplicate provider.
- Duplicitní poskytovatel nastavení s názvem {0}. Duplicitní poskytovatel se ignoruje.
-
-
-
- Duplicate run settings section named '{0}' found. Ignoring the duplicate settings.
- Našel se duplicitní oddíl nastavení běhu s názvem {0}. Duplicitní nastavení se ignoruje.
-
-
-
- Error: Empty parenthesis ( )
- Chyba: Prázdné závorky ( )
-
-
-
- Error: Invalid Condition '{0}'
- Chyba: Neplatná podmínka {0}
-
-
-
- Test Extension has an invalid URI '{0}': {1}
- Rozšíření testu má neplatný identifikátor URI {0}: {1}
-
-
-
- Error: Invalid operator '{0}'
- Chyba: Neplatný operátor {0}
-
-
-
- Exception occurred while initializing logger with {0}: '{1}'. The logger will not be used. Exception: {2}
- Během inicializace protokolovače s {0}: {1} došlo k výjimce. Protokolovač se nepoužije. Výjimka: {2}
-
-
-
- Could not find a test logger with AssemblyQualifiedName, URI or FriendlyName '{0}'.
- Nepovedlo se najít protokolovač testu s kvalifikovaným názvem sestavení (AssemblyQualifiedName), identifikátorem URI (uri) nebo popisným názvem (FriendlyName) {0}.
-
-
-
- Error: Missing ')'
- Chyba: Chybí ).
-
-
-
- Error: Missing '('
- Chyba: Chybí (.
-
-
-
- Error: Missing operand
- Chyba: Chybí operand.
-
-
-
- Missing Operator '|' or '&'
- Chybějící operátor | nebo &
-
-
-
- The Run Settings have already been loaded.
- Parametry spouštění jsou už načtené.
-
-
-
- An error occurred while loading the run settings. Error: {0}
- Při načítání parametrů spouštění se stala chyba. Chyba: {0}
-
-
-
- Invalid settings node specified. The name property of the settings node must be non-empty.
- Zadal se neplatný uzel nastavení. Vlastnost name uzlu nastavení nesmí být prázdná.
-
-
-
- An error occurred while initializing the settings provider named '{0}'. Error: {1}
- Při inicializaci poskytovatele nastavení s názvem {0} se stala chyba. Chyba: {1}
-
-
-
- Settings Provider named '{0}' was not found. The settings can not be loaded.
- Poskytovatel nastavení s názvem {0} se nenašel. Nastavení nešlo načíst.
-
-
-
- Incorrect format for TestCaseFilter {0}. Specify the correct format and try again. Note that the incorrect format can lead to no test getting executed.
- Nesprávný formát pro TestCaseFilter {0}. Zadejte správný formát a zkuste to znovu. Poznámka: Nesprávný formát může vést k tomu, že se nespustí žádný test.
-
-
-
- Data collector '{0}' failed to provide initialization information. Error: {1}
- Kolekce dat {0} neposkytla informace o inicializaci. Chyba: {1}
-
-
-
- Data collector '{0}' threw an exception during type loading, construction, or initialization: {1}.
- Kolekce dat {0} během načítání typu, konstrukce nebo inicializace vyvolala výjimku: {1}
-
-
-
- Could not find data collector '{0}'
- Nepovedlo se najít kolekci dat {0}.
-
-
-
- The data collector '{0}' requested environment variable '{1}' with value '{2}' to be set in test execution environment, but another data collector '{3}' has already requested same environment variable with different value '{4}'.
- Kolekce dat {0} si v prostředí provedení testu vyžádala nastavení proměnné prostředí {1} na hodnotu {2}, ale jiná kolekce dat {3} si už vyžádala stejnou proměnnou prostředí s rozdílnou hodnotou {4}.
-
-
-
- There are multiple configurations that have data collector FriendlyName as '{0}'. Duplicate configurations will be ignored in the test run.
- Existuje více konfigurací, které mají popisný název kolekce dat {0}. Duplicitní konfigurace se budou v testovacím běhu ignorovat.
-
-
-
- Data collector caught an exception of type '{0}': '{1}'. More details: {2}.
- Kolekce dat zachytila výjimku typu {0}: {1}. Další podrobnosti: {2}
-
-
-
- Types deriving from the data collection context cannot be used for sending data and messages. The DataCollectionContext used for sending data and messages must come from one of the events raised to the data collector.
- Typy odvozené z kontextu shromažďování dat nelze použít pro posílání zpráv a dat. DataCollectionContext použitý pro posílání dat a zpráv musí pocházet z jedné z událostí vyvolaných na kolekci dat.
-
-
-
- The Test Logger URI '{0}' is not valid. The Test Logger will be ignored.
- Identifikátor URI {0} protokolovače testu není platný. Protokolovač testu se bude ignorovat.
-
-
-
- Failed to find the list of installed unit test extensions. Reason: {0}
- Nepovedlo se najít seznam nainstalovaných rozšíření testu jednotek. Důvod: {0}
-
-
-
- This option works only with vstest.console.exe installed as part of Visual Studio.
- Tato možnost funguje jenom se souborem vstest.console.exe nainstalovaným jako součást sady Visual Studio.
-
-
-
- An error occurred while creating Fast filter.
- Při vytváření rychlého filtru došlo k chybě.
-
-
-
- Cancelling the operation as requested.
- Operace se ruší na základě žádosti.
-
-
-
- Unable to find a datacollector with friendly name '{0}'.
- Nepovedlo se najít datacollector s popisným názvem {0}.
-
-
-
- Failed to load extensions from file '{0}'. Please use /diag for more information.
- Nepovedlo se načíst rozšíření ze souboru {0}. Další informace získáte pomocí parametru /diag.
-
-
-
- {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges. For more information, please look at the error message:
- {0} Při pokusu o vytvoření složky TestResults v uvedeném umístění došlo k odepření přístupu. Tato výjimka se vyvolala, protože spouštíte vstest.console.exe ze složky, která vyžaduje, abyste měli přístup pro zápis. Pokud chcete problém vyřešit, spusťte prosím vstest.console.exe ze složky, ve které máte oprávnění k zápisu. Další informace najdete v chybové zprávě:
-
-
-
- Inner exception:
- Vnitřní výjimka:
-
-
-
- Stack trace:
- Trasování zásobníku:
-
-
-
- <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> is not supported for sources test run.
- <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> se pro testovací běh zdrojů nepodporuje.
-
-
-
-
-
+
+
+
+
+
+ Data collection : {0}
+ Shromažďování dat: {0}
+
+
+
+ Data collector '{0}' message: {1}.
+ Zpráva kolekce dat {0}: {1}
+
+
+
+ Duplicate test extension URI '{0}'. Ignoring the duplicate extension.
+ Duplicitní identifikátor URI testu rozšíření {0}. Duplicitní rozšíření se ignoruje.
+
+
+
+ Duplicate settings provider named '{0}'. Ignoring the duplicate provider.
+ Duplicitní poskytovatel nastavení s názvem {0}. Duplicitní poskytovatel se ignoruje.
+
+
+
+ Duplicate run settings section named '{0}' found. Ignoring the duplicate settings.
+ Našel se duplicitní oddíl nastavení běhu s názvem {0}. Duplicitní nastavení se ignoruje.
+
+
+
+ Error: Empty parenthesis ( )
+ Chyba: Prázdné závorky ( )
+
+
+
+ Error: Invalid Condition '{0}'
+ Chyba: Neplatná podmínka {0}
+
+
+
+ Test Extension has an invalid URI '{0}': {1}
+ Rozšíření testu má neplatný identifikátor URI {0}: {1}
+
+
+
+ Error: Invalid operator '{0}'
+ Chyba: Neplatný operátor {0}
+
+
+
+ Exception occurred while initializing logger with {0}: '{1}'. The logger will not be used. Exception: {2}
+ Během inicializace protokolovače s {0}: {1} došlo k výjimce. Protokolovač se nepoužije. Výjimka: {2}
+
+
+
+ Could not find a test logger with AssemblyQualifiedName, URI or FriendlyName '{0}'.
+ Nepovedlo se najít protokolovač testu s kvalifikovaným názvem sestavení (AssemblyQualifiedName), identifikátorem URI (uri) nebo popisným názvem (FriendlyName) {0}.
+
+
+
+ Error: Missing ')'
+ Chyba: Chybí ).
+
+
+
+ Error: Missing '('
+ Chyba: Chybí (.
+
+
+
+ Error: Missing operand
+ Chyba: Chybí operand.
+
+
+
+ Missing Operator '|' or '&'
+ Chybějící operátor | nebo &
+
+
+
+ The Run Settings have already been loaded.
+ Parametry spouštění jsou už načtené.
+
+
+
+ An error occurred while loading the run settings. Error: {0}
+ Při načítání parametrů spouštění se stala chyba. Chyba: {0}
+
+
+
+ Invalid settings node specified. The name property of the settings node must be non-empty.
+ Zadal se neplatný uzel nastavení. Vlastnost name uzlu nastavení nesmí být prázdná.
+
+
+
+ An error occurred while initializing the settings provider named '{0}'. Error: {1}
+ Při inicializaci poskytovatele nastavení s názvem {0} se stala chyba. Chyba: {1}
+
+
+
+ Settings Provider named '{0}' was not found. The settings can not be loaded.
+ Poskytovatel nastavení s názvem {0} se nenašel. Nastavení nešlo načíst.
+
+
+
+ Incorrect format for TestCaseFilter {0}. Specify the correct format and try again. Note that the incorrect format can lead to no test getting executed.
+ Nesprávný formát pro TestCaseFilter {0}. Zadejte správný formát a zkuste to znovu. Poznámka: Nesprávný formát může vést k tomu, že se nespustí žádný test.
+
+
+
+ Data collector '{0}' failed to provide initialization information. Error: {1}
+ Kolekce dat {0} neposkytla informace o inicializaci. Chyba: {1}
+
+
+
+ Data collector '{0}' threw an exception during type loading, construction, or initialization: {1}.
+ Kolekce dat {0} během načítání typu, konstrukce nebo inicializace vyvolala výjimku: {1}
+
+
+
+ Could not find data collector '{0}'
+ Nepovedlo se najít kolekci dat {0}.
+
+
+
+ The data collector '{0}' requested environment variable '{1}' with value '{2}' to be set in test execution environment, but another data collector '{3}' has already requested same environment variable with different value '{4}'.
+ Kolekce dat {0} si v prostředí provedení testu vyžádala nastavení proměnné prostředí {1} na hodnotu {2}, ale jiná kolekce dat {3} si už vyžádala stejnou proměnnou prostředí s rozdílnou hodnotou {4}.
+
+
+
+ There are multiple configurations that have data collector FriendlyName as '{0}'. Duplicate configurations will be ignored in the test run.
+ Existuje více konfigurací, které mají popisný název kolekce dat {0}. Duplicitní konfigurace se budou v testovacím běhu ignorovat.
+
+
+
+ Data collector caught an exception of type '{0}': '{1}'. More details: {2}.
+ Kolekce dat zachytila výjimku typu {0}: {1}. Další podrobnosti: {2}
+
+
+
+ Types deriving from the data collection context cannot be used for sending data and messages. The DataCollectionContext used for sending data and messages must come from one of the events raised to the data collector.
+ Typy odvozené z kontextu shromažďování dat nelze použít pro posílání zpráv a dat. DataCollectionContext použitý pro posílání dat a zpráv musí pocházet z jedné z událostí vyvolaných na kolekci dat.
+
+
+
+ The Test Logger URI '{0}' is not valid. The Test Logger will be ignored.
+ Identifikátor URI {0} protokolovače testu není platný. Protokolovač testu se bude ignorovat.
+
+
+
+ Failed to find the list of installed unit test extensions. Reason: {0}
+ Nepovedlo se najít seznam nainstalovaných rozšíření testu jednotek. Důvod: {0}
+
+
+
+ This option works only with vstest.console.exe installed as part of Visual Studio.
+ Tato možnost funguje jenom se souborem vstest.console.exe nainstalovaným jako součást sady Visual Studio.
+
+
+
+ An error occurred while creating Fast filter.
+ Při vytváření rychlého filtru došlo k chybě.
+
+
+
+ Cancelling the operation as requested.
+ Operace se ruší na základě žádosti.
+
+
+
+ Unable to find a datacollector with friendly name '{0}'.
+ Nepovedlo se najít datacollector s popisným názvem {0}.
+
+
+
+ Failed to load extensions from file '{0}'. Please use /diag for more information.
+ Nepovedlo se načíst rozšíření ze souboru {0}. Další informace získáte pomocí parametru /diag.
+
+
+
+ {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges. For more information, please look at the error message:
+ {0} Při pokusu o vytvoření složky TestResults v uvedeném umístění došlo k odepření přístupu. Tato výjimka se vyvolala, protože spouštíte vstest.console.exe ze složky, která vyžaduje, abyste měli přístup pro zápis. Pokud chcete problém vyřešit, spusťte prosím vstest.console.exe ze složky, ve které máte oprávnění k zápisu. Další informace najdete v chybové zprávě:
+
+
+
+ Inner exception:
+ Vnitřní výjimka:
+
+
+
+ Stack trace:
+ Trasování zásobníku:
+
+
+
+ <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> is not supported for sources test run.
+ <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> se pro testovací běh zdrojů nepodporuje.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.de.xlf b/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.de.xlf
index fe2f1ef2f6..3b0e0ee3a5 100644
--- a/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.de.xlf
+++ b/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.de.xlf
@@ -1,202 +1,202 @@
-
-
-
-
-
- Data collection : {0}
- Datensammlung: {0}
-
-
-
- Data collector '{0}' message: {1}.
- Datensammler "{0}" – Meldung: {1}.
-
-
-
- Duplicate test extension URI '{0}'. Ignoring the duplicate extension.
- Doppelter Testerweiterungs-URI "{0}". Die doppelte Erweiterung wird ignoriert.
-
-
-
- Duplicate settings provider named '{0}'. Ignoring the duplicate provider.
- Doppelter Einstellungsanbieter namens "{0}". Der doppelte Anbieter wird ignoriert.
-
-
-
- Duplicate run settings section named '{0}' found. Ignoring the duplicate settings.
- Duplizierter Abschnitt mit Ausführungseinstellungen "{0}". Die Einstellungsduplikate werden ignoriert.
-
-
-
- Error: Empty parenthesis ( )
- Fehler: Leere Klammern ( )
-
-
-
- Error: Invalid Condition '{0}'
- Fehler: Ungültige Bedingung "{0}".
-
-
-
- Test Extension has an invalid URI '{0}': {1}
- Die Testerweiterung weist einen ungültigen URI "{0}" auf: {1}
-
-
-
- Error: Invalid operator '{0}'
- Fehler: Ungültiger Operator "{0}".
-
-
-
- Exception occurred while initializing logger with {0}: '{1}'. The logger will not be used. Exception: {2}
- Ausnahme beim Initialisieren der Protokollierung mit "{0}": "{1}". Die Protokollierung wird nicht verwendet. Ausnahme: {2}
-
-
-
- Could not find a test logger with AssemblyQualifiedName, URI or FriendlyName '{0}'.
- Es wurde keine Testprotokollierung mit AssemblyQualifiedName, URI oder FriendlyName "{0}" gefunden.
-
-
-
- Error: Missing ')'
- Fehler: Fehlende Klammer ")"
-
-
-
- Error: Missing '('
- Fehler: Fehlende Klammer "("
-
-
-
- Error: Missing operand
- Fehler: Fehlender Operand.
-
-
-
- Missing Operator '|' or '&'
- Operator "|" oder "&" fehlt
-
-
-
- The Run Settings have already been loaded.
- Die Laufzeiteinstellungen wurden bereits geladen.
-
-
-
- An error occurred while loading the run settings. Error: {0}
- Fehler beim Laden der Laufzeiteinstellungen. Fehler: {0}
-
-
-
- Invalid settings node specified. The name property of the settings node must be non-empty.
- Es wurde ein ungültiger Einstellungsknoten angegebenen. Die Eigenschaft "name" eines Einstellungsknotens darf nicht leer sein.
-
-
-
- An error occurred while initializing the settings provider named '{0}'. Error: {1}
- Fehler beim Initialisieren des Einstellungsanbieters namens "{0}". Fehler: {1}
-
-
-
- Settings Provider named '{0}' was not found. The settings can not be loaded.
- Der Einstellungsanbieter namens "{0}" wurde nicht gefunden. Die Einstellungen können nicht geladen werden.
-
-
-
- Incorrect format for TestCaseFilter {0}. Specify the correct format and try again. Note that the incorrect format can lead to no test getting executed.
- Ungültiges Format für TestCaseFilter {0}. Geben Sie das richtige Format an, und versuchen Sie es erneut. Beachten Sie, dass das falsche Format dazu führen kann, dass kein Test ausgeführt wird.
-
-
-
- Data collector '{0}' failed to provide initialization information. Error: {1}
- Vom Datensammler "{0}" wurden keine Initialisierungsinformationen bereitgestellt. Fehler: {1}
-
-
-
- Data collector '{0}' threw an exception during type loading, construction, or initialization: {1}.
- Der Datensammler "{0}" hat beim Laden, bei der Konstruktion oder bei der Initialisierung des Typs eine Ausnahme ausgelöst: {1}.
-
-
-
- Could not find data collector '{0}'
- Datensammler "{0}" wurde nicht gefunden
-
-
-
- The data collector '{0}' requested environment variable '{1}' with value '{2}' to be set in test execution environment, but another data collector '{3}' has already requested same environment variable with different value '{4}'.
- Der Datensammler "{0}" hat das Festlegen der Umgebungsvariablen "{1}" mit dem Wert "{2}" in der Testausführungsumgebung angefordert, ein anderer Datensammler "{3}" hat jedoch die gleiche Umgebungsvariable mit dem anderen Wert "{4}" angefordert.
-
-
-
- There are multiple configurations that have data collector FriendlyName as '{0}'. Duplicate configurations will be ignored in the test run.
- Es gibt mehrere Konfigurationen mit dem Datensammler-FriendlyName "{0}". Doppelte Konfigurationen werden beim Testlauf ignoriert.
-
-
-
- Data collector caught an exception of type '{0}': '{1}'. More details: {2}.
- Der Datensammler hat eine Ausnahme vom Typ "{0}" aufgefangen: "{1}". Weitere Informationen: {2}.
-
-
-
- Types deriving from the data collection context cannot be used for sending data and messages. The DataCollectionContext used for sending data and messages must come from one of the events raised to the data collector.
- Typen, die vom Datensammlungskontext abgeleitet werden, können nicht zum Senden von Daten und Meldungen verwendet werden. Der DataCollectionContext für das Senden von Daten und Meldungen muss aus einem der Ereignisse stammen, die für den Datensammler ausgelöst wurden.
-
-
-
- The Test Logger URI '{0}' is not valid. The Test Logger will be ignored.
- Der Testprotokollierungs-URI "{0}" ist ungültig. Die Testprotokollierung wird ignoriert.
-
-
-
- Failed to find the list of installed unit test extensions. Reason: {0}
- Die Liste installierter Komponententesterweiterungen wurde nicht gefunden. Ursache: {0}
-
-
-
- This option works only with vstest.console.exe installed as part of Visual Studio.
- Diese Option funktioniert nur, wenn "vstest.console.exe" als Teil von Visual Studio installiert wurde.
-
-
-
- An error occurred while creating Fast filter.
- Fehler beim Erstellen eines Schnellfilters.
-
-
-
- Cancelling the operation as requested.
- Der Vorgang wird gemäß Anforderung abgebrochen.
-
-
-
- Unable to find a datacollector with friendly name '{0}'.
- datacollector mit dem Anzeigenamen "{0}" wurde nicht gefunden.
-
-
-
- Failed to load extensions from file '{0}'. Please use /diag for more information.
- Fehler beim Laden von Erweiterungen aus der Datei "{0}". Verwenden Sie "/diag", um weitere Informationen zu erhalten.
-
-
-
- {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges. For more information, please look at the error message:
- {0} Beim Erstellen des Ordners "TestResults" am angegebenen Speicherort wurde der Zugriff verweigert. Sie erhalten diese Ausnahme, weil Sie "vstest.console.exe" von einem Ordner aus ausführen, für den Schreibzugriff erforderlich ist. So beheben Sie das Problem: Führen Sie "vstest.console.exe" in einem Ordner aus, für den Sie Schreibberechtigungen besitzen. Weitere Informationen finden Sie in der Fehlermeldung:
-
-
-
- Inner exception:
- Innere Ausnahme:
-
-
-
- Stack trace:
- Stapelüberwachung:
-
-
-
- <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> is not supported for sources test run.
- <ForceOneTestAtTimePerTestHost>TRUE</ForceOneTestAtTimePerTestHost> wird für den Testlauf der Quellen nicht unterstützt.
-
-
-
-
-
+
+
+
+
+
+ Data collection : {0}
+ Datensammlung: {0}
+
+
+
+ Data collector '{0}' message: {1}.
+ Datensammler "{0}" – Meldung: {1}.
+
+
+
+ Duplicate test extension URI '{0}'. Ignoring the duplicate extension.
+ Doppelter Testerweiterungs-URI "{0}". Die doppelte Erweiterung wird ignoriert.
+
+
+
+ Duplicate settings provider named '{0}'. Ignoring the duplicate provider.
+ Doppelter Einstellungsanbieter namens "{0}". Der doppelte Anbieter wird ignoriert.
+
+
+
+ Duplicate run settings section named '{0}' found. Ignoring the duplicate settings.
+ Duplizierter Abschnitt mit Ausführungseinstellungen "{0}". Die Einstellungsduplikate werden ignoriert.
+
+
+
+ Error: Empty parenthesis ( )
+ Fehler: Leere Klammern ( )
+
+
+
+ Error: Invalid Condition '{0}'
+ Fehler: Ungültige Bedingung "{0}".
+
+
+
+ Test Extension has an invalid URI '{0}': {1}
+ Die Testerweiterung weist einen ungültigen URI "{0}" auf: {1}
+
+
+
+ Error: Invalid operator '{0}'
+ Fehler: Ungültiger Operator "{0}".
+
+
+
+ Exception occurred while initializing logger with {0}: '{1}'. The logger will not be used. Exception: {2}
+ Ausnahme beim Initialisieren der Protokollierung mit "{0}": "{1}". Die Protokollierung wird nicht verwendet. Ausnahme: {2}
+
+
+
+ Could not find a test logger with AssemblyQualifiedName, URI or FriendlyName '{0}'.
+ Es wurde keine Testprotokollierung mit AssemblyQualifiedName, URI oder FriendlyName "{0}" gefunden.
+
+
+
+ Error: Missing ')'
+ Fehler: Fehlende Klammer ")"
+
+
+
+ Error: Missing '('
+ Fehler: Fehlende Klammer "("
+
+
+
+ Error: Missing operand
+ Fehler: Fehlender Operand.
+
+
+
+ Missing Operator '|' or '&'
+ Operator "|" oder "&" fehlt
+
+
+
+ The Run Settings have already been loaded.
+ Die Laufzeiteinstellungen wurden bereits geladen.
+
+
+
+ An error occurred while loading the run settings. Error: {0}
+ Fehler beim Laden der Laufzeiteinstellungen. Fehler: {0}
+
+
+
+ Invalid settings node specified. The name property of the settings node must be non-empty.
+ Es wurde ein ungültiger Einstellungsknoten angegebenen. Die Eigenschaft "name" eines Einstellungsknotens darf nicht leer sein.
+
+
+
+ An error occurred while initializing the settings provider named '{0}'. Error: {1}
+ Fehler beim Initialisieren des Einstellungsanbieters namens "{0}". Fehler: {1}
+
+
+
+ Settings Provider named '{0}' was not found. The settings can not be loaded.
+ Der Einstellungsanbieter namens "{0}" wurde nicht gefunden. Die Einstellungen können nicht geladen werden.
+
+
+
+ Incorrect format for TestCaseFilter {0}. Specify the correct format and try again. Note that the incorrect format can lead to no test getting executed.
+ Ungültiges Format für TestCaseFilter {0}. Geben Sie das richtige Format an, und versuchen Sie es erneut. Beachten Sie, dass das falsche Format dazu führen kann, dass kein Test ausgeführt wird.
+
+
+
+ Data collector '{0}' failed to provide initialization information. Error: {1}
+ Vom Datensammler "{0}" wurden keine Initialisierungsinformationen bereitgestellt. Fehler: {1}
+
+
+
+ Data collector '{0}' threw an exception during type loading, construction, or initialization: {1}.
+ Der Datensammler "{0}" hat beim Laden, bei der Konstruktion oder bei der Initialisierung des Typs eine Ausnahme ausgelöst: {1}.
+
+
+
+ Could not find data collector '{0}'
+ Datensammler "{0}" wurde nicht gefunden
+
+
+
+ The data collector '{0}' requested environment variable '{1}' with value '{2}' to be set in test execution environment, but another data collector '{3}' has already requested same environment variable with different value '{4}'.
+ Der Datensammler "{0}" hat das Festlegen der Umgebungsvariablen "{1}" mit dem Wert "{2}" in der Testausführungsumgebung angefordert, ein anderer Datensammler "{3}" hat jedoch die gleiche Umgebungsvariable mit dem anderen Wert "{4}" angefordert.
+
+
+
+ There are multiple configurations that have data collector FriendlyName as '{0}'. Duplicate configurations will be ignored in the test run.
+ Es gibt mehrere Konfigurationen mit dem Datensammler-FriendlyName "{0}". Doppelte Konfigurationen werden beim Testlauf ignoriert.
+
+
+
+ Data collector caught an exception of type '{0}': '{1}'. More details: {2}.
+ Der Datensammler hat eine Ausnahme vom Typ "{0}" aufgefangen: "{1}". Weitere Informationen: {2}.
+
+
+
+ Types deriving from the data collection context cannot be used for sending data and messages. The DataCollectionContext used for sending data and messages must come from one of the events raised to the data collector.
+ Typen, die vom Datensammlungskontext abgeleitet werden, können nicht zum Senden von Daten und Meldungen verwendet werden. Der DataCollectionContext für das Senden von Daten und Meldungen muss aus einem der Ereignisse stammen, die für den Datensammler ausgelöst wurden.
+
+
+
+ The Test Logger URI '{0}' is not valid. The Test Logger will be ignored.
+ Der Testprotokollierungs-URI "{0}" ist ungültig. Die Testprotokollierung wird ignoriert.
+
+
+
+ Failed to find the list of installed unit test extensions. Reason: {0}
+ Die Liste installierter Komponententesterweiterungen wurde nicht gefunden. Ursache: {0}
+
+
+
+ This option works only with vstest.console.exe installed as part of Visual Studio.
+ Diese Option funktioniert nur, wenn "vstest.console.exe" als Teil von Visual Studio installiert wurde.
+
+
+
+ An error occurred while creating Fast filter.
+ Fehler beim Erstellen eines Schnellfilters.
+
+
+
+ Cancelling the operation as requested.
+ Der Vorgang wird gemäß Anforderung abgebrochen.
+
+
+
+ Unable to find a datacollector with friendly name '{0}'.
+ datacollector mit dem Anzeigenamen "{0}" wurde nicht gefunden.
+
+
+
+ Failed to load extensions from file '{0}'. Please use /diag for more information.
+ Fehler beim Laden von Erweiterungen aus der Datei "{0}". Verwenden Sie "/diag", um weitere Informationen zu erhalten.
+
+
+
+ {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges. For more information, please look at the error message:
+ {0} Beim Erstellen des Ordners "TestResults" am angegebenen Speicherort wurde der Zugriff verweigert. Sie erhalten diese Ausnahme, weil Sie "vstest.console.exe" von einem Ordner aus ausführen, für den Schreibzugriff erforderlich ist. So beheben Sie das Problem: Führen Sie "vstest.console.exe" in einem Ordner aus, für den Sie Schreibberechtigungen besitzen. Weitere Informationen finden Sie in der Fehlermeldung:
+
+
+
+ Inner exception:
+ Innere Ausnahme:
+
+
+
+ Stack trace:
+ Stapelüberwachung:
+
+
+
+ <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> is not supported for sources test run.
+ <ForceOneTestAtTimePerTestHost>TRUE</ForceOneTestAtTimePerTestHost> wird für den Testlauf der Quellen nicht unterstützt.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.es.xlf b/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.es.xlf
index eacb932660..c9f07356ae 100644
--- a/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.es.xlf
+++ b/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.es.xlf
@@ -1,202 +1,202 @@
-
-
-
-
-
- Data collection : {0}
- Recopilación de datos: {0}
-
-
-
- Data collector '{0}' message: {1}.
- Mensaje del recopilador de datos "{0}": {1}.
-
-
-
- Duplicate test extension URI '{0}'. Ignoring the duplicate extension.
- URI de extensión de pruebas duplicado ({0}). Se omitirá la extensión duplicada.
-
-
-
- Duplicate settings provider named '{0}'. Ignoring the duplicate provider.
- Proveedor de configuración duplicado con el nombre '{0}'. Se omitirá el proveedor duplicado.
-
-
-
- Duplicate run settings section named '{0}' found. Ignoring the duplicate settings.
- Sección de parámetros de ejecución duplicada con el nombre "{0}". Se omitirán los parámetros duplicados.
-
-
-
- Error: Empty parenthesis ( )
- Error: Paréntesis vacío ( )
-
-
-
- Error: Invalid Condition '{0}'
- Error: Condición '{0}' no válida
-
-
-
- Test Extension has an invalid URI '{0}': {1}
- La extensión de pruebas tiene un URI no válido ({0}): {1}
-
-
-
- Error: Invalid operator '{0}'
- Error: Operador no válido ({0})
-
-
-
- Exception occurred while initializing logger with {0}: '{1}'. The logger will not be used. Exception: {2}
- Se produjo una excepción al inicializar el registrador con {0}: "{1}". No se usará el registrador. Excepción: {2}
-
-
-
- Could not find a test logger with AssemblyQualifiedName, URI or FriendlyName '{0}'.
- No se encuentra ningún registrador de pruebas con AssemblyQualifiedName, URI o FriendlyName "{0}".
-
-
-
- Error: Missing ')'
- Error: Falta ')'
-
-
-
- Error: Missing '('
- Error: Falta '('
-
-
-
- Error: Missing operand
- Error: Falta un operando
-
-
-
- Missing Operator '|' or '&'
- Falta el operador "|" o "&"
-
-
-
- The Run Settings have already been loaded.
- Los parámetros de ejecución ya se han cargado.
-
-
-
- An error occurred while loading the run settings. Error: {0}
- Error al cargar los parámetros de ejecución. Error: {0}
-
-
-
- Invalid settings node specified. The name property of the settings node must be non-empty.
- Se especificó un nodo de configuración no válido. La propiedad de nombre del nodo de configuración no debe estar vacía.
-
-
-
- An error occurred while initializing the settings provider named '{0}'. Error: {1}
- Error al inicializar el proveedor de configuración '{0}'. Error: {1}
-
-
-
- Settings Provider named '{0}' was not found. The settings can not be loaded.
- No se encuentra el proveedor de configuración '{0}'. No se puede cargar la configuración.
-
-
-
- Incorrect format for TestCaseFilter {0}. Specify the correct format and try again. Note that the incorrect format can lead to no test getting executed.
- Formato incorrecto de TestCaseFilter {0}. Especifique el formato correcto y vuelva a intentarlo. Tenga en cuenta que un formato incorrecto puede dar lugar a que no se ejecute ninguna prueba.
-
-
-
- Data collector '{0}' failed to provide initialization information. Error: {1}
- El recopilador de datos "{0}" no pudo proporcionar información de inicialización. Error: {1}
-
-
-
- Data collector '{0}' threw an exception during type loading, construction, or initialization: {1}.
- El recopilador de datos "{0}" produjo una excepción durante la carga, creación o inicialización del tipo: {1}.
-
-
-
- Could not find data collector '{0}'
- No se pudo encontrar el recopilador de datos "{0}"
-
-
-
- The data collector '{0}' requested environment variable '{1}' with value '{2}' to be set in test execution environment, but another data collector '{3}' has already requested same environment variable with different value '{4}'.
- El recopilador de datos "{0}" solicitó que la variable de entorno "{1}" con el valor "{2}" se estableciera en el entorno de ejecución de pruebas, pero otro recopilador de datos "{3}" ya ha solicitado la misma variable de entorno con otro valor "{4}".
-
-
-
- There are multiple configurations that have data collector FriendlyName as '{0}'. Duplicate configurations will be ignored in the test run.
- Hay varias configuraciones que tienen el nombre descriptivo del recopilador de datos "{0}". Se omitirán las configuraciones duplicadas en la serie de pruebas.
-
-
-
- Data collector caught an exception of type '{0}': '{1}'. More details: {2}.
- El recopilador de datos detectó una excepción de tipo "{0}": "{1}". Más detalles: {2}.
-
-
-
- Types deriving from the data collection context cannot be used for sending data and messages. The DataCollectionContext used for sending data and messages must come from one of the events raised to the data collector.
- Los tipos derivados del contexto de recolección de datos no se pueden usar para enviar datos y mensajes. El elemento DataCollectionContext usado para enviar datos y mensajes debe proceder de alguno de los eventos generados para el recolector de datos.
-
-
-
- The Test Logger URI '{0}' is not valid. The Test Logger will be ignored.
- El URI de registrador de pruebas '{0}' no es válido. Se omitirá el registrador de pruebas.
-
-
-
- Failed to find the list of installed unit test extensions. Reason: {0}
- No se pudo encontrar la lista de extensiones de prueba unitaria instaladas. Motivo: {0}
-
-
-
- This option works only with vstest.console.exe installed as part of Visual Studio.
- Esta opción funciona solo con vstest.console.exe instalado como parte de Visual Studio.
-
-
-
- An error occurred while creating Fast filter.
- Error al crear el filtro rápido.
-
-
-
- Cancelling the operation as requested.
- La operación se cancelará como se ha solicitado.
-
-
-
- Unable to find a datacollector with friendly name '{0}'.
- No se encuentra ningún objeto datacollector con el nombre descriptivo "{0}".
-
-
-
- Failed to load extensions from file '{0}'. Please use /diag for more information.
- No se pudieron cargar las extensiones del archivo "{0}". Use /diag para obtener más información.
-
-
-
- {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges. For more information, please look at the error message:
- {0} Se denegó el acceso al intentar crear la carpeta "TestResults" en la ubicación mencionada. Está recibiendo esta excepción porque está ejecutando vstest.console.exe desde una carpeta que requiere acceso de escritura. Para solucionar el problema: ejecute vstest.console.exe desde una carpeta en la que tenga privilegios de escritura. Para obtener más información, consulte el mensaje de error:
-
-
-
- Inner exception:
- Excepción interna:
-
-
-
- Stack trace:
- Seguimiento de la pila:
-
-
-
- <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> is not supported for sources test run.
- <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> no se admite para la serie de pruebas de orígenes.
-
-
-
-
-
+
+
+
+
+
+ Data collection : {0}
+ Recopilación de datos: {0}
+
+
+
+ Data collector '{0}' message: {1}.
+ Mensaje del recopilador de datos "{0}": {1}.
+
+
+
+ Duplicate test extension URI '{0}'. Ignoring the duplicate extension.
+ URI de extensión de pruebas duplicado ({0}). Se omitirá la extensión duplicada.
+
+
+
+ Duplicate settings provider named '{0}'. Ignoring the duplicate provider.
+ Proveedor de configuración duplicado con el nombre '{0}'. Se omitirá el proveedor duplicado.
+
+
+
+ Duplicate run settings section named '{0}' found. Ignoring the duplicate settings.
+ Sección de parámetros de ejecución duplicada con el nombre "{0}". Se omitirán los parámetros duplicados.
+
+
+
+ Error: Empty parenthesis ( )
+ Error: Paréntesis vacío ( )
+
+
+
+ Error: Invalid Condition '{0}'
+ Error: Condición '{0}' no válida
+
+
+
+ Test Extension has an invalid URI '{0}': {1}
+ La extensión de pruebas tiene un URI no válido ({0}): {1}
+
+
+
+ Error: Invalid operator '{0}'
+ Error: Operador no válido ({0})
+
+
+
+ Exception occurred while initializing logger with {0}: '{1}'. The logger will not be used. Exception: {2}
+ Se produjo una excepción al inicializar el registrador con {0}: "{1}". No se usará el registrador. Excepción: {2}
+
+
+
+ Could not find a test logger with AssemblyQualifiedName, URI or FriendlyName '{0}'.
+ No se encuentra ningún registrador de pruebas con AssemblyQualifiedName, URI o FriendlyName "{0}".
+
+
+
+ Error: Missing ')'
+ Error: Falta ')'
+
+
+
+ Error: Missing '('
+ Error: Falta '('
+
+
+
+ Error: Missing operand
+ Error: Falta un operando
+
+
+
+ Missing Operator '|' or '&'
+ Falta el operador "|" o "&"
+
+
+
+ The Run Settings have already been loaded.
+ Los parámetros de ejecución ya se han cargado.
+
+
+
+ An error occurred while loading the run settings. Error: {0}
+ Error al cargar los parámetros de ejecución. Error: {0}
+
+
+
+ Invalid settings node specified. The name property of the settings node must be non-empty.
+ Se especificó un nodo de configuración no válido. La propiedad de nombre del nodo de configuración no debe estar vacía.
+
+
+
+ An error occurred while initializing the settings provider named '{0}'. Error: {1}
+ Error al inicializar el proveedor de configuración '{0}'. Error: {1}
+
+
+
+ Settings Provider named '{0}' was not found. The settings can not be loaded.
+ No se encuentra el proveedor de configuración '{0}'. No se puede cargar la configuración.
+
+
+
+ Incorrect format for TestCaseFilter {0}. Specify the correct format and try again. Note that the incorrect format can lead to no test getting executed.
+ Formato incorrecto de TestCaseFilter {0}. Especifique el formato correcto y vuelva a intentarlo. Tenga en cuenta que un formato incorrecto puede dar lugar a que no se ejecute ninguna prueba.
+
+
+
+ Data collector '{0}' failed to provide initialization information. Error: {1}
+ El recopilador de datos "{0}" no pudo proporcionar información de inicialización. Error: {1}
+
+
+
+ Data collector '{0}' threw an exception during type loading, construction, or initialization: {1}.
+ El recopilador de datos "{0}" produjo una excepción durante la carga, creación o inicialización del tipo: {1}.
+
+
+
+ Could not find data collector '{0}'
+ No se pudo encontrar el recopilador de datos "{0}"
+
+
+
+ The data collector '{0}' requested environment variable '{1}' with value '{2}' to be set in test execution environment, but another data collector '{3}' has already requested same environment variable with different value '{4}'.
+ El recopilador de datos "{0}" solicitó que la variable de entorno "{1}" con el valor "{2}" se estableciera en el entorno de ejecución de pruebas, pero otro recopilador de datos "{3}" ya ha solicitado la misma variable de entorno con otro valor "{4}".
+
+
+
+ There are multiple configurations that have data collector FriendlyName as '{0}'. Duplicate configurations will be ignored in the test run.
+ Hay varias configuraciones que tienen el nombre descriptivo del recopilador de datos "{0}". Se omitirán las configuraciones duplicadas en la serie de pruebas.
+
+
+
+ Data collector caught an exception of type '{0}': '{1}'. More details: {2}.
+ El recopilador de datos detectó una excepción de tipo "{0}": "{1}". Más detalles: {2}.
+
+
+
+ Types deriving from the data collection context cannot be used for sending data and messages. The DataCollectionContext used for sending data and messages must come from one of the events raised to the data collector.
+ Los tipos derivados del contexto de recolección de datos no se pueden usar para enviar datos y mensajes. El elemento DataCollectionContext usado para enviar datos y mensajes debe proceder de alguno de los eventos generados para el recolector de datos.
+
+
+
+ The Test Logger URI '{0}' is not valid. The Test Logger will be ignored.
+ El URI de registrador de pruebas '{0}' no es válido. Se omitirá el registrador de pruebas.
+
+
+
+ Failed to find the list of installed unit test extensions. Reason: {0}
+ No se pudo encontrar la lista de extensiones de prueba unitaria instaladas. Motivo: {0}
+
+
+
+ This option works only with vstest.console.exe installed as part of Visual Studio.
+ Esta opción funciona solo con vstest.console.exe instalado como parte de Visual Studio.
+
+
+
+ An error occurred while creating Fast filter.
+ Error al crear el filtro rápido.
+
+
+
+ Cancelling the operation as requested.
+ La operación se cancelará como se ha solicitado.
+
+
+
+ Unable to find a datacollector with friendly name '{0}'.
+ No se encuentra ningún objeto datacollector con el nombre descriptivo "{0}".
+
+
+
+ Failed to load extensions from file '{0}'. Please use /diag for more information.
+ No se pudieron cargar las extensiones del archivo "{0}". Use /diag para obtener más información.
+
+
+
+ {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges. For more information, please look at the error message:
+ {0} Se denegó el acceso al intentar crear la carpeta "TestResults" en la ubicación mencionada. Está recibiendo esta excepción porque está ejecutando vstest.console.exe desde una carpeta que requiere acceso de escritura. Para solucionar el problema: ejecute vstest.console.exe desde una carpeta en la que tenga privilegios de escritura. Para obtener más información, consulte el mensaje de error:
+
+
+
+ Inner exception:
+ Excepción interna:
+
+
+
+ Stack trace:
+ Seguimiento de la pila:
+
+
+
+ <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> is not supported for sources test run.
+ <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> no se admite para la serie de pruebas de orígenes.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.fr.xlf b/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.fr.xlf
index 32167182ee..11ba039130 100644
--- a/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.fr.xlf
+++ b/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.fr.xlf
@@ -1,202 +1,202 @@
-
-
-
-
-
- Data collection : {0}
- Collecte de données : {0}
-
-
-
- Data collector '{0}' message: {1}.
- Message du collecteur de données '{0}' : {1}.
-
-
-
- Duplicate test extension URI '{0}'. Ignoring the duplicate extension.
- L'URI d'extension de test '{0}' est dupliquée. L'extension dupliquée est ignorée.
-
-
-
- Duplicate settings provider named '{0}'. Ignoring the duplicate provider.
- Le fournisseur de paramètres nommé '{0}' est dupliqué. Le fournisseur dupliqué est ignoré.
-
-
-
- Duplicate run settings section named '{0}' found. Ignoring the duplicate settings.
- La section de paramètres d'exécution nommée '{0}' est dupliquée. Les paramètres dupliqués sont ignorés.
-
-
-
- Error: Empty parenthesis ( )
- Erreur : parenthèses vides ( )
-
-
-
- Error: Invalid Condition '{0}'
- Erreur : condition non valide '{0}'
-
-
-
- Test Extension has an invalid URI '{0}': {1}
- L'URI d'extension de test est non valide '{0}' : {1}
-
-
-
- Error: Invalid operator '{0}'
- Erreur : opérateur non valide '{0}'
-
-
-
- Exception occurred while initializing logger with {0}: '{1}'. The logger will not be used. Exception: {2}
- Une exception s'est produite durant l'initialisation de l'enregistreur d'événements avec {0} : '{1}'. L'enregistreur d'événements ne sera pas utilisé. Exception : {2}
-
-
-
- Could not find a test logger with AssemblyQualifiedName, URI or FriendlyName '{0}'.
- Impossible de localiser un enregistreur d'événements de test ayant pour AssemblyQualifiedName, URI ou FriendlyName '{0}'.
-
-
-
- Error: Missing ')'
- Erreur : ')' manquante
-
-
-
- Error: Missing '('
- Erreur : '(' manquante
-
-
-
- Error: Missing operand
- Erreur : opérande manquant
-
-
-
- Missing Operator '|' or '&'
- Opérateur manquant '|' ou '&'
-
-
-
- The Run Settings have already been loaded.
- Les paramètres d'exécution ont déjà été chargés.
-
-
-
- An error occurred while loading the run settings. Error: {0}
- Une erreur s'est produite durant le chargement des paramètres d'exécution. Erreur : {0}
-
-
-
- Invalid settings node specified. The name property of the settings node must be non-empty.
- Le nœud de paramètres spécifié est non valide. La propriété name du nœud de paramètres ne doit pas être vide.
-
-
-
- An error occurred while initializing the settings provider named '{0}'. Error: {1}
- Une erreur s'est produite durant l'initialisation du fournisseur de paramètres nommé '{0}'. Erreur : {1}
-
-
-
- Settings Provider named '{0}' was not found. The settings can not be loaded.
- Le fournisseur de paramètres nommé '{0}' est introuvable. Impossible de charger les paramètres.
-
-
-
- Incorrect format for TestCaseFilter {0}. Specify the correct format and try again. Note that the incorrect format can lead to no test getting executed.
- Format incorrect pour le TestCaseFilter {0}. Spécifiez le format approprié, puis réessayez. Notez que si le format est incorrect, aucun test n'est exécuté.
-
-
-
- Data collector '{0}' failed to provide initialization information. Error: {1}
- Le collecteur de données '{0}' n'a pas pu fournir les informations d'initialisation. Erreur : {1}
-
-
-
- Data collector '{0}' threw an exception during type loading, construction, or initialization: {1}.
- Le collecteur de données '{0}' a levé une exception pendant le chargement, la construction ou l'initialisation du type : {1}.
-
-
-
- Could not find data collector '{0}'
- Collecteur de données '{0}' introuvable
-
-
-
- The data collector '{0}' requested environment variable '{1}' with value '{2}' to be set in test execution environment, but another data collector '{3}' has already requested same environment variable with different value '{4}'.
- Le collecteur de données '{0}' exige que la variable d'environnement '{1}' avec la valeur '{2}' soit définie dans un environnement d'exécution de test, mais un autre collecteur de données '{3}' a déjà exigé la même variable d'environnement avec une autre valeur '{4}'.
-
-
-
- There are multiple configurations that have data collector FriendlyName as '{0}'. Duplicate configurations will be ignored in the test run.
- Plusieurs configurations ont comme FriendlyName de collecteur de données '{0}'. Les configurations dupliquées seront ignorées dans la série de tests.
-
-
-
- Data collector caught an exception of type '{0}': '{1}'. More details: {2}.
- Le collecteur de données a intercepté une exception de type '{0}' : '{1}'. Plus de détails : {2}.
-
-
-
- Types deriving from the data collection context cannot be used for sending data and messages. The DataCollectionContext used for sending data and messages must come from one of the events raised to the data collector.
- Impossible d'utiliser les types qui dérivent du contexte de collecte de données pour envoyer des données et des messages. La valeur DataCollectionContext utilisée pour envoyer des données et des messages doit provenir de l'un des événements déclenchés par le collecteur de données.
-
-
-
- The Test Logger URI '{0}' is not valid. The Test Logger will be ignored.
- L'URI de l'enregistreur d'événements de tests '{0}' est non valide. L'enregistreur d'événements de tests va être ignoré.
-
-
-
- Failed to find the list of installed unit test extensions. Reason: {0}
- La liste des extensions de test unitaire installées est introuvable. Raison : {0}
-
-
-
- This option works only with vstest.console.exe installed as part of Visual Studio.
- Cette option fonctionne uniquement si vstest.console.exe est installé dans le cadre de Visual Studio.
-
-
-
- An error occurred while creating Fast filter.
- Une erreur s'est produite durant la création du filtre rapide.
-
-
-
- Cancelling the operation as requested.
- Annulation de l'opération, comme demandé.
-
-
-
- Unable to find a datacollector with friendly name '{0}'.
- Le datacollector ayant le nom convivial '{0}' est introuvable.
-
-
-
- Failed to load extensions from file '{0}'. Please use /diag for more information.
- Le chargement des extensions à partir du fichier '{0}' a échoué. Pour plus d'informations, utilisez /diag.
-
-
-
- {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges. For more information, please look at the error message:
- {0} Accès refusé durant la tentative de création du dossier "TestResults" à l'emplacement indiqué. Vous obtenez cette exception, car vous exécutez vstest.console.exe à partir d'un dossier qui nécessite un accès en écriture. Pour résoudre le problème, exécutez vstest.console.exe à partir d'un dossier sur lequel vous disposez de privilèges d'accès en écriture. Pour plus d'informations, consultez le message d'erreur :
-
-
-
- Inner exception:
- Exception interne :
-
-
-
- Stack trace:
- Arborescence des appels de procédure :
-
-
-
- <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> is not supported for sources test run.
- <ForceOneTestAtTimePerTestHost></ForceOneTestAtTimePerTestHost> true n’est pas prise en charge pour la série de tests sources.
-
-
-
-
-
+
+
+
+
+
+ Data collection : {0}
+ Collecte de données : {0}
+
+
+
+ Data collector '{0}' message: {1}.
+ Message du collecteur de données '{0}' : {1}.
+
+
+
+ Duplicate test extension URI '{0}'. Ignoring the duplicate extension.
+ L'URI d'extension de test '{0}' est dupliquée. L'extension dupliquée est ignorée.
+
+
+
+ Duplicate settings provider named '{0}'. Ignoring the duplicate provider.
+ Le fournisseur de paramètres nommé '{0}' est dupliqué. Le fournisseur dupliqué est ignoré.
+
+
+
+ Duplicate run settings section named '{0}' found. Ignoring the duplicate settings.
+ La section de paramètres d'exécution nommée '{0}' est dupliquée. Les paramètres dupliqués sont ignorés.
+
+
+
+ Error: Empty parenthesis ( )
+ Erreur : parenthèses vides ( )
+
+
+
+ Error: Invalid Condition '{0}'
+ Erreur : condition non valide '{0}'
+
+
+
+ Test Extension has an invalid URI '{0}': {1}
+ L'URI d'extension de test est non valide '{0}' : {1}
+
+
+
+ Error: Invalid operator '{0}'
+ Erreur : opérateur non valide '{0}'
+
+
+
+ Exception occurred while initializing logger with {0}: '{1}'. The logger will not be used. Exception: {2}
+ Une exception s'est produite durant l'initialisation de l'enregistreur d'événements avec {0} : '{1}'. L'enregistreur d'événements ne sera pas utilisé. Exception : {2}
+
+
+
+ Could not find a test logger with AssemblyQualifiedName, URI or FriendlyName '{0}'.
+ Impossible de localiser un enregistreur d'événements de test ayant pour AssemblyQualifiedName, URI ou FriendlyName '{0}'.
+
+
+
+ Error: Missing ')'
+ Erreur : ')' manquante
+
+
+
+ Error: Missing '('
+ Erreur : '(' manquante
+
+
+
+ Error: Missing operand
+ Erreur : opérande manquant
+
+
+
+ Missing Operator '|' or '&'
+ Opérateur manquant '|' ou '&'
+
+
+
+ The Run Settings have already been loaded.
+ Les paramètres d'exécution ont déjà été chargés.
+
+
+
+ An error occurred while loading the run settings. Error: {0}
+ Une erreur s'est produite durant le chargement des paramètres d'exécution. Erreur : {0}
+
+
+
+ Invalid settings node specified. The name property of the settings node must be non-empty.
+ Le nœud de paramètres spécifié est non valide. La propriété name du nœud de paramètres ne doit pas être vide.
+
+
+
+ An error occurred while initializing the settings provider named '{0}'. Error: {1}
+ Une erreur s'est produite durant l'initialisation du fournisseur de paramètres nommé '{0}'. Erreur : {1}
+
+
+
+ Settings Provider named '{0}' was not found. The settings can not be loaded.
+ Le fournisseur de paramètres nommé '{0}' est introuvable. Impossible de charger les paramètres.
+
+
+
+ Incorrect format for TestCaseFilter {0}. Specify the correct format and try again. Note that the incorrect format can lead to no test getting executed.
+ Format incorrect pour le TestCaseFilter {0}. Spécifiez le format approprié, puis réessayez. Notez que si le format est incorrect, aucun test n'est exécuté.
+
+
+
+ Data collector '{0}' failed to provide initialization information. Error: {1}
+ Le collecteur de données '{0}' n'a pas pu fournir les informations d'initialisation. Erreur : {1}
+
+
+
+ Data collector '{0}' threw an exception during type loading, construction, or initialization: {1}.
+ Le collecteur de données '{0}' a levé une exception pendant le chargement, la construction ou l'initialisation du type : {1}.
+
+
+
+ Could not find data collector '{0}'
+ Collecteur de données '{0}' introuvable
+
+
+
+ The data collector '{0}' requested environment variable '{1}' with value '{2}' to be set in test execution environment, but another data collector '{3}' has already requested same environment variable with different value '{4}'.
+ Le collecteur de données '{0}' exige que la variable d'environnement '{1}' avec la valeur '{2}' soit définie dans un environnement d'exécution de test, mais un autre collecteur de données '{3}' a déjà exigé la même variable d'environnement avec une autre valeur '{4}'.
+
+
+
+ There are multiple configurations that have data collector FriendlyName as '{0}'. Duplicate configurations will be ignored in the test run.
+ Plusieurs configurations ont comme FriendlyName de collecteur de données '{0}'. Les configurations dupliquées seront ignorées dans la série de tests.
+
+
+
+ Data collector caught an exception of type '{0}': '{1}'. More details: {2}.
+ Le collecteur de données a intercepté une exception de type '{0}' : '{1}'. Plus de détails : {2}.
+
+
+
+ Types deriving from the data collection context cannot be used for sending data and messages. The DataCollectionContext used for sending data and messages must come from one of the events raised to the data collector.
+ Impossible d'utiliser les types qui dérivent du contexte de collecte de données pour envoyer des données et des messages. La valeur DataCollectionContext utilisée pour envoyer des données et des messages doit provenir de l'un des événements déclenchés par le collecteur de données.
+
+
+
+ The Test Logger URI '{0}' is not valid. The Test Logger will be ignored.
+ L'URI de l'enregistreur d'événements de tests '{0}' est non valide. L'enregistreur d'événements de tests va être ignoré.
+
+
+
+ Failed to find the list of installed unit test extensions. Reason: {0}
+ La liste des extensions de test unitaire installées est introuvable. Raison : {0}
+
+
+
+ This option works only with vstest.console.exe installed as part of Visual Studio.
+ Cette option fonctionne uniquement si vstest.console.exe est installé dans le cadre de Visual Studio.
+
+
+
+ An error occurred while creating Fast filter.
+ Une erreur s'est produite durant la création du filtre rapide.
+
+
+
+ Cancelling the operation as requested.
+ Annulation de l'opération, comme demandé.
+
+
+
+ Unable to find a datacollector with friendly name '{0}'.
+ Le datacollector ayant le nom convivial '{0}' est introuvable.
+
+
+
+ Failed to load extensions from file '{0}'. Please use /diag for more information.
+ Le chargement des extensions à partir du fichier '{0}' a échoué. Pour plus d'informations, utilisez /diag.
+
+
+
+ {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges. For more information, please look at the error message:
+ {0} Accès refusé durant la tentative de création du dossier "TestResults" à l'emplacement indiqué. Vous obtenez cette exception, car vous exécutez vstest.console.exe à partir d'un dossier qui nécessite un accès en écriture. Pour résoudre le problème, exécutez vstest.console.exe à partir d'un dossier sur lequel vous disposez de privilèges d'accès en écriture. Pour plus d'informations, consultez le message d'erreur :
+
+
+
+ Inner exception:
+ Exception interne :
+
+
+
+ Stack trace:
+ Arborescence des appels de procédure :
+
+
+
+ <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> is not supported for sources test run.
+ <ForceOneTestAtTimePerTestHost></ForceOneTestAtTimePerTestHost> true n’est pas prise en charge pour la série de tests sources.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.it.xlf b/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.it.xlf
index 072128f87b..6aa82f4ec1 100644
--- a/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.it.xlf
+++ b/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.it.xlf
@@ -1,202 +1,202 @@
-
-
-
-
-
- Data collection : {0}
- Raccolta dei dati: {0}
-
-
-
- Data collector '{0}' message: {1}.
- Messaggio '{0}' dell'agente di raccolta dati: {1}.
-
-
-
- Duplicate test extension URI '{0}'. Ignoring the duplicate extension.
- L'URI dell'estensione di test '{0}' è duplicato. L'estensione duplicata verrà ignorata.
-
-
-
- Duplicate settings provider named '{0}'. Ignoring the duplicate provider.
- Il provider di impostazioni denominato '{0}' è duplicato. Il provider duplicato verrà ignorato.
-
-
-
- Duplicate run settings section named '{0}' found. Ignoring the duplicate settings.
- La sezione delle impostazioni esecuzione test denominata '{0}' è duplicata. Le impostazioni duplicate verranno ignorate.
-
-
-
- Error: Empty parenthesis ( )
- Errore: parentesi vuote ( )
-
-
-
- Error: Invalid Condition '{0}'
- Errore: condizione non valida '{0}'
-
-
-
- Test Extension has an invalid URI '{0}': {1}
- L'URI '{0}' dell'estensione di test non è valido: {1}
-
-
-
- Error: Invalid operator '{0}'
- Errore: operatore non valido '{0}'
-
-
-
- Exception occurred while initializing logger with {0}: '{1}'. The logger will not be used. Exception: {2}
- Si è verificata un'eccezione durante l'inizializzazione del logger con {0}: '{1}'. Il logger non verrà usato. Eccezione: {2}
-
-
-
- Could not find a test logger with AssemblyQualifiedName, URI or FriendlyName '{0}'.
- Non è stato trovato alcun logger di test con AssemblyQualifiedName, URI o FriendlyName '{0}'.
-
-
-
- Error: Missing ')'
- Errore: manca ')'
-
-
-
- Error: Missing '('
- Errore: manca '('
-
-
-
- Error: Missing operand
- Errore: manca l'operando
-
-
-
- Missing Operator '|' or '&'
- Manca l'operatore '|' o '&'
-
-
-
- The Run Settings have already been loaded.
- Le impostazioni esecuzione test sono già state caricate.
-
-
-
- An error occurred while loading the run settings. Error: {0}
- Errore durante il caricamento delle impostazioni esecuzione test. Errore: {0}
-
-
-
- Invalid settings node specified. The name property of the settings node must be non-empty.
- Il nodo impostazioni specificato non è valido. La proprietà del nome del nodo impostazioni non deve essere vuota.
-
-
-
- An error occurred while initializing the settings provider named '{0}'. Error: {1}
- Si è verificato un errore durante l'inizializzazione del provider di impostazioni denominato '{0}'. Errore: {1}
-
-
-
- Settings Provider named '{0}' was not found. The settings can not be loaded.
- Il provider di impostazioni denominato '{0}' non è stato trovato. Non è possibile caricare le impostazioni.
-
-
-
- Incorrect format for TestCaseFilter {0}. Specify the correct format and try again. Note that the incorrect format can lead to no test getting executed.
- Il formato per TestCaseFilter {0} non è corretto. Specificare il formato corretto e riprovare. Se il formato non è corretto, potrebbe non essere eseguito alcun test.
-
-
-
- Data collector '{0}' failed to provide initialization information. Error: {1}
- L'agente di raccolta dati '{0}' non ha fornito le informazioni di inizializzazione. Errore: {1}
-
-
-
- Data collector '{0}' threw an exception during type loading, construction, or initialization: {1}.
- L'agente di raccolta dati '{0}' ha generato un'eccezione durante la costruzione, l'inizializzazione o il caricamento dei tipi: {1}.
-
-
-
- Could not find data collector '{0}'
- L'agente di raccolta dati '{0}' non è stato trovato
-
-
-
- The data collector '{0}' requested environment variable '{1}' with value '{2}' to be set in test execution environment, but another data collector '{3}' has already requested same environment variable with different value '{4}'.
- L'agente di raccolta dati '{0}' ha richiesto che la variabile di ambiente '{1}' con valore '{2}' fosse impostata nell'ambiente di esecuzione dei test, ma un altro agente di raccolta dati '{3}' ha già richiesto la stessa variabile di ambiente con un valore diverso '{4}'.
-
-
-
- There are multiple configurations that have data collector FriendlyName as '{0}'. Duplicate configurations will be ignored in the test run.
- Sono presenti più configurazioni in cui il nome descrittivo dell'agente di raccolta dati è '{0}'. Le configurazioni duplicate verranno ignorate nell'esecuzione dei test.
-
-
-
- Data collector caught an exception of type '{0}': '{1}'. More details: {2}.
- L'agente di raccolta dati ha rilevato un'eccezione di tipo '{0}': '{1}'. Altri dettagli: {2}.
-
-
-
- Types deriving from the data collection context cannot be used for sending data and messages. The DataCollectionContext used for sending data and messages must come from one of the events raised to the data collector.
- Non è possibile usare i tipi che derivano da DataCollectionContext per inviare dati e messaggi. L'elemento DataCollectionContext usato per inviare dati e messaggi deve provenire da uno degli eventi generati per l'agente di raccolta dati.
-
-
-
- The Test Logger URI '{0}' is not valid. The Test Logger will be ignored.
- L'URI del logger di test '{0}' non è valido. Il logger di test verrà ignorato.
-
-
-
- Failed to find the list of installed unit test extensions. Reason: {0}
- L'elenco delle estensioni degli unit test installate non è stato trovato. Motivo: {0}
-
-
-
- This option works only with vstest.console.exe installed as part of Visual Studio.
- Questa opzione funziona solo se vstest.console.exe è installato con Visual Studio.
-
-
-
- An error occurred while creating Fast filter.
- Si è verificato un errore durante la creazione del filtro Fast.
-
-
-
- Cancelling the operation as requested.
- L'operazione verrà annullata come richiesto.
-
-
-
- Unable to find a datacollector with friendly name '{0}'.
- Non è possibile trovare un oggetto datacollector con nome descrittivo '{0}'.
-
-
-
- Failed to load extensions from file '{0}'. Please use /diag for more information.
- Non è stato possibile caricare le estensioni dal file '{0}'. Per altre informazioni, usare /diag.
-
-
-
- {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges. For more information, please look at the error message:
- {0} Accesso negato durante il tentativo di creare la cartella "TestResults" nel percorso indicato. Si riceve questa eccezione perché si esegue vstest.console.exe da una cartella per cui è necessario l'accesso in scrittura. Per risolvere il problema, eseguire vstest.console.exe da una cartella per cui si hanno privilegi di scrittura. Per altre informazioni, vedere il messaggio di errore:
-
-
-
- Inner exception:
- Eccezione interna:
-
-
-
- Stack trace:
- Analisi dello stack:
-
-
-
- <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> is not supported for sources test run.
- <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> non è supportato per l'esecuzione dei test delle origini.
-
-
-
-
-
+
+
+
+
+
+ Data collection : {0}
+ Raccolta dei dati: {0}
+
+
+
+ Data collector '{0}' message: {1}.
+ Messaggio '{0}' dell'agente di raccolta dati: {1}.
+
+
+
+ Duplicate test extension URI '{0}'. Ignoring the duplicate extension.
+ L'URI dell'estensione di test '{0}' è duplicato. L'estensione duplicata verrà ignorata.
+
+
+
+ Duplicate settings provider named '{0}'. Ignoring the duplicate provider.
+ Il provider di impostazioni denominato '{0}' è duplicato. Il provider duplicato verrà ignorato.
+
+
+
+ Duplicate run settings section named '{0}' found. Ignoring the duplicate settings.
+ La sezione delle impostazioni esecuzione test denominata '{0}' è duplicata. Le impostazioni duplicate verranno ignorate.
+
+
+
+ Error: Empty parenthesis ( )
+ Errore: parentesi vuote ( )
+
+
+
+ Error: Invalid Condition '{0}'
+ Errore: condizione non valida '{0}'
+
+
+
+ Test Extension has an invalid URI '{0}': {1}
+ L'URI '{0}' dell'estensione di test non è valido: {1}
+
+
+
+ Error: Invalid operator '{0}'
+ Errore: operatore non valido '{0}'
+
+
+
+ Exception occurred while initializing logger with {0}: '{1}'. The logger will not be used. Exception: {2}
+ Si è verificata un'eccezione durante l'inizializzazione del logger con {0}: '{1}'. Il logger non verrà usato. Eccezione: {2}
+
+
+
+ Could not find a test logger with AssemblyQualifiedName, URI or FriendlyName '{0}'.
+ Non è stato trovato alcun logger di test con AssemblyQualifiedName, URI o FriendlyName '{0}'.
+
+
+
+ Error: Missing ')'
+ Errore: manca ')'
+
+
+
+ Error: Missing '('
+ Errore: manca '('
+
+
+
+ Error: Missing operand
+ Errore: manca l'operando
+
+
+
+ Missing Operator '|' or '&'
+ Manca l'operatore '|' o '&'
+
+
+
+ The Run Settings have already been loaded.
+ Le impostazioni esecuzione test sono già state caricate.
+
+
+
+ An error occurred while loading the run settings. Error: {0}
+ Errore durante il caricamento delle impostazioni esecuzione test. Errore: {0}
+
+
+
+ Invalid settings node specified. The name property of the settings node must be non-empty.
+ Il nodo impostazioni specificato non è valido. La proprietà del nome del nodo impostazioni non deve essere vuota.
+
+
+
+ An error occurred while initializing the settings provider named '{0}'. Error: {1}
+ Si è verificato un errore durante l'inizializzazione del provider di impostazioni denominato '{0}'. Errore: {1}
+
+
+
+ Settings Provider named '{0}' was not found. The settings can not be loaded.
+ Il provider di impostazioni denominato '{0}' non è stato trovato. Non è possibile caricare le impostazioni.
+
+
+
+ Incorrect format for TestCaseFilter {0}. Specify the correct format and try again. Note that the incorrect format can lead to no test getting executed.
+ Il formato per TestCaseFilter {0} non è corretto. Specificare il formato corretto e riprovare. Se il formato non è corretto, potrebbe non essere eseguito alcun test.
+
+
+
+ Data collector '{0}' failed to provide initialization information. Error: {1}
+ L'agente di raccolta dati '{0}' non ha fornito le informazioni di inizializzazione. Errore: {1}
+
+
+
+ Data collector '{0}' threw an exception during type loading, construction, or initialization: {1}.
+ L'agente di raccolta dati '{0}' ha generato un'eccezione durante la costruzione, l'inizializzazione o il caricamento dei tipi: {1}.
+
+
+
+ Could not find data collector '{0}'
+ L'agente di raccolta dati '{0}' non è stato trovato
+
+
+
+ The data collector '{0}' requested environment variable '{1}' with value '{2}' to be set in test execution environment, but another data collector '{3}' has already requested same environment variable with different value '{4}'.
+ L'agente di raccolta dati '{0}' ha richiesto che la variabile di ambiente '{1}' con valore '{2}' fosse impostata nell'ambiente di esecuzione dei test, ma un altro agente di raccolta dati '{3}' ha già richiesto la stessa variabile di ambiente con un valore diverso '{4}'.
+
+
+
+ There are multiple configurations that have data collector FriendlyName as '{0}'. Duplicate configurations will be ignored in the test run.
+ Sono presenti più configurazioni in cui il nome descrittivo dell'agente di raccolta dati è '{0}'. Le configurazioni duplicate verranno ignorate nell'esecuzione dei test.
+
+
+
+ Data collector caught an exception of type '{0}': '{1}'. More details: {2}.
+ L'agente di raccolta dati ha rilevato un'eccezione di tipo '{0}': '{1}'. Altri dettagli: {2}.
+
+
+
+ Types deriving from the data collection context cannot be used for sending data and messages. The DataCollectionContext used for sending data and messages must come from one of the events raised to the data collector.
+ Non è possibile usare i tipi che derivano da DataCollectionContext per inviare dati e messaggi. L'elemento DataCollectionContext usato per inviare dati e messaggi deve provenire da uno degli eventi generati per l'agente di raccolta dati.
+
+
+
+ The Test Logger URI '{0}' is not valid. The Test Logger will be ignored.
+ L'URI del logger di test '{0}' non è valido. Il logger di test verrà ignorato.
+
+
+
+ Failed to find the list of installed unit test extensions. Reason: {0}
+ L'elenco delle estensioni degli unit test installate non è stato trovato. Motivo: {0}
+
+
+
+ This option works only with vstest.console.exe installed as part of Visual Studio.
+ Questa opzione funziona solo se vstest.console.exe è installato con Visual Studio.
+
+
+
+ An error occurred while creating Fast filter.
+ Si è verificato un errore durante la creazione del filtro Fast.
+
+
+
+ Cancelling the operation as requested.
+ L'operazione verrà annullata come richiesto.
+
+
+
+ Unable to find a datacollector with friendly name '{0}'.
+ Non è possibile trovare un oggetto datacollector con nome descrittivo '{0}'.
+
+
+
+ Failed to load extensions from file '{0}'. Please use /diag for more information.
+ Non è stato possibile caricare le estensioni dal file '{0}'. Per altre informazioni, usare /diag.
+
+
+
+ {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges. For more information, please look at the error message:
+ {0} Accesso negato durante il tentativo di creare la cartella "TestResults" nel percorso indicato. Si riceve questa eccezione perché si esegue vstest.console.exe da una cartella per cui è necessario l'accesso in scrittura. Per risolvere il problema, eseguire vstest.console.exe da una cartella per cui si hanno privilegi di scrittura. Per altre informazioni, vedere il messaggio di errore:
+
+
+
+ Inner exception:
+ Eccezione interna:
+
+
+
+ Stack trace:
+ Analisi dello stack:
+
+
+
+ <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> is not supported for sources test run.
+ <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> non è supportato per l'esecuzione dei test delle origini.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.ja.xlf b/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.ja.xlf
index 4a1c054d7a..3a22f8ad08 100644
--- a/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.ja.xlf
+++ b/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.ja.xlf
@@ -1,202 +1,202 @@
-
-
-
-
-
- Data collection : {0}
- データ コレクション : {0}
-
-
-
- Data collector '{0}' message: {1}.
- データ コレクター '{0}' メッセージ: {1}。
-
-
-
- Duplicate test extension URI '{0}'. Ignoring the duplicate extension.
- テスト拡張 URI '{0}' は重複しています。重複する拡張を無視しています。
-
-
-
- Duplicate settings provider named '{0}'. Ignoring the duplicate provider.
- '{0}' という名前の設定プロバイダーが重複しています。重複するプロバイダーを無視しています。
-
-
-
- Duplicate run settings section named '{0}' found. Ignoring the duplicate settings.
- '{0}' という名前の重複した実行設定セクションが見つかりました。重複する設定を無視しています。
-
-
-
- Error: Empty parenthesis ( )
- エラー: かっこ ( ) が空です
-
-
-
- Error: Invalid Condition '{0}'
- エラー: 条件 '{0}' が無効です
-
-
-
- Test Extension has an invalid URI '{0}': {1}
- テスト拡張に無効な URI '{0}' があります: {1}
-
-
-
- Error: Invalid operator '{0}'
- エラー: 演算子 '{0}' が無効です
-
-
-
- Exception occurred while initializing logger with {0}: '{1}'. The logger will not be used. Exception: {2}
- {0}: '{1}' でのロガーの初期化中に例外が発生しました。ロガーは使用されません。例外: {2}
-
-
-
- Could not find a test logger with AssemblyQualifiedName, URI or FriendlyName '{0}'.
- AssemblyQualifiedName、URI または FriendlyName が '{0}' のテスト ロガーは見つかりませんでした。
-
-
-
- Error: Missing ')'
- エラー: ')' がありません
-
-
-
- Error: Missing '('
- エラー: '(' がありません
-
-
-
- Error: Missing operand
- エラー: オペランドがありません
-
-
-
- Missing Operator '|' or '&'
- 演算子 '|' または '&' がありません
-
-
-
- The Run Settings have already been loaded.
- 実行設定は既に読み込まれています。
-
-
-
- An error occurred while loading the run settings. Error: {0}
- 実行設定の読み込み中にエラーが発生しました。エラー: {0}
-
-
-
- Invalid settings node specified. The name property of the settings node must be non-empty.
- 無効な設定ノードが指定されました。設定ノードの名前プロパティを空白にしないようにしてください。
-
-
-
- An error occurred while initializing the settings provider named '{0}'. Error: {1}
- '{0}' という名前の設定プロバイダーを初期化中にエラーが発生しました。エラー: {1}
-
-
-
- Settings Provider named '{0}' was not found. The settings can not be loaded.
- '{0}' という名前の設定プロバイダーが見つかりませんでした。設定を読み込めません。
-
-
-
- Incorrect format for TestCaseFilter {0}. Specify the correct format and try again. Note that the incorrect format can lead to no test getting executed.
- TestCaseFilter {0} の形式が正しくありません。正しい形式を指定してもう一度お試しください。形式が正しくないと、テストが実行されないことがあります。
-
-
-
- Data collector '{0}' failed to provide initialization information. Error: {1}
- データ コレクター '{0}' で初期化情報を表示できませんでした。エラー: {1}
-
-
-
- Data collector '{0}' threw an exception during type loading, construction, or initialization: {1}.
- データ コレクター '{0}' が型の読み込み、作成、または初期化中に例外をスローしました: {1}。
-
-
-
- Could not find data collector '{0}'
- データ コレクター '{0}' が見つかりませんでした
-
-
-
- The data collector '{0}' requested environment variable '{1}' with value '{2}' to be set in test execution environment, but another data collector '{3}' has already requested same environment variable with different value '{4}'.
- データ コレクター '{0}' が値 '{2}' の環境変数 '{1}' をテスト実行時環境で設定するように要求しましたが、別のデータ コレクター '{3}' が既に別の値 '{4}' を持つ同じ環境変数を要求しています。
-
-
-
- There are multiple configurations that have data collector FriendlyName as '{0}'. Duplicate configurations will be ignored in the test run.
- データ コレクターの FriendlyName が '{0}' の構成が複数あります。テストの実行では、重複した構成は無視されます。
-
-
-
- Data collector caught an exception of type '{0}': '{1}'. More details: {2}.
- データ コレクターが型 '{0}' の例外をキャッチしました: '{1}'。詳細: {2}。
-
-
-
- Types deriving from the data collection context cannot be used for sending data and messages. The DataCollectionContext used for sending data and messages must come from one of the events raised to the data collector.
- データ コレクション コンテキストから派生する型をデータおよびメッセージの送信に使用することはできません。データおよびメッセージの送信に使用される DataCollectionContext は、データ コレクターに対して発生したイベントの 1 つからのものである必要があります。
-
-
-
- The Test Logger URI '{0}' is not valid. The Test Logger will be ignored.
- テスト ロガーの URI '{0}' は無効です。テスト ロガーは無視されます。
-
-
-
- Failed to find the list of installed unit test extensions. Reason: {0}
- インストール済みの単体テスト拡張の一覧が見つかりませんでした。理由: {0}
-
-
-
- This option works only with vstest.console.exe installed as part of Visual Studio.
- このオプションは Visual Studio の一部として vstest.console.exe がインストールされている場合のみ使用できます。
-
-
-
- An error occurred while creating Fast filter.
- 高速フィルターを作成中にエラーが発生しました。
-
-
-
- Cancelling the operation as requested.
- 操作のキャンセルが要求されたため、キャンセルしています。
-
-
-
- Unable to find a datacollector with friendly name '{0}'.
- フレンドリ名が '{0}' の datacollector が見つかりません。
-
-
-
- Failed to load extensions from file '{0}'. Please use /diag for more information.
- ファイル '{0}' から拡張機能を読み込めませんでした。詳細な情報を得るには、/diag をご使用ください。
-
-
-
- {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges. For more information, please look at the error message:
- {0} 記載した場所に "TestResults" フォルダーを作成しようとしたときにアクセスが拒否されました。書き込みアクセスを必要とするフォルダーから vstest.console.exe を実行しているため、この例外が発生しています。この問題を解決するには、書き込み権限のあるフォルダーから vstest.console.exe を実行してください。詳細については、次のエラー メッセージをご覧ください。
-
-
-
- Inner exception:
- 内部例外:
-
-
-
- Stack trace:
- スタック トレース:
-
-
-
- <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> is not supported for sources test run.
- <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> は、ソース テストの実行ではサポートされていません。
-
-
-
-
-
+
+
+
+
+
+ Data collection : {0}
+ データ コレクション : {0}
+
+
+
+ Data collector '{0}' message: {1}.
+ データ コレクター '{0}' メッセージ: {1}。
+
+
+
+ Duplicate test extension URI '{0}'. Ignoring the duplicate extension.
+ テスト拡張 URI '{0}' は重複しています。重複する拡張を無視しています。
+
+
+
+ Duplicate settings provider named '{0}'. Ignoring the duplicate provider.
+ '{0}' という名前の設定プロバイダーが重複しています。重複するプロバイダーを無視しています。
+
+
+
+ Duplicate run settings section named '{0}' found. Ignoring the duplicate settings.
+ '{0}' という名前の重複した実行設定セクションが見つかりました。重複する設定を無視しています。
+
+
+
+ Error: Empty parenthesis ( )
+ エラー: かっこ ( ) が空です
+
+
+
+ Error: Invalid Condition '{0}'
+ エラー: 条件 '{0}' が無効です
+
+
+
+ Test Extension has an invalid URI '{0}': {1}
+ テスト拡張に無効な URI '{0}' があります: {1}
+
+
+
+ Error: Invalid operator '{0}'
+ エラー: 演算子 '{0}' が無効です
+
+
+
+ Exception occurred while initializing logger with {0}: '{1}'. The logger will not be used. Exception: {2}
+ {0}: '{1}' でのロガーの初期化中に例外が発生しました。ロガーは使用されません。例外: {2}
+
+
+
+ Could not find a test logger with AssemblyQualifiedName, URI or FriendlyName '{0}'.
+ AssemblyQualifiedName、URI または FriendlyName が '{0}' のテスト ロガーは見つかりませんでした。
+
+
+
+ Error: Missing ')'
+ エラー: ')' がありません
+
+
+
+ Error: Missing '('
+ エラー: '(' がありません
+
+
+
+ Error: Missing operand
+ エラー: オペランドがありません
+
+
+
+ Missing Operator '|' or '&'
+ 演算子 '|' または '&' がありません
+
+
+
+ The Run Settings have already been loaded.
+ 実行設定は既に読み込まれています。
+
+
+
+ An error occurred while loading the run settings. Error: {0}
+ 実行設定の読み込み中にエラーが発生しました。エラー: {0}
+
+
+
+ Invalid settings node specified. The name property of the settings node must be non-empty.
+ 無効な設定ノードが指定されました。設定ノードの名前プロパティを空白にしないようにしてください。
+
+
+
+ An error occurred while initializing the settings provider named '{0}'. Error: {1}
+ '{0}' という名前の設定プロバイダーを初期化中にエラーが発生しました。エラー: {1}
+
+
+
+ Settings Provider named '{0}' was not found. The settings can not be loaded.
+ '{0}' という名前の設定プロバイダーが見つかりませんでした。設定を読み込めません。
+
+
+
+ Incorrect format for TestCaseFilter {0}. Specify the correct format and try again. Note that the incorrect format can lead to no test getting executed.
+ TestCaseFilter {0} の形式が正しくありません。正しい形式を指定してもう一度お試しください。形式が正しくないと、テストが実行されないことがあります。
+
+
+
+ Data collector '{0}' failed to provide initialization information. Error: {1}
+ データ コレクター '{0}' で初期化情報を表示できませんでした。エラー: {1}
+
+
+
+ Data collector '{0}' threw an exception during type loading, construction, or initialization: {1}.
+ データ コレクター '{0}' が型の読み込み、作成、または初期化中に例外をスローしました: {1}。
+
+
+
+ Could not find data collector '{0}'
+ データ コレクター '{0}' が見つかりませんでした
+
+
+
+ The data collector '{0}' requested environment variable '{1}' with value '{2}' to be set in test execution environment, but another data collector '{3}' has already requested same environment variable with different value '{4}'.
+ データ コレクター '{0}' が値 '{2}' の環境変数 '{1}' をテスト実行時環境で設定するように要求しましたが、別のデータ コレクター '{3}' が既に別の値 '{4}' を持つ同じ環境変数を要求しています。
+
+
+
+ There are multiple configurations that have data collector FriendlyName as '{0}'. Duplicate configurations will be ignored in the test run.
+ データ コレクターの FriendlyName が '{0}' の構成が複数あります。テストの実行では、重複した構成は無視されます。
+
+
+
+ Data collector caught an exception of type '{0}': '{1}'. More details: {2}.
+ データ コレクターが型 '{0}' の例外をキャッチしました: '{1}'。詳細: {2}。
+
+
+
+ Types deriving from the data collection context cannot be used for sending data and messages. The DataCollectionContext used for sending data and messages must come from one of the events raised to the data collector.
+ データ コレクション コンテキストから派生する型をデータおよびメッセージの送信に使用することはできません。データおよびメッセージの送信に使用される DataCollectionContext は、データ コレクターに対して発生したイベントの 1 つからのものである必要があります。
+
+
+
+ The Test Logger URI '{0}' is not valid. The Test Logger will be ignored.
+ テスト ロガーの URI '{0}' は無効です。テスト ロガーは無視されます。
+
+
+
+ Failed to find the list of installed unit test extensions. Reason: {0}
+ インストール済みの単体テスト拡張の一覧が見つかりませんでした。理由: {0}
+
+
+
+ This option works only with vstest.console.exe installed as part of Visual Studio.
+ このオプションは Visual Studio の一部として vstest.console.exe がインストールされている場合のみ使用できます。
+
+
+
+ An error occurred while creating Fast filter.
+ 高速フィルターを作成中にエラーが発生しました。
+
+
+
+ Cancelling the operation as requested.
+ 操作のキャンセルが要求されたため、キャンセルしています。
+
+
+
+ Unable to find a datacollector with friendly name '{0}'.
+ フレンドリ名が '{0}' の datacollector が見つかりません。
+
+
+
+ Failed to load extensions from file '{0}'. Please use /diag for more information.
+ ファイル '{0}' から拡張機能を読み込めませんでした。詳細な情報を得るには、/diag をご使用ください。
+
+
+
+ {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges. For more information, please look at the error message:
+ {0} 記載した場所に "TestResults" フォルダーを作成しようとしたときにアクセスが拒否されました。書き込みアクセスを必要とするフォルダーから vstest.console.exe を実行しているため、この例外が発生しています。この問題を解決するには、書き込み権限のあるフォルダーから vstest.console.exe を実行してください。詳細については、次のエラー メッセージをご覧ください。
+
+
+
+ Inner exception:
+ 内部例外:
+
+
+
+ Stack trace:
+ スタック トレース:
+
+
+
+ <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> is not supported for sources test run.
+ <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> は、ソース テストの実行ではサポートされていません。
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.ko.xlf b/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.ko.xlf
index 6ec1adbed0..37175efc69 100644
--- a/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.ko.xlf
+++ b/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.ko.xlf
@@ -1,202 +1,202 @@
-
-
-
-
-
- Data collection : {0}
- 데이터 수집: {0}
-
-
-
- Data collector '{0}' message: {1}.
- 데이터 수집기 '{0}' 메시지: {1}.
-
-
-
- Duplicate test extension URI '{0}'. Ignoring the duplicate extension.
- 테스트 확장 URI '{0}'이(가) 중복됩니다. 중복 확장을 무시합니다.
-
-
-
- Duplicate settings provider named '{0}'. Ignoring the duplicate provider.
- 설정 공급자 '{0}'이(가) 중복됩니다. 중복 공급자를 무시합니다.
-
-
-
- Duplicate run settings section named '{0}' found. Ignoring the duplicate settings.
- 중복 실행 설정 섹션 '{0}'이(가) 있습니다. 중복 설정을 무시합니다.
-
-
-
- Error: Empty parenthesis ( )
- 오류: 빈 괄호 ( )
-
-
-
- Error: Invalid Condition '{0}'
- 오류: 잘못된 조건 '{0}'
-
-
-
- Test Extension has an invalid URI '{0}': {1}
- 테스트 확장의 URI '{0}'이(가) 잘못되었습니다. {1}
-
-
-
- Error: Invalid operator '{0}'
- 오류: 잘못된 연산자 '{0}'
-
-
-
- Exception occurred while initializing logger with {0}: '{1}'. The logger will not be used. Exception: {2}
- {0}: '{1}'인 로거를 초기화하는 동안 예외가 발생했습니다. 로거가 사용되지 않습니다. 예외: {2}
-
-
-
- Could not find a test logger with AssemblyQualifiedName, URI or FriendlyName '{0}'.
- AssemblyQualifiedName, URI 또는 FriendlyName이 '{0}'인 테스트 로거를 찾을 수 없습니다.
-
-
-
- Error: Missing ')'
- 오류: ')' 누락
-
-
-
- Error: Missing '('
- 오류: '(' 누락
-
-
-
- Error: Missing operand
- 오류: 피연산자 누락
-
-
-
- Missing Operator '|' or '&'
- '|' 또는 '&' 연산자 누락
-
-
-
- The Run Settings have already been loaded.
- 실행 설정이 이미 로드되었습니다.
-
-
-
- An error occurred while loading the run settings. Error: {0}
- 실행 설정을 로드하는 동안 오류가 발생했습니다. 오류: {0}
-
-
-
- Invalid settings node specified. The name property of the settings node must be non-empty.
- 잘못된 설정 노드를 지정했습니다. 설정 노드의 이름 속성이 비어 있어서는 안 됩니다.
-
-
-
- An error occurred while initializing the settings provider named '{0}'. Error: {1}
- 설정 공급자 '{0}'을(를) 초기화하는 동안 오류가 발생했습니다. 오류: {1}
-
-
-
- Settings Provider named '{0}' was not found. The settings can not be loaded.
- 설정 공급자 '{0}'을(를) 찾을 수 없습니다. 설정을 로드할 수 없습니다.
-
-
-
- Incorrect format for TestCaseFilter {0}. Specify the correct format and try again. Note that the incorrect format can lead to no test getting executed.
- TestCaseFilter {0}의 형식이 잘못되었습니다. 올바른 형식을 지정하고 다시 시도하세요. 잘못된 형식을 사용하면 테스트가 실행되지 않을 수 있습니다.
-
-
-
- Data collector '{0}' failed to provide initialization information. Error: {1}
- 데이터 수집기 '{0}'에서 초기화 정보를 제공하지 못했습니다. 오류: {1}
-
-
-
- Data collector '{0}' threw an exception during type loading, construction, or initialization: {1}.
- 형식 로드, 생성 또는 초기화 중에 데이터 수집기 '{0}'에서 예외를 throw했습니다. {1}.
-
-
-
- Could not find data collector '{0}'
- 데이터 수집기 '{0}'을(를) 찾을 수 없습니다.
-
-
-
- The data collector '{0}' requested environment variable '{1}' with value '{2}' to be set in test execution environment, but another data collector '{3}' has already requested same environment variable with different value '{4}'.
- 데이터 수집기 '{0}'에서 값이 '{2}'인 환경 변수 '{1}'을(를) 테스트 실행 환경에서 설정하도록 요청했는데, 다른 데이터 수집기 '{3}'이(가) 다른 값('{4}')을 포함하는 동일 환경 변수를 이미 요청했습니다.
-
-
-
- There are multiple configurations that have data collector FriendlyName as '{0}'. Duplicate configurations will be ignored in the test run.
- 데이터 수집기 FriendlyName이 '{0}'인 여러 개의 구성이 있습니다. 중복 구성은 테스트 실행에서 무시됩니다.
-
-
-
- Data collector caught an exception of type '{0}': '{1}'. More details: {2}.
- 데이터 수집기에서 '{0}': '{1}' 형식의 예외를 catch했습니다. 자세한 정보: {2}.
-
-
-
- Types deriving from the data collection context cannot be used for sending data and messages. The DataCollectionContext used for sending data and messages must come from one of the events raised to the data collector.
- 데이터 컬렉션 컨텍스트에서 파생된 형식을 사용하여 데이터 및 메시지를 보낼 수 없습니다. 데이터 및 메시지를 보내는 데 사용되는 DataCollectionContext는 데이터에 대해 발생한 이벤트 중 하나에서 가져와야 합니다.
-
-
-
- The Test Logger URI '{0}' is not valid. The Test Logger will be ignored.
- 테스트 로거 URI '{0}'이(가) 잘못되었습니다. 테스트 로거를 무시합니다.
-
-
-
- Failed to find the list of installed unit test extensions. Reason: {0}
- 설치된 단위 테스트 확장 목록을 찾지 못했습니다. 이유: {0}
-
-
-
- This option works only with vstest.console.exe installed as part of Visual Studio.
- 이 옵션은 Visual Studio의 일부로 설치된 vstest.console.exe에서만 실행됩니다.
-
-
-
- An error occurred while creating Fast filter.
- 빠른 필터를 만드는 중 오류가 발생했습니다.
-
-
-
- Cancelling the operation as requested.
- 요청한 대로 작업을 취소하는 중입니다.
-
-
-
- Unable to find a datacollector with friendly name '{0}'.
- 이름이 '{0}'인 datacollector를 찾을 수 없습니다.
-
-
-
- Failed to load extensions from file '{0}'. Please use /diag for more information.
- '{0}' 파일에서 확장을 로드하지 못했습니다. 자세한 내용을 보려면 /diag를 사용하세요.
-
-
-
- {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges. For more information, please look at the error message:
- {0} "TestResults" 폴더를 언급된 위치에 만드는 동안 액세스가 거부되었습니다. 쓰기 권한이 필요한 폴더에서 vstest.console.exe를 실행하고 있으므로 이 예외가 발생했습니다. 이 문제를 해결하려면 쓰기 권한이 있는 폴더에서 vstest.console.exe를 실행하세요. 자세한 내용은 다음 오류 메시지를 확인하세요.
-
-
-
- Inner exception:
- 내부 예외:
-
-
-
- Stack trace:
- 스택 추적:
-
-
-
- <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> is not supported for sources test run.
- <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost>는 원본 테스트 실행에 대해 지원되지 않습니다.
-
-
-
-
-
+
+
+
+
+
+ Data collection : {0}
+ 데이터 수집: {0}
+
+
+
+ Data collector '{0}' message: {1}.
+ 데이터 수집기 '{0}' 메시지: {1}.
+
+
+
+ Duplicate test extension URI '{0}'. Ignoring the duplicate extension.
+ 테스트 확장 URI '{0}'이(가) 중복됩니다. 중복 확장을 무시합니다.
+
+
+
+ Duplicate settings provider named '{0}'. Ignoring the duplicate provider.
+ 설정 공급자 '{0}'이(가) 중복됩니다. 중복 공급자를 무시합니다.
+
+
+
+ Duplicate run settings section named '{0}' found. Ignoring the duplicate settings.
+ 중복 실행 설정 섹션 '{0}'이(가) 있습니다. 중복 설정을 무시합니다.
+
+
+
+ Error: Empty parenthesis ( )
+ 오류: 빈 괄호 ( )
+
+
+
+ Error: Invalid Condition '{0}'
+ 오류: 잘못된 조건 '{0}'
+
+
+
+ Test Extension has an invalid URI '{0}': {1}
+ 테스트 확장의 URI '{0}'이(가) 잘못되었습니다. {1}
+
+
+
+ Error: Invalid operator '{0}'
+ 오류: 잘못된 연산자 '{0}'
+
+
+
+ Exception occurred while initializing logger with {0}: '{1}'. The logger will not be used. Exception: {2}
+ {0}: '{1}'인 로거를 초기화하는 동안 예외가 발생했습니다. 로거가 사용되지 않습니다. 예외: {2}
+
+
+
+ Could not find a test logger with AssemblyQualifiedName, URI or FriendlyName '{0}'.
+ AssemblyQualifiedName, URI 또는 FriendlyName이 '{0}'인 테스트 로거를 찾을 수 없습니다.
+
+
+
+ Error: Missing ')'
+ 오류: ')' 누락
+
+
+
+ Error: Missing '('
+ 오류: '(' 누락
+
+
+
+ Error: Missing operand
+ 오류: 피연산자 누락
+
+
+
+ Missing Operator '|' or '&'
+ '|' 또는 '&' 연산자 누락
+
+
+
+ The Run Settings have already been loaded.
+ 실행 설정이 이미 로드되었습니다.
+
+
+
+ An error occurred while loading the run settings. Error: {0}
+ 실행 설정을 로드하는 동안 오류가 발생했습니다. 오류: {0}
+
+
+
+ Invalid settings node specified. The name property of the settings node must be non-empty.
+ 잘못된 설정 노드를 지정했습니다. 설정 노드의 이름 속성이 비어 있어서는 안 됩니다.
+
+
+
+ An error occurred while initializing the settings provider named '{0}'. Error: {1}
+ 설정 공급자 '{0}'을(를) 초기화하는 동안 오류가 발생했습니다. 오류: {1}
+
+
+
+ Settings Provider named '{0}' was not found. The settings can not be loaded.
+ 설정 공급자 '{0}'을(를) 찾을 수 없습니다. 설정을 로드할 수 없습니다.
+
+
+
+ Incorrect format for TestCaseFilter {0}. Specify the correct format and try again. Note that the incorrect format can lead to no test getting executed.
+ TestCaseFilter {0}의 형식이 잘못되었습니다. 올바른 형식을 지정하고 다시 시도하세요. 잘못된 형식을 사용하면 테스트가 실행되지 않을 수 있습니다.
+
+
+
+ Data collector '{0}' failed to provide initialization information. Error: {1}
+ 데이터 수집기 '{0}'에서 초기화 정보를 제공하지 못했습니다. 오류: {1}
+
+
+
+ Data collector '{0}' threw an exception during type loading, construction, or initialization: {1}.
+ 형식 로드, 생성 또는 초기화 중에 데이터 수집기 '{0}'에서 예외를 throw했습니다. {1}.
+
+
+
+ Could not find data collector '{0}'
+ 데이터 수집기 '{0}'을(를) 찾을 수 없습니다.
+
+
+
+ The data collector '{0}' requested environment variable '{1}' with value '{2}' to be set in test execution environment, but another data collector '{3}' has already requested same environment variable with different value '{4}'.
+ 데이터 수집기 '{0}'에서 값이 '{2}'인 환경 변수 '{1}'을(를) 테스트 실행 환경에서 설정하도록 요청했는데, 다른 데이터 수집기 '{3}'이(가) 다른 값('{4}')을 포함하는 동일 환경 변수를 이미 요청했습니다.
+
+
+
+ There are multiple configurations that have data collector FriendlyName as '{0}'. Duplicate configurations will be ignored in the test run.
+ 데이터 수집기 FriendlyName이 '{0}'인 여러 개의 구성이 있습니다. 중복 구성은 테스트 실행에서 무시됩니다.
+
+
+
+ Data collector caught an exception of type '{0}': '{1}'. More details: {2}.
+ 데이터 수집기에서 '{0}': '{1}' 형식의 예외를 catch했습니다. 자세한 정보: {2}.
+
+
+
+ Types deriving from the data collection context cannot be used for sending data and messages. The DataCollectionContext used for sending data and messages must come from one of the events raised to the data collector.
+ 데이터 컬렉션 컨텍스트에서 파생된 형식을 사용하여 데이터 및 메시지를 보낼 수 없습니다. 데이터 및 메시지를 보내는 데 사용되는 DataCollectionContext는 데이터에 대해 발생한 이벤트 중 하나에서 가져와야 합니다.
+
+
+
+ The Test Logger URI '{0}' is not valid. The Test Logger will be ignored.
+ 테스트 로거 URI '{0}'이(가) 잘못되었습니다. 테스트 로거를 무시합니다.
+
+
+
+ Failed to find the list of installed unit test extensions. Reason: {0}
+ 설치된 단위 테스트 확장 목록을 찾지 못했습니다. 이유: {0}
+
+
+
+ This option works only with vstest.console.exe installed as part of Visual Studio.
+ 이 옵션은 Visual Studio의 일부로 설치된 vstest.console.exe에서만 실행됩니다.
+
+
+
+ An error occurred while creating Fast filter.
+ 빠른 필터를 만드는 중 오류가 발생했습니다.
+
+
+
+ Cancelling the operation as requested.
+ 요청한 대로 작업을 취소하는 중입니다.
+
+
+
+ Unable to find a datacollector with friendly name '{0}'.
+ 이름이 '{0}'인 datacollector를 찾을 수 없습니다.
+
+
+
+ Failed to load extensions from file '{0}'. Please use /diag for more information.
+ '{0}' 파일에서 확장을 로드하지 못했습니다. 자세한 내용을 보려면 /diag를 사용하세요.
+
+
+
+ {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges. For more information, please look at the error message:
+ {0} "TestResults" 폴더를 언급된 위치에 만드는 동안 액세스가 거부되었습니다. 쓰기 권한이 필요한 폴더에서 vstest.console.exe를 실행하고 있으므로 이 예외가 발생했습니다. 이 문제를 해결하려면 쓰기 권한이 있는 폴더에서 vstest.console.exe를 실행하세요. 자세한 내용은 다음 오류 메시지를 확인하세요.
+
+
+
+ Inner exception:
+ 내부 예외:
+
+
+
+ Stack trace:
+ 스택 추적:
+
+
+
+ <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> is not supported for sources test run.
+ <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost>는 원본 테스트 실행에 대해 지원되지 않습니다.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.pl.xlf b/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.pl.xlf
index dd00f4643f..10c5a716e5 100644
--- a/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.pl.xlf
+++ b/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.pl.xlf
@@ -1,202 +1,202 @@
-
-
-
-
-
- Data collection : {0}
- Zbieranie danych: {0}
-
-
-
- Data collector '{0}' message: {1}.
- Komunikat modułu zbierającego dane „{0}”: {1}.
-
-
-
- Duplicate test extension URI '{0}'. Ignoring the duplicate extension.
- Zduplikowany identyfikator URI rozszerzenia testu „{0}”. Zduplikowane rozszerzenie zostanie zignorowane.
-
-
-
- Duplicate settings provider named '{0}'. Ignoring the duplicate provider.
- Zduplikowany dostawca ustawień o nazwie „{0}”. Zduplikowany dostawca zostanie zignorowany.
-
-
-
- Duplicate run settings section named '{0}' found. Ignoring the duplicate settings.
- Znaleziono zduplikowaną sekcję parametrów uruchomieniowych o nazwie „{0}”. Zduplikowane ustawienia zostaną zignorowane.
-
-
-
- Error: Empty parenthesis ( )
- Błąd: puste nawiasy ( )
-
-
-
- Error: Invalid Condition '{0}'
- Błąd: nieprawidłowy warunek „{0}”
-
-
-
- Test Extension has an invalid URI '{0}': {1}
- Rozszerzenie testu ma nieprawidłowy identyfikator URI „{0}”: {1}
-
-
-
- Error: Invalid operator '{0}'
- Błąd: nieprawidłowy operator „{0}”
-
-
-
- Exception occurred while initializing logger with {0}: '{1}'. The logger will not be used. Exception: {2}
- Wystąpił wyjątek podczas inicjowania rejestratora o identyfikatorze {0}: „{1}”. Rejestrator nie będzie używany. Wyjątek: {2}
-
-
-
- Could not find a test logger with AssemblyQualifiedName, URI or FriendlyName '{0}'.
- Nie można odnaleźć rejestratora testów z atrybutem AssemblyQualifiedName, identyfikatorem URI lub przyjazną nazwą „{0}”.
-
-
-
- Error: Missing ')'
- Błąd: brak znaku „)”
-
-
-
- Error: Missing '('
- Błąd: brak znaku „(”
-
-
-
- Error: Missing operand
- Błąd: brak argumentu operacji
-
-
-
- Missing Operator '|' or '&'
- Brak operatora „|” lub „&”
-
-
-
- The Run Settings have already been loaded.
- Parametry uruchomieniowe zostały już załadowane.
-
-
-
- An error occurred while loading the run settings. Error: {0}
- Wystąpił błąd podczas ładowania parametrów uruchomieniowych. Błąd: {0}
-
-
-
- Invalid settings node specified. The name property of the settings node must be non-empty.
- Określono nieprawidłowy węzeł ustawień. Właściwość name węzła ustawień nie może być pusta.
-
-
-
- An error occurred while initializing the settings provider named '{0}'. Error: {1}
- Wystąpił błąd podczas inicjowania dostawcy ustawień o nazwie „{0}”. Błąd: {1}
-
-
-
- Settings Provider named '{0}' was not found. The settings can not be loaded.
- Nie znaleziono dostawcy ustawień o nazwie „{0}”. Nie można załadować ustawień.
-
-
-
- Incorrect format for TestCaseFilter {0}. Specify the correct format and try again. Note that the incorrect format can lead to no test getting executed.
- Niepoprawny format elementu TestCaseFilter {0}. Określ poprawny format i spróbuj ponownie. Należy pamiętać, że niepoprawny format może spowodować, że żadne testy nie zostaną wykonane.
-
-
-
- Data collector '{0}' failed to provide initialization information. Error: {1}
- Dostarczenie informacji o inicjowaniu przez moduł zbierający dane „{0}” nie powiodło się. Błąd: {1}
-
-
-
- Data collector '{0}' threw an exception during type loading, construction, or initialization: {1}.
- Moduł zbierający dane „{0}” zgłosił wyjątek w trakcie ładowania, konstruowania lub inicjowania typu: {1}.
-
-
-
- Could not find data collector '{0}'
- Nie można znaleźć modułu zbierającego dane „{0}”
-
-
-
- The data collector '{0}' requested environment variable '{1}' with value '{2}' to be set in test execution environment, but another data collector '{3}' has already requested same environment variable with different value '{4}'.
- Moduł zbierający dane „{0}” zażądał ustawienia zmiennej środowiskowej „{1}” o wartości „{2}” w środowisku wykonywania testu, ale inny moduł zbierający dane „{3}” już zażądał ustawienia tej zmiennej środowiskowej na wartość „{4}”.
-
-
-
- There are multiple configurations that have data collector FriendlyName as '{0}'. Duplicate configurations will be ignored in the test run.
- Istnieje wiele konfiguracji, które zawierają przyjazną nazwę modułu zbierającego dane „{0}”. Zduplikowane konfiguracje będą ignorowane w przebiegu testu.
-
-
-
- Data collector caught an exception of type '{0}': '{1}'. More details: {2}.
- Moduł zbierający dane przechwycił wyjątek typu „{0}”: „{1}”. Więcej szczegółów: {2}.
-
-
-
- Types deriving from the data collection context cannot be used for sending data and messages. The DataCollectionContext used for sending data and messages must come from one of the events raised to the data collector.
- Typy pochodzące od kontekstu kolekcji danych nie mogą być używane do wysyłania danych i komunikatów. Element DataCollectionContext służący do wysyłania danych i komunikatów musi pochodzić z jednego ze zdarzeń wywołanych dla modułu zbierającego dane.
-
-
-
- The Test Logger URI '{0}' is not valid. The Test Logger will be ignored.
- Podany identyfikator URI rejestratora testów „{0}” jest nieprawidłowy. Rejestrator testów zostanie zignorowany.
-
-
-
- Failed to find the list of installed unit test extensions. Reason: {0}
- Nie można znaleźć listy zainstalowanych rozszerzeń testów jednostkowych. Przyczyna: {0}
-
-
-
- This option works only with vstest.console.exe installed as part of Visual Studio.
- Ta opcja działa wyłącznie z elementem vstest.console.exe zainstalowanym jako część programu Visual Studio.
-
-
-
- An error occurred while creating Fast filter.
- Wystąpił błąd podczas tworzenia szybkiego filtru.
-
-
-
- Cancelling the operation as requested.
- Anulowanie operacji zgodnie z żądaniem.
-
-
-
- Unable to find a datacollector with friendly name '{0}'.
- Nie można znaleźć elementu datacollector o przyjaznej nazwie „{0}”.
-
-
-
- Failed to load extensions from file '{0}'. Please use /diag for more information.
- Nie można załadować rozszerzeń z pliku „{0}”. Aby uzyskać więcej informacji, użyj opcji /diag.
-
-
-
- {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges. For more information, please look at the error message:
- {0} Odmowa dostępu podczas próby utworzenia folderu „TestResults” w określonej lokalizacji. Widzisz ten wyjątek, ponieważ program vstest.console.exe został uruchomiony z folderu wymagającego dostępu do zapisu. Aby rozwiązać ten problem: uruchom program vstest.console.exe z folderu, w którym masz uprawnienia do zapisu. Więcej informacji można znaleźć w komunikacie o błędzie:
-
-
-
- Inner exception:
- Wewnętrzny wyjątek:
-
-
-
- Stack trace:
- Ślad stosu:
-
-
-
- <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> is not supported for sources test run.
- <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> nie jest obsługiwana w przypadku przebiegu testu źródeł.
-
-
-
-
-
+
+
+
+
+
+ Data collection : {0}
+ Zbieranie danych: {0}
+
+
+
+ Data collector '{0}' message: {1}.
+ Komunikat modułu zbierającego dane „{0}”: {1}.
+
+
+
+ Duplicate test extension URI '{0}'. Ignoring the duplicate extension.
+ Zduplikowany identyfikator URI rozszerzenia testu „{0}”. Zduplikowane rozszerzenie zostanie zignorowane.
+
+
+
+ Duplicate settings provider named '{0}'. Ignoring the duplicate provider.
+ Zduplikowany dostawca ustawień o nazwie „{0}”. Zduplikowany dostawca zostanie zignorowany.
+
+
+
+ Duplicate run settings section named '{0}' found. Ignoring the duplicate settings.
+ Znaleziono zduplikowaną sekcję parametrów uruchomieniowych o nazwie „{0}”. Zduplikowane ustawienia zostaną zignorowane.
+
+
+
+ Error: Empty parenthesis ( )
+ Błąd: puste nawiasy ( )
+
+
+
+ Error: Invalid Condition '{0}'
+ Błąd: nieprawidłowy warunek „{0}”
+
+
+
+ Test Extension has an invalid URI '{0}': {1}
+ Rozszerzenie testu ma nieprawidłowy identyfikator URI „{0}”: {1}
+
+
+
+ Error: Invalid operator '{0}'
+ Błąd: nieprawidłowy operator „{0}”
+
+
+
+ Exception occurred while initializing logger with {0}: '{1}'. The logger will not be used. Exception: {2}
+ Wystąpił wyjątek podczas inicjowania rejestratora o identyfikatorze {0}: „{1}”. Rejestrator nie będzie używany. Wyjątek: {2}
+
+
+
+ Could not find a test logger with AssemblyQualifiedName, URI or FriendlyName '{0}'.
+ Nie można odnaleźć rejestratora testów z atrybutem AssemblyQualifiedName, identyfikatorem URI lub przyjazną nazwą „{0}”.
+
+
+
+ Error: Missing ')'
+ Błąd: brak znaku „)”
+
+
+
+ Error: Missing '('
+ Błąd: brak znaku „(”
+
+
+
+ Error: Missing operand
+ Błąd: brak argumentu operacji
+
+
+
+ Missing Operator '|' or '&'
+ Brak operatora „|” lub „&”
+
+
+
+ The Run Settings have already been loaded.
+ Parametry uruchomieniowe zostały już załadowane.
+
+
+
+ An error occurred while loading the run settings. Error: {0}
+ Wystąpił błąd podczas ładowania parametrów uruchomieniowych. Błąd: {0}
+
+
+
+ Invalid settings node specified. The name property of the settings node must be non-empty.
+ Określono nieprawidłowy węzeł ustawień. Właściwość name węzła ustawień nie może być pusta.
+
+
+
+ An error occurred while initializing the settings provider named '{0}'. Error: {1}
+ Wystąpił błąd podczas inicjowania dostawcy ustawień o nazwie „{0}”. Błąd: {1}
+
+
+
+ Settings Provider named '{0}' was not found. The settings can not be loaded.
+ Nie znaleziono dostawcy ustawień o nazwie „{0}”. Nie można załadować ustawień.
+
+
+
+ Incorrect format for TestCaseFilter {0}. Specify the correct format and try again. Note that the incorrect format can lead to no test getting executed.
+ Niepoprawny format elementu TestCaseFilter {0}. Określ poprawny format i spróbuj ponownie. Należy pamiętać, że niepoprawny format może spowodować, że żadne testy nie zostaną wykonane.
+
+
+
+ Data collector '{0}' failed to provide initialization information. Error: {1}
+ Dostarczenie informacji o inicjowaniu przez moduł zbierający dane „{0}” nie powiodło się. Błąd: {1}
+
+
+
+ Data collector '{0}' threw an exception during type loading, construction, or initialization: {1}.
+ Moduł zbierający dane „{0}” zgłosił wyjątek w trakcie ładowania, konstruowania lub inicjowania typu: {1}.
+
+
+
+ Could not find data collector '{0}'
+ Nie można znaleźć modułu zbierającego dane „{0}”
+
+
+
+ The data collector '{0}' requested environment variable '{1}' with value '{2}' to be set in test execution environment, but another data collector '{3}' has already requested same environment variable with different value '{4}'.
+ Moduł zbierający dane „{0}” zażądał ustawienia zmiennej środowiskowej „{1}” o wartości „{2}” w środowisku wykonywania testu, ale inny moduł zbierający dane „{3}” już zażądał ustawienia tej zmiennej środowiskowej na wartość „{4}”.
+
+
+
+ There are multiple configurations that have data collector FriendlyName as '{0}'. Duplicate configurations will be ignored in the test run.
+ Istnieje wiele konfiguracji, które zawierają przyjazną nazwę modułu zbierającego dane „{0}”. Zduplikowane konfiguracje będą ignorowane w przebiegu testu.
+
+
+
+ Data collector caught an exception of type '{0}': '{1}'. More details: {2}.
+ Moduł zbierający dane przechwycił wyjątek typu „{0}”: „{1}”. Więcej szczegółów: {2}.
+
+
+
+ Types deriving from the data collection context cannot be used for sending data and messages. The DataCollectionContext used for sending data and messages must come from one of the events raised to the data collector.
+ Typy pochodzące od kontekstu kolekcji danych nie mogą być używane do wysyłania danych i komunikatów. Element DataCollectionContext służący do wysyłania danych i komunikatów musi pochodzić z jednego ze zdarzeń wywołanych dla modułu zbierającego dane.
+
+
+
+ The Test Logger URI '{0}' is not valid. The Test Logger will be ignored.
+ Podany identyfikator URI rejestratora testów „{0}” jest nieprawidłowy. Rejestrator testów zostanie zignorowany.
+
+
+
+ Failed to find the list of installed unit test extensions. Reason: {0}
+ Nie można znaleźć listy zainstalowanych rozszerzeń testów jednostkowych. Przyczyna: {0}
+
+
+
+ This option works only with vstest.console.exe installed as part of Visual Studio.
+ Ta opcja działa wyłącznie z elementem vstest.console.exe zainstalowanym jako część programu Visual Studio.
+
+
+
+ An error occurred while creating Fast filter.
+ Wystąpił błąd podczas tworzenia szybkiego filtru.
+
+
+
+ Cancelling the operation as requested.
+ Anulowanie operacji zgodnie z żądaniem.
+
+
+
+ Unable to find a datacollector with friendly name '{0}'.
+ Nie można znaleźć elementu datacollector o przyjaznej nazwie „{0}”.
+
+
+
+ Failed to load extensions from file '{0}'. Please use /diag for more information.
+ Nie można załadować rozszerzeń z pliku „{0}”. Aby uzyskać więcej informacji, użyj opcji /diag.
+
+
+
+ {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges. For more information, please look at the error message:
+ {0} Odmowa dostępu podczas próby utworzenia folderu „TestResults” w określonej lokalizacji. Widzisz ten wyjątek, ponieważ program vstest.console.exe został uruchomiony z folderu wymagającego dostępu do zapisu. Aby rozwiązać ten problem: uruchom program vstest.console.exe z folderu, w którym masz uprawnienia do zapisu. Więcej informacji można znaleźć w komunikacie o błędzie:
+
+
+
+ Inner exception:
+ Wewnętrzny wyjątek:
+
+
+
+ Stack trace:
+ Ślad stosu:
+
+
+
+ <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> is not supported for sources test run.
+ <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> nie jest obsługiwana w przypadku przebiegu testu źródeł.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.pt-BR.xlf b/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.pt-BR.xlf
index 205948be4f..5a543755e2 100644
--- a/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.pt-BR.xlf
+++ b/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.pt-BR.xlf
@@ -1,202 +1,202 @@
-
-
-
-
-
- Data collection : {0}
- Coleção de dados: {0}
-
-
-
- Data collector '{0}' message: {1}.
- Coletor de dados '{0}' mensagem: {1}.
-
-
-
- Duplicate test extension URI '{0}'. Ignoring the duplicate extension.
- URI da extensão do teste '{0}' duplicada. Ignorando a extensão duplicada.
-
-
-
- Duplicate settings provider named '{0}'. Ignoring the duplicate provider.
- Provedor de configurações denominado '{0}' duplicado. Ignorando o provedor duplicado.
-
-
-
- Duplicate run settings section named '{0}' found. Ignoring the duplicate settings.
- Foi encontrada uma seção de configurações de execução denominada '{0}' duplicada. Ignorando as configurações duplicadas.
-
-
-
- Error: Empty parenthesis ( )
- Erro: parênteses vazios ( )
-
-
-
- Error: Invalid Condition '{0}'
- Erro: condição inválida '{0}'
-
-
-
- Test Extension has an invalid URI '{0}': {1}
- A Extensão do Teste tem um URI inválido '{0}': {1}
-
-
-
- Error: Invalid operator '{0}'
- Erro: operador inválido '{0}'
-
-
-
- Exception occurred while initializing logger with {0}: '{1}'. The logger will not be used. Exception: {2}
- Ocorreu uma exceção durante a inicialização do agente com {0}: ‘{1}’. O agente não será usado. Exceção: {2}
-
-
-
- Could not find a test logger with AssemblyQualifiedName, URI or FriendlyName '{0}'.
- Não foi possível localizar um agente de teste com o AssemblyQualifiedName, o URI ou o FriendlyName '{0}'.
-
-
-
- Error: Missing ')'
- Erro: ')' ausente
-
-
-
- Error: Missing '('
- Erro: '(' ausente
-
-
-
- Error: Missing operand
- Erro: operando ausente
-
-
-
- Missing Operator '|' or '&'
- Faltando operador '|' ou '&'
-
-
-
- The Run Settings have already been loaded.
- As Configurações de Execução já foram carregadas.
-
-
-
- An error occurred while loading the run settings. Error: {0}
- Ocorreu um erro ao carregar as configurações de execução. Erro: {0}
-
-
-
- Invalid settings node specified. The name property of the settings node must be non-empty.
- Nó de configurações inválido especificado. A propriedade de nome do nó de configurações não deve estar vazia.
-
-
-
- An error occurred while initializing the settings provider named '{0}'. Error: {1}
- Ocorreu um erro ao inicializar o provedor de configurações denominado '{0}'. Erro: {1}
-
-
-
- Settings Provider named '{0}' was not found. The settings can not be loaded.
- O Provedor de Configurações denominado '{0}' não foi encontrado. Não é possível carregar as configurações.
-
-
-
- Incorrect format for TestCaseFilter {0}. Specify the correct format and try again. Note that the incorrect format can lead to no test getting executed.
- Formato incorreto para TestCaseFilter {0}. Especifique o formato correto e tente novamente. Observe que o formato incorreto pode fazer com que nenhum teste seja executado.
-
-
-
- Data collector '{0}' failed to provide initialization information. Error: {1}
- O coletor de dados '{0}' falhou ao fornecer informações de inicialização. Erro: {1}
-
-
-
- Data collector '{0}' threw an exception during type loading, construction, or initialization: {1}.
- O coletor de dados '{0}' lançou uma exceção durante a inicialização, construção ou carregamento de tipo: {1}.
-
-
-
- Could not find data collector '{0}'
- Não foi possível encontrar o coletor de dados '{0}'
-
-
-
- The data collector '{0}' requested environment variable '{1}' with value '{2}' to be set in test execution environment, but another data collector '{3}' has already requested same environment variable with different value '{4}'.
- O coletor de dados '{0}' solicitou a variável de ambiente '{1}' com valor '{2}' para ser definida no ambiente de execução de teste, mas outro coletor de dados '{3}' já solicitou a mesma variável de ambiente com um valor diferente '{4}'.
-
-
-
- There are multiple configurations that have data collector FriendlyName as '{0}'. Duplicate configurations will be ignored in the test run.
- Existem várias configurações que têm o FriendlyName do coletor de dados como '{0}'. Configurações duplicadas serão ignoradas na execução de teste.
-
-
-
- Data collector caught an exception of type '{0}': '{1}'. More details: {2}.
- O coletor de dados capturou uma exceção do tipo '{0}': '{1}'. Mais detalhes: {2}.
-
-
-
- Types deriving from the data collection context cannot be used for sending data and messages. The DataCollectionContext used for sending data and messages must come from one of the events raised to the data collector.
- Tipos derivados de DataCollectionContext não podem ser usados para enviar dados e mensagens. Os DataCollectionContext usado para enviar dados e mensagens devem vir de um dos eventos adicionados ao coletor de dados.
-
-
-
- The Test Logger URI '{0}' is not valid. The Test Logger will be ignored.
- O URI do Agente de Teste '{0}' não é válido. O Agente de Teste será ignorado.
-
-
-
- Failed to find the list of installed unit test extensions. Reason: {0}
- Falha ao encontrar a lista de extensões de teste de unidade. Motivo: {0}
-
-
-
- This option works only with vstest.console.exe installed as part of Visual Studio.
- Essa opção funciona somente com vstest.console.exe instalado como parte do Visual Studio.
-
-
-
- An error occurred while creating Fast filter.
- Ocorreu um erro ao criar o filtro Rápido.
-
-
-
- Cancelling the operation as requested.
- Cancelando a operação conforme solicitado.
-
-
-
- Unable to find a datacollector with friendly name '{0}'.
- Não é possível localizar um datacollector com o nome amigável '{0}'.
-
-
-
- Failed to load extensions from file '{0}'. Please use /diag for more information.
- Falha ao carregar as extensões do arquivo '{0}'. Use /diag para obter mais informações.
-
-
-
- {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges. For more information, please look at the error message:
- {0} Acesso negado ao tentar criar a pasta "TestResults" no local mencionado. Você está recebendo esta exceção porque está executando o vstest.console.exe em uma pasta que requer acesso para gravação. Para resolver o problema: execute vstest.console.exe em uma pasta na qual você tenha privilégios de gravação. Para obter mais informações, verifique a mensagem de erro:
-
-
-
- Inner exception:
- Exceção interna:
-
-
-
- Stack trace:
- Rastreamento de pilha:
-
-
-
- <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> is not supported for sources test run.
- <ForceOneTestAtTimePerTestHost>verdadeiro</ForceOneTestAtTimePerTestHost> não tem suporte para execução de teste de fontes.
-
-
-
-
-
+
+
+
+
+
+ Data collection : {0}
+ Coleção de dados: {0}
+
+
+
+ Data collector '{0}' message: {1}.
+ Coletor de dados '{0}' mensagem: {1}.
+
+
+
+ Duplicate test extension URI '{0}'. Ignoring the duplicate extension.
+ URI da extensão do teste '{0}' duplicada. Ignorando a extensão duplicada.
+
+
+
+ Duplicate settings provider named '{0}'. Ignoring the duplicate provider.
+ Provedor de configurações denominado '{0}' duplicado. Ignorando o provedor duplicado.
+
+
+
+ Duplicate run settings section named '{0}' found. Ignoring the duplicate settings.
+ Foi encontrada uma seção de configurações de execução denominada '{0}' duplicada. Ignorando as configurações duplicadas.
+
+
+
+ Error: Empty parenthesis ( )
+ Erro: parênteses vazios ( )
+
+
+
+ Error: Invalid Condition '{0}'
+ Erro: condição inválida '{0}'
+
+
+
+ Test Extension has an invalid URI '{0}': {1}
+ A Extensão do Teste tem um URI inválido '{0}': {1}
+
+
+
+ Error: Invalid operator '{0}'
+ Erro: operador inválido '{0}'
+
+
+
+ Exception occurred while initializing logger with {0}: '{1}'. The logger will not be used. Exception: {2}
+ Ocorreu uma exceção durante a inicialização do agente com {0}: ‘{1}’. O agente não será usado. Exceção: {2}
+
+
+
+ Could not find a test logger with AssemblyQualifiedName, URI or FriendlyName '{0}'.
+ Não foi possível localizar um agente de teste com o AssemblyQualifiedName, o URI ou o FriendlyName '{0}'.
+
+
+
+ Error: Missing ')'
+ Erro: ')' ausente
+
+
+
+ Error: Missing '('
+ Erro: '(' ausente
+
+
+
+ Error: Missing operand
+ Erro: operando ausente
+
+
+
+ Missing Operator '|' or '&'
+ Faltando operador '|' ou '&'
+
+
+
+ The Run Settings have already been loaded.
+ As Configurações de Execução já foram carregadas.
+
+
+
+ An error occurred while loading the run settings. Error: {0}
+ Ocorreu um erro ao carregar as configurações de execução. Erro: {0}
+
+
+
+ Invalid settings node specified. The name property of the settings node must be non-empty.
+ Nó de configurações inválido especificado. A propriedade de nome do nó de configurações não deve estar vazia.
+
+
+
+ An error occurred while initializing the settings provider named '{0}'. Error: {1}
+ Ocorreu um erro ao inicializar o provedor de configurações denominado '{0}'. Erro: {1}
+
+
+
+ Settings Provider named '{0}' was not found. The settings can not be loaded.
+ O Provedor de Configurações denominado '{0}' não foi encontrado. Não é possível carregar as configurações.
+
+
+
+ Incorrect format for TestCaseFilter {0}. Specify the correct format and try again. Note that the incorrect format can lead to no test getting executed.
+ Formato incorreto para TestCaseFilter {0}. Especifique o formato correto e tente novamente. Observe que o formato incorreto pode fazer com que nenhum teste seja executado.
+
+
+
+ Data collector '{0}' failed to provide initialization information. Error: {1}
+ O coletor de dados '{0}' falhou ao fornecer informações de inicialização. Erro: {1}
+
+
+
+ Data collector '{0}' threw an exception during type loading, construction, or initialization: {1}.
+ O coletor de dados '{0}' lançou uma exceção durante a inicialização, construção ou carregamento de tipo: {1}.
+
+
+
+ Could not find data collector '{0}'
+ Não foi possível encontrar o coletor de dados '{0}'
+
+
+
+ The data collector '{0}' requested environment variable '{1}' with value '{2}' to be set in test execution environment, but another data collector '{3}' has already requested same environment variable with different value '{4}'.
+ O coletor de dados '{0}' solicitou a variável de ambiente '{1}' com valor '{2}' para ser definida no ambiente de execução de teste, mas outro coletor de dados '{3}' já solicitou a mesma variável de ambiente com um valor diferente '{4}'.
+
+
+
+ There are multiple configurations that have data collector FriendlyName as '{0}'. Duplicate configurations will be ignored in the test run.
+ Existem várias configurações que têm o FriendlyName do coletor de dados como '{0}'. Configurações duplicadas serão ignoradas na execução de teste.
+
+
+
+ Data collector caught an exception of type '{0}': '{1}'. More details: {2}.
+ O coletor de dados capturou uma exceção do tipo '{0}': '{1}'. Mais detalhes: {2}.
+
+
+
+ Types deriving from the data collection context cannot be used for sending data and messages. The DataCollectionContext used for sending data and messages must come from one of the events raised to the data collector.
+ Tipos derivados de DataCollectionContext não podem ser usados para enviar dados e mensagens. Os DataCollectionContext usado para enviar dados e mensagens devem vir de um dos eventos adicionados ao coletor de dados.
+
+
+
+ The Test Logger URI '{0}' is not valid. The Test Logger will be ignored.
+ O URI do Agente de Teste '{0}' não é válido. O Agente de Teste será ignorado.
+
+
+
+ Failed to find the list of installed unit test extensions. Reason: {0}
+ Falha ao encontrar a lista de extensões de teste de unidade. Motivo: {0}
+
+
+
+ This option works only with vstest.console.exe installed as part of Visual Studio.
+ Essa opção funciona somente com vstest.console.exe instalado como parte do Visual Studio.
+
+
+
+ An error occurred while creating Fast filter.
+ Ocorreu um erro ao criar o filtro Rápido.
+
+
+
+ Cancelling the operation as requested.
+ Cancelando a operação conforme solicitado.
+
+
+
+ Unable to find a datacollector with friendly name '{0}'.
+ Não é possível localizar um datacollector com o nome amigável '{0}'.
+
+
+
+ Failed to load extensions from file '{0}'. Please use /diag for more information.
+ Falha ao carregar as extensões do arquivo '{0}'. Use /diag para obter mais informações.
+
+
+
+ {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges. For more information, please look at the error message:
+ {0} Acesso negado ao tentar criar a pasta "TestResults" no local mencionado. Você está recebendo esta exceção porque está executando o vstest.console.exe em uma pasta que requer acesso para gravação. Para resolver o problema: execute vstest.console.exe em uma pasta na qual você tenha privilégios de gravação. Para obter mais informações, verifique a mensagem de erro:
+
+
+
+ Inner exception:
+ Exceção interna:
+
+
+
+ Stack trace:
+ Rastreamento de pilha:
+
+
+
+ <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> is not supported for sources test run.
+ <ForceOneTestAtTimePerTestHost>verdadeiro</ForceOneTestAtTimePerTestHost> não tem suporte para execução de teste de fontes.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.ru.xlf b/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.ru.xlf
index 5c935a23b1..f569087653 100644
--- a/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.ru.xlf
+++ b/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.ru.xlf
@@ -1,202 +1,202 @@
-
-
-
-
-
- Data collection : {0}
- Сбор данных: {0}
-
-
-
- Data collector '{0}' message: {1}.
- Сообщение сборщика данных "{0}": {1}.
-
-
-
- Duplicate test extension URI '{0}'. Ignoring the duplicate extension.
- Повторяющийся URI расширения теста "{0}". Повторяющееся расширение пропускается.
-
-
-
- Duplicate settings provider named '{0}'. Ignoring the duplicate provider.
- Повторяющийся поставщик параметров с именем "{0}". Повторяющийся поставщик пропускается.
-
-
-
- Duplicate run settings section named '{0}' found. Ignoring the duplicate settings.
- Обнаружен повторяющийся раздел параметров запуска с именем "{0}". Повторяющиеся параметры пропускаются.
-
-
-
- Error: Empty parenthesis ( )
- Ошибка: пустые круглые скобки ()
-
-
-
- Error: Invalid Condition '{0}'
- Ошибка: недопустимое условие "{0}"
-
-
-
- Test Extension has an invalid URI '{0}': {1}
- Расширение теста имеет недопустимый URI "{0}": {1}
-
-
-
- Error: Invalid operator '{0}'
- Ошибка: недопустимый оператор "{0}"
-
-
-
- Exception occurred while initializing logger with {0}: '{1}'. The logger will not be used. Exception: {2}
- Возникло исключение при инициализации средства ведения журнала с {0}: "{1}". Средство ведения журнала не будет использоваться. Исключение: {2}
-
-
-
- Could not find a test logger with AssemblyQualifiedName, URI or FriendlyName '{0}'.
- Не удалось найти средство ведения журнала тестирования с AssemblyQualifiedName, URI или FriendlyName "{0}".
-
-
-
- Error: Missing ')'
- Ошибка: отсутствует ")"
-
-
-
- Error: Missing '('
- Ошибка: отсутствует "("
-
-
-
- Error: Missing operand
- Ошибка: отсутствует операнд
-
-
-
- Missing Operator '|' or '&'
- Отсутствует оператор "|" или "&"
-
-
-
- The Run Settings have already been loaded.
- Параметры запуска уже загружены.
-
-
-
- An error occurred while loading the run settings. Error: {0}
- Произошла ошибка при загрузке параметров запуска. Ошибка: {0}
-
-
-
- Invalid settings node specified. The name property of the settings node must be non-empty.
- Указан недопустимый узел параметров. Узел параметров должен иметь допустимое значение для свойства имени.
-
-
-
- An error occurred while initializing the settings provider named '{0}'. Error: {1}
- При инициализации поставщика параметров с именем "{0}" произошла ошибка. Ошибка: {1}
-
-
-
- Settings Provider named '{0}' was not found. The settings can not be loaded.
- Поставщик параметров с именем "{0}" не найден. Невозможно загрузить параметры.
-
-
-
- Incorrect format for TestCaseFilter {0}. Specify the correct format and try again. Note that the incorrect format can lead to no test getting executed.
- Неверный формат фильтра TestCaseFilter {0}. Задайте правильный формат и повторите попытку. Обратите внимание, что использование неверного формата может привести к тому, что ни один из тестов не будет выполнен.
-
-
-
- Data collector '{0}' failed to provide initialization information. Error: {1}
- Сборщик данных "{0}" не предоставил сведения для инициализации. Ошибка: {1}
-
-
-
- Data collector '{0}' threw an exception during type loading, construction, or initialization: {1}.
- В сборщике данных "{0}" возникло исключение во время загрузки типа, создания или инициализации: {1}.
-
-
-
- Could not find data collector '{0}'
- Не удалось найти сборщик данных "{0}"
-
-
-
- The data collector '{0}' requested environment variable '{1}' with value '{2}' to be set in test execution environment, but another data collector '{3}' has already requested same environment variable with different value '{4}'.
- Сборщик данных "{0}" запросил, чтобы в окружении выполнения тестов была установлена переменная окружения "{1}" со значением "{2}", но другой сборщик данных "{3}" уже запросил эту переменную окружения со значением "{4}".
-
-
-
- There are multiple configurations that have data collector FriendlyName as '{0}'. Duplicate configurations will be ignored in the test run.
- Существует несколько конфигураций со значением "{0}" для FriendlyName сборщика данных. Повторяющиеся конфигурации будут пропущены в тестовом запуске.
-
-
-
- Data collector caught an exception of type '{0}': '{1}'. More details: {2}.
- В сборщике данных возникло исключение типа "{0}": "{1}". Дополнительные сведения: {2}.
-
-
-
- Types deriving from the data collection context cannot be used for sending data and messages. The DataCollectionContext used for sending data and messages must come from one of the events raised to the data collector.
- Нельзя использовать типы, производные от контекста сбора данных, для отправки данных и сообщений. Используемый для отправки данных и сообщений DataCollectionContext должен происходить от одного из событий, возникших для сборщика данных.
-
-
-
- The Test Logger URI '{0}' is not valid. The Test Logger will be ignored.
- URI средства ведения журнала тестирования "{0}" недопустимо. Это средство ведения журнала тестирования будет игнорироваться.
-
-
-
- Failed to find the list of installed unit test extensions. Reason: {0}
- Не удалось найти список установленных расширений модульных тестов. Причина: {0}
-
-
-
- This option works only with vstest.console.exe installed as part of Visual Studio.
- Этот параметр работает, только если в рамках Visual Studio установлена служебная программа vstest.console.exe.
-
-
-
- An error occurred while creating Fast filter.
- При создании быстрого фильтра произошла ошибка.
-
-
-
- Cancelling the operation as requested.
- Операция отменяется в соответствии с запросом.
-
-
-
- Unable to find a datacollector with friendly name '{0}'.
- Не удается найти datacollector с понятным именем "{0}".
-
-
-
- Failed to load extensions from file '{0}'. Please use /diag for more information.
- Не удалось загрузить расширения из файла "{0}". Для получения дополнительных сведений используйте /diag.
-
-
-
- {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges. For more information, please look at the error message:
- {0} Отказано в доступе при попытке создания папки "TestResults" в указанном расположении. Это исключение возникло, так как вы запускаете файл vstest.console.exe из папки, для которой требуется доступ на запись. Чтобы устранить эту проблему, запустите vstest.console.exe из папки, для которой у вас есть разрешения на запись. Дополнительные сведения см. в сообщении об ошибке:
-
-
-
- Inner exception:
- Внутреннее исключение:
-
-
-
- Stack trace:
- Трассировка стека:
-
-
-
- <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> is not supported for sources test run.
- <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> не поддерживается для тестового запуска источников.
-
-
-
-
-
+
+
+
+
+
+ Data collection : {0}
+ Сбор данных: {0}
+
+
+
+ Data collector '{0}' message: {1}.
+ Сообщение сборщика данных "{0}": {1}.
+
+
+
+ Duplicate test extension URI '{0}'. Ignoring the duplicate extension.
+ Повторяющийся URI расширения теста "{0}". Повторяющееся расширение пропускается.
+
+
+
+ Duplicate settings provider named '{0}'. Ignoring the duplicate provider.
+ Повторяющийся поставщик параметров с именем "{0}". Повторяющийся поставщик пропускается.
+
+
+
+ Duplicate run settings section named '{0}' found. Ignoring the duplicate settings.
+ Обнаружен повторяющийся раздел параметров запуска с именем "{0}". Повторяющиеся параметры пропускаются.
+
+
+
+ Error: Empty parenthesis ( )
+ Ошибка: пустые круглые скобки ()
+
+
+
+ Error: Invalid Condition '{0}'
+ Ошибка: недопустимое условие "{0}"
+
+
+
+ Test Extension has an invalid URI '{0}': {1}
+ Расширение теста имеет недопустимый URI "{0}": {1}
+
+
+
+ Error: Invalid operator '{0}'
+ Ошибка: недопустимый оператор "{0}"
+
+
+
+ Exception occurred while initializing logger with {0}: '{1}'. The logger will not be used. Exception: {2}
+ Возникло исключение при инициализации средства ведения журнала с {0}: "{1}". Средство ведения журнала не будет использоваться. Исключение: {2}
+
+
+
+ Could not find a test logger with AssemblyQualifiedName, URI or FriendlyName '{0}'.
+ Не удалось найти средство ведения журнала тестирования с AssemblyQualifiedName, URI или FriendlyName "{0}".
+
+
+
+ Error: Missing ')'
+ Ошибка: отсутствует ")"
+
+
+
+ Error: Missing '('
+ Ошибка: отсутствует "("
+
+
+
+ Error: Missing operand
+ Ошибка: отсутствует операнд
+
+
+
+ Missing Operator '|' or '&'
+ Отсутствует оператор "|" или "&"
+
+
+
+ The Run Settings have already been loaded.
+ Параметры запуска уже загружены.
+
+
+
+ An error occurred while loading the run settings. Error: {0}
+ Произошла ошибка при загрузке параметров запуска. Ошибка: {0}
+
+
+
+ Invalid settings node specified. The name property of the settings node must be non-empty.
+ Указан недопустимый узел параметров. Узел параметров должен иметь допустимое значение для свойства имени.
+
+
+
+ An error occurred while initializing the settings provider named '{0}'. Error: {1}
+ При инициализации поставщика параметров с именем "{0}" произошла ошибка. Ошибка: {1}
+
+
+
+ Settings Provider named '{0}' was not found. The settings can not be loaded.
+ Поставщик параметров с именем "{0}" не найден. Невозможно загрузить параметры.
+
+
+
+ Incorrect format for TestCaseFilter {0}. Specify the correct format and try again. Note that the incorrect format can lead to no test getting executed.
+ Неверный формат фильтра TestCaseFilter {0}. Задайте правильный формат и повторите попытку. Обратите внимание, что использование неверного формата может привести к тому, что ни один из тестов не будет выполнен.
+
+
+
+ Data collector '{0}' failed to provide initialization information. Error: {1}
+ Сборщик данных "{0}" не предоставил сведения для инициализации. Ошибка: {1}
+
+
+
+ Data collector '{0}' threw an exception during type loading, construction, or initialization: {1}.
+ В сборщике данных "{0}" возникло исключение во время загрузки типа, создания или инициализации: {1}.
+
+
+
+ Could not find data collector '{0}'
+ Не удалось найти сборщик данных "{0}"
+
+
+
+ The data collector '{0}' requested environment variable '{1}' with value '{2}' to be set in test execution environment, but another data collector '{3}' has already requested same environment variable with different value '{4}'.
+ Сборщик данных "{0}" запросил, чтобы в окружении выполнения тестов была установлена переменная окружения "{1}" со значением "{2}", но другой сборщик данных "{3}" уже запросил эту переменную окружения со значением "{4}".
+
+
+
+ There are multiple configurations that have data collector FriendlyName as '{0}'. Duplicate configurations will be ignored in the test run.
+ Существует несколько конфигураций со значением "{0}" для FriendlyName сборщика данных. Повторяющиеся конфигурации будут пропущены в тестовом запуске.
+
+
+
+ Data collector caught an exception of type '{0}': '{1}'. More details: {2}.
+ В сборщике данных возникло исключение типа "{0}": "{1}". Дополнительные сведения: {2}.
+
+
+
+ Types deriving from the data collection context cannot be used for sending data and messages. The DataCollectionContext used for sending data and messages must come from one of the events raised to the data collector.
+ Нельзя использовать типы, производные от контекста сбора данных, для отправки данных и сообщений. Используемый для отправки данных и сообщений DataCollectionContext должен происходить от одного из событий, возникших для сборщика данных.
+
+
+
+ The Test Logger URI '{0}' is not valid. The Test Logger will be ignored.
+ URI средства ведения журнала тестирования "{0}" недопустимо. Это средство ведения журнала тестирования будет игнорироваться.
+
+
+
+ Failed to find the list of installed unit test extensions. Reason: {0}
+ Не удалось найти список установленных расширений модульных тестов. Причина: {0}
+
+
+
+ This option works only with vstest.console.exe installed as part of Visual Studio.
+ Этот параметр работает, только если в рамках Visual Studio установлена служебная программа vstest.console.exe.
+
+
+
+ An error occurred while creating Fast filter.
+ При создании быстрого фильтра произошла ошибка.
+
+
+
+ Cancelling the operation as requested.
+ Операция отменяется в соответствии с запросом.
+
+
+
+ Unable to find a datacollector with friendly name '{0}'.
+ Не удается найти datacollector с понятным именем "{0}".
+
+
+
+ Failed to load extensions from file '{0}'. Please use /diag for more information.
+ Не удалось загрузить расширения из файла "{0}". Для получения дополнительных сведений используйте /diag.
+
+
+
+ {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges. For more information, please look at the error message:
+ {0} Отказано в доступе при попытке создания папки "TestResults" в указанном расположении. Это исключение возникло, так как вы запускаете файл vstest.console.exe из папки, для которой требуется доступ на запись. Чтобы устранить эту проблему, запустите vstest.console.exe из папки, для которой у вас есть разрешения на запись. Дополнительные сведения см. в сообщении об ошибке:
+
+
+
+ Inner exception:
+ Внутреннее исключение:
+
+
+
+ Stack trace:
+ Трассировка стека:
+
+
+
+ <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> is not supported for sources test run.
+ <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> не поддерживается для тестового запуска источников.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.tr.xlf b/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.tr.xlf
index 7ed82cb017..6dba89fbd3 100644
--- a/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.tr.xlf
+++ b/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.tr.xlf
@@ -1,202 +1,202 @@
-
-
-
-
-
- Data collection : {0}
- Veri toplama: {0}
-
-
-
- Data collector '{0}' message: {1}.
- '{0}' veri toplayıcısı iletisi: {1}.
-
-
-
- Duplicate test extension URI '{0}'. Ignoring the duplicate extension.
- Yinelenen test uzantısı URI’si '{0}'. Yinelenen uzantı yoksayılıyor.
-
-
-
- Duplicate settings provider named '{0}'. Ignoring the duplicate provider.
- '{0}' adlı yinelenen ayar sağlayıcısı. Yinelenen sağlayıcı yoksayılıyor.
-
-
-
- Duplicate run settings section named '{0}' found. Ignoring the duplicate settings.
- '{0}' adlı yinelenen çalıştırma ayarları bölümü bulundu. Yinelenen ayarlar yoksayılıyor.
-
-
-
- Error: Empty parenthesis ( )
- Hata: Boş ayraç ( )
-
-
-
- Error: Invalid Condition '{0}'
- Hata: Geçersiz Koşul '{0}'
-
-
-
- Test Extension has an invalid URI '{0}': {1}
- Test Uzantısı geçersiz bir '{0}' URI’sine sahip: {1}
-
-
-
- Error: Invalid operator '{0}'
- Hata: Geçersiz işleç '{0}'
-
-
-
- Exception occurred while initializing logger with {0}: '{1}'. The logger will not be used. Exception: {2}
- Günlükçü, '{0}' ile başlatılırken özel durum oluştu: '{1}'. Günlükçü kullanılmayacak. Özel durum: {2}
-
-
-
- Could not find a test logger with AssemblyQualifiedName, URI or FriendlyName '{0}'.
- AssemblyQualifiedName, URI veya FriendlyName değeri '{0}' olan bir test günlükçüsü bulunamadı.
-
-
-
- Error: Missing ')'
- Hata: ')' eksik
-
-
-
- Error: Missing '('
- Hata: '(' eksik
-
-
-
- Error: Missing operand
- Hata: İşlenen eksik
-
-
-
- Missing Operator '|' or '&'
- '|' veya '&' işleci eksik
-
-
-
- The Run Settings have already been loaded.
- Çalıştırma Ayarları zaten yüklendi.
-
-
-
- An error occurred while loading the run settings. Error: {0}
- Çalıştırma ayarları yüklenirken bir hata oluştu. Hata: {0}
-
-
-
- Invalid settings node specified. The name property of the settings node must be non-empty.
- Belirtilen ayar düğümü geçersiz. Ayar düğümünün ad özelliği boş olmamalıdır.
-
-
-
- An error occurred while initializing the settings provider named '{0}'. Error: {1}
- '{0}' adlı ayar sağlayıcısı başlatılırken bir hata oluştu. Hata: {1}
-
-
-
- Settings Provider named '{0}' was not found. The settings can not be loaded.
- '{0}' adlı Ayar Sağlayıcısı bulunamadı. Ayarlar yüklenemiyor.
-
-
-
- Incorrect format for TestCaseFilter {0}. Specify the correct format and try again. Note that the incorrect format can lead to no test getting executed.
- TestCaseFilter {0} için yanlış biçim. Doğru biçimi belirtin ve yeniden deneyin. Yanlış biçim hiçbir testin yürütülmemesine neden olabilir.
-
-
-
- Data collector '{0}' failed to provide initialization information. Error: {1}
- '{0}' veri toplayıcısı başlatma bilgilerini sağlayamadı. Hata: {1}
-
-
-
- Data collector '{0}' threw an exception during type loading, construction, or initialization: {1}.
- '{0}' veri toplayıcısı tür yükleme, oluşturma veya başlatma sırasında bir özel durum oluşturdu: {1}.
-
-
-
- Could not find data collector '{0}'
- '{0}' veri toplayıcısı bulunamadı
-
-
-
- The data collector '{0}' requested environment variable '{1}' with value '{2}' to be set in test execution environment, but another data collector '{3}' has already requested same environment variable with different value '{4}'.
- '{0}' veri toplayıcısı, test yürütme ortamında değeri '{2}' olan '{1}' ortam değişkeninin ayarlanması için istekte bulundu, ancak başka bir veri toplayıcısı ('{3}') zaten farklı bir değerle ('{4}') aynı ortam değişkeni için istekte bulunmuştu.
-
-
-
- There are multiple configurations that have data collector FriendlyName as '{0}'. Duplicate configurations will be ignored in the test run.
- Veri toplayıcısı FriendlyName değeri '{0}' olan birden çok yapılandırma var. Yinelenen yapılandırmalar test çalıştırmasında yoksayılacak.
-
-
-
- Data collector caught an exception of type '{0}': '{1}'. More details: {2}.
- Veri toplayıcısı '{0}' türünde bir özel durum yakaladı: '{1}'. Diğer ayrıntılar:'{2}'.
-
-
-
- Types deriving from the data collection context cannot be used for sending data and messages. The DataCollectionContext used for sending data and messages must come from one of the events raised to the data collector.
- Veri koleksiyonu bağlamından türetilen türler, veri ve ileti göndermek için kullanılamaz. Veri ve ileti göndermek için kullanılan DataCollectionContext veri toplayıcısı yükseltilmiş olayların birinden gelmelidir.
-
-
-
- The Test Logger URI '{0}' is not valid. The Test Logger will be ignored.
- Test Günlükçüsünün '{0}' URI’si geçerli değil. Test Günlükçüsü yoksayılacak.
-
-
-
- Failed to find the list of installed unit test extensions. Reason: {0}
- Yüklenen birim testi uzantılarının listesi bulunamadı. Neden: {0}
-
-
-
- This option works only with vstest.console.exe installed as part of Visual Studio.
- Bu seçenek yalnızca Visual Studio’nun bir parçası olarak yüklenen vstest.console.exe ile birlikte çalışır.
-
-
-
- An error occurred while creating Fast filter.
- Hızlı filtre oluşturulurken bir hata oluştu.
-
-
-
- Cancelling the operation as requested.
- İşlem istek üzerine iptal ediliyor.
-
-
-
- Unable to find a datacollector with friendly name '{0}'.
- '{0}' kolay adına sahip bir datacollector bulunamadı.
-
-
-
- Failed to load extensions from file '{0}'. Please use /diag for more information.
- Uzantılar '{0}' dosyasından yüklenemedi. Daha fazla bilgi için lütfen /diag kullanın.
-
-
-
- {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges. For more information, please look at the error message:
- {0} Belirtilen konumda "TestResults" klasörü oluşturulmaya çalışılırken erişim engellendi. Yazma erişimi gerektiren bir klasörden vstest.console.exe çalıştırdığınız için bu özel durumu aldınız. Sorunu çözmek için: Lütfen yazma ayrıcalıklarına sahip olduğunuz bir klasörden vstest.console.exe dosyasını çalıştırın. Daha fazla bilgi için lütfen hata iletisine bakın:
-
-
-
- Inner exception:
- Özel iç durum:
-
-
-
- Stack trace:
- Yığın izleme:
-
-
-
- <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> is not supported for sources test run.
- <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> kaynak test çalıştırması için desteklenmiyor.
-
-
-
-
-
+
+
+
+
+
+ Data collection : {0}
+ Veri toplama: {0}
+
+
+
+ Data collector '{0}' message: {1}.
+ '{0}' veri toplayıcısı iletisi: {1}.
+
+
+
+ Duplicate test extension URI '{0}'. Ignoring the duplicate extension.
+ Yinelenen test uzantısı URI’si '{0}'. Yinelenen uzantı yoksayılıyor.
+
+
+
+ Duplicate settings provider named '{0}'. Ignoring the duplicate provider.
+ '{0}' adlı yinelenen ayar sağlayıcısı. Yinelenen sağlayıcı yoksayılıyor.
+
+
+
+ Duplicate run settings section named '{0}' found. Ignoring the duplicate settings.
+ '{0}' adlı yinelenen çalıştırma ayarları bölümü bulundu. Yinelenen ayarlar yoksayılıyor.
+
+
+
+ Error: Empty parenthesis ( )
+ Hata: Boş ayraç ( )
+
+
+
+ Error: Invalid Condition '{0}'
+ Hata: Geçersiz Koşul '{0}'
+
+
+
+ Test Extension has an invalid URI '{0}': {1}
+ Test Uzantısı geçersiz bir '{0}' URI’sine sahip: {1}
+
+
+
+ Error: Invalid operator '{0}'
+ Hata: Geçersiz işleç '{0}'
+
+
+
+ Exception occurred while initializing logger with {0}: '{1}'. The logger will not be used. Exception: {2}
+ Günlükçü, '{0}' ile başlatılırken özel durum oluştu: '{1}'. Günlükçü kullanılmayacak. Özel durum: {2}
+
+
+
+ Could not find a test logger with AssemblyQualifiedName, URI or FriendlyName '{0}'.
+ AssemblyQualifiedName, URI veya FriendlyName değeri '{0}' olan bir test günlükçüsü bulunamadı.
+
+
+
+ Error: Missing ')'
+ Hata: ')' eksik
+
+
+
+ Error: Missing '('
+ Hata: '(' eksik
+
+
+
+ Error: Missing operand
+ Hata: İşlenen eksik
+
+
+
+ Missing Operator '|' or '&'
+ '|' veya '&' işleci eksik
+
+
+
+ The Run Settings have already been loaded.
+ Çalıştırma Ayarları zaten yüklendi.
+
+
+
+ An error occurred while loading the run settings. Error: {0}
+ Çalıştırma ayarları yüklenirken bir hata oluştu. Hata: {0}
+
+
+
+ Invalid settings node specified. The name property of the settings node must be non-empty.
+ Belirtilen ayar düğümü geçersiz. Ayar düğümünün ad özelliği boş olmamalıdır.
+
+
+
+ An error occurred while initializing the settings provider named '{0}'. Error: {1}
+ '{0}' adlı ayar sağlayıcısı başlatılırken bir hata oluştu. Hata: {1}
+
+
+
+ Settings Provider named '{0}' was not found. The settings can not be loaded.
+ '{0}' adlı Ayar Sağlayıcısı bulunamadı. Ayarlar yüklenemiyor.
+
+
+
+ Incorrect format for TestCaseFilter {0}. Specify the correct format and try again. Note that the incorrect format can lead to no test getting executed.
+ TestCaseFilter {0} için yanlış biçim. Doğru biçimi belirtin ve yeniden deneyin. Yanlış biçim hiçbir testin yürütülmemesine neden olabilir.
+
+
+
+ Data collector '{0}' failed to provide initialization information. Error: {1}
+ '{0}' veri toplayıcısı başlatma bilgilerini sağlayamadı. Hata: {1}
+
+
+
+ Data collector '{0}' threw an exception during type loading, construction, or initialization: {1}.
+ '{0}' veri toplayıcısı tür yükleme, oluşturma veya başlatma sırasında bir özel durum oluşturdu: {1}.
+
+
+
+ Could not find data collector '{0}'
+ '{0}' veri toplayıcısı bulunamadı
+
+
+
+ The data collector '{0}' requested environment variable '{1}' with value '{2}' to be set in test execution environment, but another data collector '{3}' has already requested same environment variable with different value '{4}'.
+ '{0}' veri toplayıcısı, test yürütme ortamında değeri '{2}' olan '{1}' ortam değişkeninin ayarlanması için istekte bulundu, ancak başka bir veri toplayıcısı ('{3}') zaten farklı bir değerle ('{4}') aynı ortam değişkeni için istekte bulunmuştu.
+
+
+
+ There are multiple configurations that have data collector FriendlyName as '{0}'. Duplicate configurations will be ignored in the test run.
+ Veri toplayıcısı FriendlyName değeri '{0}' olan birden çok yapılandırma var. Yinelenen yapılandırmalar test çalıştırmasında yoksayılacak.
+
+
+
+ Data collector caught an exception of type '{0}': '{1}'. More details: {2}.
+ Veri toplayıcısı '{0}' türünde bir özel durum yakaladı: '{1}'. Diğer ayrıntılar:'{2}'.
+
+
+
+ Types deriving from the data collection context cannot be used for sending data and messages. The DataCollectionContext used for sending data and messages must come from one of the events raised to the data collector.
+ Veri koleksiyonu bağlamından türetilen türler, veri ve ileti göndermek için kullanılamaz. Veri ve ileti göndermek için kullanılan DataCollectionContext veri toplayıcısı yükseltilmiş olayların birinden gelmelidir.
+
+
+
+ The Test Logger URI '{0}' is not valid. The Test Logger will be ignored.
+ Test Günlükçüsünün '{0}' URI’si geçerli değil. Test Günlükçüsü yoksayılacak.
+
+
+
+ Failed to find the list of installed unit test extensions. Reason: {0}
+ Yüklenen birim testi uzantılarının listesi bulunamadı. Neden: {0}
+
+
+
+ This option works only with vstest.console.exe installed as part of Visual Studio.
+ Bu seçenek yalnızca Visual Studio’nun bir parçası olarak yüklenen vstest.console.exe ile birlikte çalışır.
+
+
+
+ An error occurred while creating Fast filter.
+ Hızlı filtre oluşturulurken bir hata oluştu.
+
+
+
+ Cancelling the operation as requested.
+ İşlem istek üzerine iptal ediliyor.
+
+
+
+ Unable to find a datacollector with friendly name '{0}'.
+ '{0}' kolay adına sahip bir datacollector bulunamadı.
+
+
+
+ Failed to load extensions from file '{0}'. Please use /diag for more information.
+ Uzantılar '{0}' dosyasından yüklenemedi. Daha fazla bilgi için lütfen /diag kullanın.
+
+
+
+ {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges. For more information, please look at the error message:
+ {0} Belirtilen konumda "TestResults" klasörü oluşturulmaya çalışılırken erişim engellendi. Yazma erişimi gerektiren bir klasörden vstest.console.exe çalıştırdığınız için bu özel durumu aldınız. Sorunu çözmek için: Lütfen yazma ayrıcalıklarına sahip olduğunuz bir klasörden vstest.console.exe dosyasını çalıştırın. Daha fazla bilgi için lütfen hata iletisine bakın:
+
+
+
+ Inner exception:
+ Özel iç durum:
+
+
+
+ Stack trace:
+ Yığın izleme:
+
+
+
+ <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> is not supported for sources test run.
+ <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> kaynak test çalıştırması için desteklenmiyor.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.zh-Hans.xlf b/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.zh-Hans.xlf
index 7824717b63..e6a274da6d 100644
--- a/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.zh-Hans.xlf
+++ b/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.zh-Hans.xlf
@@ -1,202 +1,202 @@
-
-
-
-
-
- Data collection : {0}
- 数据收集: {0}
-
-
-
- Data collector '{0}' message: {1}.
- 数据收集器“{0}”消息: {1}。
-
-
-
- Duplicate test extension URI '{0}'. Ignoring the duplicate extension.
- 测试扩展 URI“{0}”重复。忽略重复的扩展。
-
-
-
- Duplicate settings provider named '{0}'. Ignoring the duplicate provider.
- 名为“{0}”的设置提供程序重复。忽略重复的提供程序。
-
-
-
- Duplicate run settings section named '{0}' found. Ignoring the duplicate settings.
- 名为“{0}”的运行设置部分重复。请忽略重复的设置。
-
-
-
- Error: Empty parenthesis ( )
- 错误: 空括号 ( )
-
-
-
- Error: Invalid Condition '{0}'
- 错误: 无效条件“{0}”
-
-
-
- Test Extension has an invalid URI '{0}': {1}
- 测试扩展具有无效的 URI“{0}”: {1}
-
-
-
- Error: Invalid operator '{0}'
- 错误: 运算符“{0}”无效
-
-
-
- Exception occurred while initializing logger with {0}: '{1}'. The logger will not be used. Exception: {2}
- 初始化带有 {0} 的记录器时发生异常: "{1}"。将不会使用该记录器。异常: {2}
-
-
-
- Could not find a test logger with AssemblyQualifiedName, URI or FriendlyName '{0}'.
- 找不到 AssemblyQualifiedName、URI 或 FriendlyName 为 "{0}" 的测试记录器。
-
-
-
- Error: Missing ')'
- 错误: 缺少 ")"
-
-
-
- Error: Missing '('
- 错误: 缺少 "("
-
-
-
- Error: Missing operand
- 错误: 缺少操作数
-
-
-
- Missing Operator '|' or '&'
- 缺少运算符 '|' 或 '&'
-
-
-
- The Run Settings have already been loaded.
- 已加载运行设置。
-
-
-
- An error occurred while loading the run settings. Error: {0}
- 加载运行设置时出错。错误: {0}
-
-
-
- Invalid settings node specified. The name property of the settings node must be non-empty.
- 指定了无效的设置节点。设置节点的名称属性必须为非空。
-
-
-
- An error occurred while initializing the settings provider named '{0}'. Error: {1}
- 初始化名为“{0}”的设置提供程序时出错。错误: {1}
-
-
-
- Settings Provider named '{0}' was not found. The settings can not be loaded.
- 找不到名为“{0}”的设置提供程序。无法加载设置。
-
-
-
- Incorrect format for TestCaseFilter {0}. Specify the correct format and try again. Note that the incorrect format can lead to no test getting executed.
- TestCaseFilter {0} 的格式不正确。请指定正确的格式并重试。请注意,格式不正确会导致不执行任何测试。
-
-
-
- Data collector '{0}' failed to provide initialization information. Error: {1}
- 数据收集器“{0}”未能提供初始化信息。错误: {1}
-
-
-
- Data collector '{0}' threw an exception during type loading, construction, or initialization: {1}.
- 在类型加载、构造或初始化期间,数据收集器“{0}”引发了异常: {1}。
-
-
-
- Could not find data collector '{0}'
- 找不到数据收集器“{0}”
-
-
-
- The data collector '{0}' requested environment variable '{1}' with value '{2}' to be set in test execution environment, but another data collector '{3}' has already requested same environment variable with different value '{4}'.
- 数据收集器“{0}”已请求具有将在测试执行环境中设置的值“{2}”的环境变量“{1}”,但另一个数据收集器“{3}”已请求具有其他值“{4}”的同一环境变量。
-
-
-
- There are multiple configurations that have data collector FriendlyName as '{0}'. Duplicate configurations will be ignored in the test run.
- 有多个配置的数据收集器 FriendlyName 为“{0}”。测试运行中将忽略重复的配置。
-
-
-
- Data collector caught an exception of type '{0}': '{1}'. More details: {2}.
- 数据收集器已捕获类型为“{0}”的异常:“{1}”。更多详细信息: {2}。
-
-
-
- Types deriving from the data collection context cannot be used for sending data and messages. The DataCollectionContext used for sending data and messages must come from one of the events raised to the data collector.
- 从数据收集上下文派生的类型不能用于发送数据和消息。 用于发送数据和消息的 DataCollectionContext 必须来自向数据收集器引发的某个事件。
-
-
-
- The Test Logger URI '{0}' is not valid. The Test Logger will be ignored.
- 测试记录器 URI“{0}”无效。将忽略该测试记录器。
-
-
-
- Failed to find the list of installed unit test extensions. Reason: {0}
- 找不到已安装的单元测试扩展列表。原因: {0}
-
-
-
- This option works only with vstest.console.exe installed as part of Visual Studio.
- 此选项仅适用于作为 Visual Studio 一部分安装的 vstest.console.exe。
-
-
-
- An error occurred while creating Fast filter.
- 创建“快”筛选器时遇到错误。
-
-
-
- Cancelling the operation as requested.
- 按要求取消该操作。
-
-
-
- Unable to find a datacollector with friendly name '{0}'.
- 找不到友好名称为“{0}”的 datacollector。
-
-
-
- Failed to load extensions from file '{0}'. Please use /diag for more information.
- 未能从文件 "{0}" 加载扩展。有关详细信息,请使用 /diag。
-
-
-
- {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges. For more information, please look at the error message:
- {0} 尝试在所述位置创建 "TestResults" 文件夹时,访问被拒。你收到此异常是因为你正在从需要具有写入权限的文件夹运行 vstest.console.exe。若要解决此问题,请从你具有写入权限的文件夹运行 vstest.console.exe。有关详细信息,请查看错误消息:
-
-
-
- Inner exception:
- 内部异常:
-
-
-
- Stack trace:
- 堆栈跟踪:
-
-
-
- <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> is not supported for sources test run.
- 源测试运行不支持 <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost>。
-
-
-
-
-
+
+
+
+
+
+ Data collection : {0}
+ 数据收集: {0}
+
+
+
+ Data collector '{0}' message: {1}.
+ 数据收集器“{0}”消息: {1}。
+
+
+
+ Duplicate test extension URI '{0}'. Ignoring the duplicate extension.
+ 测试扩展 URI“{0}”重复。忽略重复的扩展。
+
+
+
+ Duplicate settings provider named '{0}'. Ignoring the duplicate provider.
+ 名为“{0}”的设置提供程序重复。忽略重复的提供程序。
+
+
+
+ Duplicate run settings section named '{0}' found. Ignoring the duplicate settings.
+ 名为“{0}”的运行设置部分重复。请忽略重复的设置。
+
+
+
+ Error: Empty parenthesis ( )
+ 错误: 空括号 ( )
+
+
+
+ Error: Invalid Condition '{0}'
+ 错误: 无效条件“{0}”
+
+
+
+ Test Extension has an invalid URI '{0}': {1}
+ 测试扩展具有无效的 URI“{0}”: {1}
+
+
+
+ Error: Invalid operator '{0}'
+ 错误: 运算符“{0}”无效
+
+
+
+ Exception occurred while initializing logger with {0}: '{1}'. The logger will not be used. Exception: {2}
+ 初始化带有 {0} 的记录器时发生异常: "{1}"。将不会使用该记录器。异常: {2}
+
+
+
+ Could not find a test logger with AssemblyQualifiedName, URI or FriendlyName '{0}'.
+ 找不到 AssemblyQualifiedName、URI 或 FriendlyName 为 "{0}" 的测试记录器。
+
+
+
+ Error: Missing ')'
+ 错误: 缺少 ")"
+
+
+
+ Error: Missing '('
+ 错误: 缺少 "("
+
+
+
+ Error: Missing operand
+ 错误: 缺少操作数
+
+
+
+ Missing Operator '|' or '&'
+ 缺少运算符 '|' 或 '&'
+
+
+
+ The Run Settings have already been loaded.
+ 已加载运行设置。
+
+
+
+ An error occurred while loading the run settings. Error: {0}
+ 加载运行设置时出错。错误: {0}
+
+
+
+ Invalid settings node specified. The name property of the settings node must be non-empty.
+ 指定了无效的设置节点。设置节点的名称属性必须为非空。
+
+
+
+ An error occurred while initializing the settings provider named '{0}'. Error: {1}
+ 初始化名为“{0}”的设置提供程序时出错。错误: {1}
+
+
+
+ Settings Provider named '{0}' was not found. The settings can not be loaded.
+ 找不到名为“{0}”的设置提供程序。无法加载设置。
+
+
+
+ Incorrect format for TestCaseFilter {0}. Specify the correct format and try again. Note that the incorrect format can lead to no test getting executed.
+ TestCaseFilter {0} 的格式不正确。请指定正确的格式并重试。请注意,格式不正确会导致不执行任何测试。
+
+
+
+ Data collector '{0}' failed to provide initialization information. Error: {1}
+ 数据收集器“{0}”未能提供初始化信息。错误: {1}
+
+
+
+ Data collector '{0}' threw an exception during type loading, construction, or initialization: {1}.
+ 在类型加载、构造或初始化期间,数据收集器“{0}”引发了异常: {1}。
+
+
+
+ Could not find data collector '{0}'
+ 找不到数据收集器“{0}”
+
+
+
+ The data collector '{0}' requested environment variable '{1}' with value '{2}' to be set in test execution environment, but another data collector '{3}' has already requested same environment variable with different value '{4}'.
+ 数据收集器“{0}”已请求具有将在测试执行环境中设置的值“{2}”的环境变量“{1}”,但另一个数据收集器“{3}”已请求具有其他值“{4}”的同一环境变量。
+
+
+
+ There are multiple configurations that have data collector FriendlyName as '{0}'. Duplicate configurations will be ignored in the test run.
+ 有多个配置的数据收集器 FriendlyName 为“{0}”。测试运行中将忽略重复的配置。
+
+
+
+ Data collector caught an exception of type '{0}': '{1}'. More details: {2}.
+ 数据收集器已捕获类型为“{0}”的异常:“{1}”。更多详细信息: {2}。
+
+
+
+ Types deriving from the data collection context cannot be used for sending data and messages. The DataCollectionContext used for sending data and messages must come from one of the events raised to the data collector.
+ 从数据收集上下文派生的类型不能用于发送数据和消息。 用于发送数据和消息的 DataCollectionContext 必须来自向数据收集器引发的某个事件。
+
+
+
+ The Test Logger URI '{0}' is not valid. The Test Logger will be ignored.
+ 测试记录器 URI“{0}”无效。将忽略该测试记录器。
+
+
+
+ Failed to find the list of installed unit test extensions. Reason: {0}
+ 找不到已安装的单元测试扩展列表。原因: {0}
+
+
+
+ This option works only with vstest.console.exe installed as part of Visual Studio.
+ 此选项仅适用于作为 Visual Studio 一部分安装的 vstest.console.exe。
+
+
+
+ An error occurred while creating Fast filter.
+ 创建“快”筛选器时遇到错误。
+
+
+
+ Cancelling the operation as requested.
+ 按要求取消该操作。
+
+
+
+ Unable to find a datacollector with friendly name '{0}'.
+ 找不到友好名称为“{0}”的 datacollector。
+
+
+
+ Failed to load extensions from file '{0}'. Please use /diag for more information.
+ 未能从文件 "{0}" 加载扩展。有关详细信息,请使用 /diag。
+
+
+
+ {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges. For more information, please look at the error message:
+ {0} 尝试在所述位置创建 "TestResults" 文件夹时,访问被拒。你收到此异常是因为你正在从需要具有写入权限的文件夹运行 vstest.console.exe。若要解决此问题,请从你具有写入权限的文件夹运行 vstest.console.exe。有关详细信息,请查看错误消息:
+
+
+
+ Inner exception:
+ 内部异常:
+
+
+
+ Stack trace:
+ 堆栈跟踪:
+
+
+
+ <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> is not supported for sources test run.
+ 源测试运行不支持 <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost>。
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.zh-Hant.xlf b/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.zh-Hant.xlf
index 09644aec0b..b8b68c3ba4 100644
--- a/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.zh-Hant.xlf
+++ b/src/Microsoft.TestPlatform.Common/Resources/xlf/Resources.zh-Hant.xlf
@@ -1,202 +1,202 @@
-
-
-
-
-
- Data collection : {0}
- 資料收集: {0}
-
-
-
- Data collector '{0}' message: {1}.
- 資料收集器 '{0}' 的訊息: {1}。
-
-
-
- Duplicate test extension URI '{0}'. Ignoring the duplicate extension.
- 重複的測試延伸模組 URI '{0}'。忽略重複的延伸模組。
-
-
-
- Duplicate settings provider named '{0}'. Ignoring the duplicate provider.
- 名為 '{0}' 的重複的設定提供者。忽略重複的提供者。
-
-
-
- Duplicate run settings section named '{0}' found. Ignoring the duplicate settings.
- 找到名為 '{0}' 的重複執行設定區段。忽略重複的設定。
-
-
-
- Error: Empty parenthesis ( )
- 錯誤: 空的括弧 ( )
-
-
-
- Error: Invalid Condition '{0}'
- 錯誤: 條件 '{0}' 無效
-
-
-
- Test Extension has an invalid URI '{0}': {1}
- 測試延伸模組的 URI '{0}' 無效: {1}
-
-
-
- Error: Invalid operator '{0}'
- 錯誤: 運算子 '{0}' 無效
-
-
-
- Exception occurred while initializing logger with {0}: '{1}'. The logger will not be used. Exception: {2}
- 初始化具有 '{0}' 的記錄器時,發生例外狀況: '{1}'。將不會使用此記錄器。例外狀況: {2}
-
-
-
- Could not find a test logger with AssemblyQualifiedName, URI or FriendlyName '{0}'.
- 找不到具有 AssemblyQualifiedName、URI 或 FriendlyName '{0}' 的測試記錄器。
-
-
-
- Error: Missing ')'
- 錯誤: 遺漏 ')'
-
-
-
- Error: Missing '('
- 錯誤: 遺漏 '('
-
-
-
- Error: Missing operand
- 錯誤: 遺漏運算元
-
-
-
- Missing Operator '|' or '&'
- 遺漏運算子 '|' 或 '&'
-
-
-
- The Run Settings have already been loaded.
- 已載入 [回合設定]。
-
-
-
- An error occurred while loading the run settings. Error: {0}
- 載入回合設定時發生錯誤。錯誤: {0}
-
-
-
- Invalid settings node specified. The name property of the settings node must be non-empty.
- 指定的設定節點無效。設定節點的名稱屬性必須為非空白。
-
-
-
- An error occurred while initializing the settings provider named '{0}'. Error: {1}
- 將名為 '{0}' 的設定提供者初始化時發生錯誤。錯誤: {1}
-
-
-
- Settings Provider named '{0}' was not found. The settings can not be loaded.
- 找不到名為 '{0}' 的設定提供者。無法載入設定。
-
-
-
- Incorrect format for TestCaseFilter {0}. Specify the correct format and try again. Note that the incorrect format can lead to no test getting executed.
- TestCaseFilter {0} 的格式不正確。請指定正確的格式後再試一次。請注意,格式不正確可能會導致無法執行測試。
-
-
-
- Data collector '{0}' failed to provide initialization information. Error: {1}
- 資料收集器 '{0}' 無法提供初始化資訊。錯誤: {1}
-
-
-
- Data collector '{0}' threw an exception during type loading, construction, or initialization: {1}.
- 載入、建構或初始化類型期間,資料收集器 '{0}'擲回例外狀況: {1}。
-
-
-
- Could not find data collector '{0}'
- 找不到資料收集器 '{0}'
-
-
-
- The data collector '{0}' requested environment variable '{1}' with value '{2}' to be set in test execution environment, but another data collector '{3}' has already requested same environment variable with different value '{4}'.
- 資料收集器 '{0}' 要求要在測試執行環境中將環境變數 '{1}' 的值設為 '{2}',但另一個資料收集器 '{3}' 已要求了同一個環境變數,但具有不同的值 '{4}'。
-
-
-
- There are multiple configurations that have data collector FriendlyName as '{0}'. Duplicate configurations will be ignored in the test run.
- 有多個組態的資料收集器 FriendlyName 為 '{0}'。在測試回合中,重複的組態將予忽略。
-
-
-
- Data collector caught an exception of type '{0}': '{1}'. More details: {2}.
- 資料收集器攔截到類型為 '{0}' 的例外狀況: '{1}'。更多詳細資料: {2}。
-
-
-
- Types deriving from the data collection context cannot be used for sending data and messages. The DataCollectionContext used for sending data and messages must come from one of the events raised to the data collector.
- 衍生自資料收集內容的類型無法用於傳送資料和訊息。用於傳送資料和訊息的 DataCollectionContext 必須來自其中一個引發資料收集器的事件。
-
-
-
- The Test Logger URI '{0}' is not valid. The Test Logger will be ignored.
- 測試記錄器 URI '{0}' 無效。將忽略測試記錄器。
-
-
-
- Failed to find the list of installed unit test extensions. Reason: {0}
- 無法找到已安裝之單元測試延伸模組的清單。原因: {0}
-
-
-
- This option works only with vstest.console.exe installed as part of Visual Studio.
- 此選項僅適用於隨 Visual Studio 安裝的 vstest.console.exe。
-
-
-
- An error occurred while creating Fast filter.
- 建立快速篩選時發生錯誤。
-
-
-
- Cancelling the operation as requested.
- 正在應要求取消作業。
-
-
-
- Unable to find a datacollector with friendly name '{0}'.
- 找不到易記名稱為 '{0}' 的 datacollector。
-
-
-
- Failed to load extensions from file '{0}'. Please use /diag for more information.
- 無法從檔案 '{0}' 載入延伸模組。如需詳細資訊,請使用 /diag。
-
-
-
- {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges. For more information, please look at the error message:
- {0} 嘗試在提及的位置上建立 "TestResults" 資料夾時存取被拒。因為您正從需要寫入存取權的資料夾執行 vstest.console.exe,所以收到此例外狀況。若要解決此問題: 請從您有權寫入的資料夾執行 vstest.console.exe。如需詳細資訊,請參閱錯誤訊息:
-
-
-
- Inner exception:
- 內部例外狀況:
-
-
-
- Stack trace:
- 堆疊追蹤:
-
-
-
- <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> is not supported for sources test run.
- 來源測試回合不支援 <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost>。
-
-
-
-
-
+
+
+
+
+
+ Data collection : {0}
+ 資料收集: {0}
+
+
+
+ Data collector '{0}' message: {1}.
+ 資料收集器 '{0}' 的訊息: {1}。
+
+
+
+ Duplicate test extension URI '{0}'. Ignoring the duplicate extension.
+ 重複的測試延伸模組 URI '{0}'。忽略重複的延伸模組。
+
+
+
+ Duplicate settings provider named '{0}'. Ignoring the duplicate provider.
+ 名為 '{0}' 的重複的設定提供者。忽略重複的提供者。
+
+
+
+ Duplicate run settings section named '{0}' found. Ignoring the duplicate settings.
+ 找到名為 '{0}' 的重複執行設定區段。忽略重複的設定。
+
+
+
+ Error: Empty parenthesis ( )
+ 錯誤: 空的括弧 ( )
+
+
+
+ Error: Invalid Condition '{0}'
+ 錯誤: 條件 '{0}' 無效
+
+
+
+ Test Extension has an invalid URI '{0}': {1}
+ 測試延伸模組的 URI '{0}' 無效: {1}
+
+
+
+ Error: Invalid operator '{0}'
+ 錯誤: 運算子 '{0}' 無效
+
+
+
+ Exception occurred while initializing logger with {0}: '{1}'. The logger will not be used. Exception: {2}
+ 初始化具有 '{0}' 的記錄器時,發生例外狀況: '{1}'。將不會使用此記錄器。例外狀況: {2}
+
+
+
+ Could not find a test logger with AssemblyQualifiedName, URI or FriendlyName '{0}'.
+ 找不到具有 AssemblyQualifiedName、URI 或 FriendlyName '{0}' 的測試記錄器。
+
+
+
+ Error: Missing ')'
+ 錯誤: 遺漏 ')'
+
+
+
+ Error: Missing '('
+ 錯誤: 遺漏 '('
+
+
+
+ Error: Missing operand
+ 錯誤: 遺漏運算元
+
+
+
+ Missing Operator '|' or '&'
+ 遺漏運算子 '|' 或 '&'
+
+
+
+ The Run Settings have already been loaded.
+ 已載入 [回合設定]。
+
+
+
+ An error occurred while loading the run settings. Error: {0}
+ 載入回合設定時發生錯誤。錯誤: {0}
+
+
+
+ Invalid settings node specified. The name property of the settings node must be non-empty.
+ 指定的設定節點無效。設定節點的名稱屬性必須為非空白。
+
+
+
+ An error occurred while initializing the settings provider named '{0}'. Error: {1}
+ 將名為 '{0}' 的設定提供者初始化時發生錯誤。錯誤: {1}
+
+
+
+ Settings Provider named '{0}' was not found. The settings can not be loaded.
+ 找不到名為 '{0}' 的設定提供者。無法載入設定。
+
+
+
+ Incorrect format for TestCaseFilter {0}. Specify the correct format and try again. Note that the incorrect format can lead to no test getting executed.
+ TestCaseFilter {0} 的格式不正確。請指定正確的格式後再試一次。請注意,格式不正確可能會導致無法執行測試。
+
+
+
+ Data collector '{0}' failed to provide initialization information. Error: {1}
+ 資料收集器 '{0}' 無法提供初始化資訊。錯誤: {1}
+
+
+
+ Data collector '{0}' threw an exception during type loading, construction, or initialization: {1}.
+ 載入、建構或初始化類型期間,資料收集器 '{0}'擲回例外狀況: {1}。
+
+
+
+ Could not find data collector '{0}'
+ 找不到資料收集器 '{0}'
+
+
+
+ The data collector '{0}' requested environment variable '{1}' with value '{2}' to be set in test execution environment, but another data collector '{3}' has already requested same environment variable with different value '{4}'.
+ 資料收集器 '{0}' 要求要在測試執行環境中將環境變數 '{1}' 的值設為 '{2}',但另一個資料收集器 '{3}' 已要求了同一個環境變數,但具有不同的值 '{4}'。
+
+
+
+ There are multiple configurations that have data collector FriendlyName as '{0}'. Duplicate configurations will be ignored in the test run.
+ 有多個組態的資料收集器 FriendlyName 為 '{0}'。在測試回合中,重複的組態將予忽略。
+
+
+
+ Data collector caught an exception of type '{0}': '{1}'. More details: {2}.
+ 資料收集器攔截到類型為 '{0}' 的例外狀況: '{1}'。更多詳細資料: {2}。
+
+
+
+ Types deriving from the data collection context cannot be used for sending data and messages. The DataCollectionContext used for sending data and messages must come from one of the events raised to the data collector.
+ 衍生自資料收集內容的類型無法用於傳送資料和訊息。用於傳送資料和訊息的 DataCollectionContext 必須來自其中一個引發資料收集器的事件。
+
+
+
+ The Test Logger URI '{0}' is not valid. The Test Logger will be ignored.
+ 測試記錄器 URI '{0}' 無效。將忽略測試記錄器。
+
+
+
+ Failed to find the list of installed unit test extensions. Reason: {0}
+ 無法找到已安裝之單元測試延伸模組的清單。原因: {0}
+
+
+
+ This option works only with vstest.console.exe installed as part of Visual Studio.
+ 此選項僅適用於隨 Visual Studio 安裝的 vstest.console.exe。
+
+
+
+ An error occurred while creating Fast filter.
+ 建立快速篩選時發生錯誤。
+
+
+
+ Cancelling the operation as requested.
+ 正在應要求取消作業。
+
+
+
+ Unable to find a datacollector with friendly name '{0}'.
+ 找不到易記名稱為 '{0}' 的 datacollector。
+
+
+
+ Failed to load extensions from file '{0}'. Please use /diag for more information.
+ 無法從檔案 '{0}' 載入延伸模組。如需詳細資訊,請使用 /diag。
+
+
+
+ {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges. For more information, please look at the error message:
+ {0} 嘗試在提及的位置上建立 "TestResults" 資料夾時存取被拒。因為您正從需要寫入存取權的資料夾執行 vstest.console.exe,所以收到此例外狀況。若要解決此問題: 請從您有權寫入的資料夾執行 vstest.console.exe。如需詳細資訊,請參閱錯誤訊息:
+
+
+
+ Inner exception:
+ 內部例外狀況:
+
+
+
+ Stack trace:
+ 堆疊追蹤:
+
+
+
+ <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost> is not supported for sources test run.
+ 來源測試回合不支援 <ForceOneTestAtTimePerTestHost>true</ForceOneTestAtTimePerTestHost>。
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.Common/Utilities/InstallationContext.cs b/src/Microsoft.TestPlatform.Common/Utilities/InstallationContext.cs
index 267faa0d58..6c0c0bebaa 100644
--- a/src/Microsoft.TestPlatform.Common/Utilities/InstallationContext.cs
+++ b/src/Microsoft.TestPlatform.Common/Utilities/InstallationContext.cs
@@ -3,7 +3,6 @@
using System.Diagnostics.CodeAnalysis;
using System.IO;
-using System.Reflection;
using Microsoft.VisualStudio.TestPlatform.PlatformAbstractions;
using Microsoft.VisualStudio.TestPlatform.Utilities.Helpers.Interfaces;
@@ -25,7 +24,7 @@ public InstallationContext(IFileHelper fileHelper)
public bool TryGetVisualStudioDirectory(out string visualStudioDirectory)
{
- var vsInstallPath = new DirectoryInfo(typeof(InstallationContext).GetTypeInfo().Assembly.GetAssemblyLocation()).Parent?.Parent?.Parent?.FullName;
+ var vsInstallPath = new DirectoryInfo(typeof(InstallationContext).Assembly.GetAssemblyLocation()).Parent?.Parent?.Parent?.FullName;
if (!vsInstallPath.IsNullOrEmpty())
{
var pathToDevenv = Path.Combine(vsInstallPath, DevenvExe);
diff --git a/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.cs.xlf b/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.cs.xlf
index fd5222a835..8573e3d270 100644
--- a/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.cs.xlf
+++ b/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.cs.xlf
@@ -1,62 +1,62 @@
-
-
-
-
-
- The active test run was aborted. Reason: {0}
- Aktivní testovací běh se přerušil. Důvod: {0}
-
-
-
- An existing connection was forcibly closed by the remote host.
- Vzdálený hostitel vynutil ukončení existujícího připojení.
-
-
-
- The active test discovery was aborted.
- Aktivní zjišťování testů se přerušilo.
-
-
-
- The active test discovery was aborted. Reason: {0}
- Aktivní zjišťování testu se přerušilo. Důvod: {0}
-
-
-
- Unable to communicate with test host process.
- Nepovedlo se navázat komunikaci s procesem hostitele testu.
-
-
-
- Unexpected message received. Expected MessageType : {0} Actual MessageType: {1}
- Byla přijata neočekávaná zpráva. Očekávaný typ zprávy: {0} Skutečný typ zprávy: {1}
-
-
-
- Protocol version check failed. Make sure test runner and host are compatible.
- Kontrola verze protokolu selhala. Ověřte, jestli je spouštěč testů kompatibilní s hostitelem.
-
-
-
- Failed to negotiate protocol, waiting for response timed out after {0} seconds. This may occur due to machine slowness, please set environment variable {1} to increase timeout.
- Nepodařilo se vyjednat protokol. Po {0} s vypršel časový limit čekání na odezvu. Důvodem může být pomalý počítač. Nastavením proměnné prostředí {1} prosím časový limit prodlužte.
-
-
-
- {0} process failed to connect to {1} process after {2} seconds. This may occur due to machine slowness, please set environment variable {3} to increase timeout.
- Procesu {0} se nepovedlo připojit k procesu {1} ani po {2} s. Důvodem může být pomalý počítač. Nastavením proměnné prostředí {3} prosím časový limit prodlužte.
-
-
-
- Test host process crashed
- Proces testovacího hostitele se chybově ukončil.
-
-
-
- Cannot attach the debugger to the default test host.
- Ladicí program se nedá připojit k výchozímu hostiteli testů.
-
-
-
-
-
+
+
+
+
+
+ The active test run was aborted. Reason: {0}
+ Aktivní testovací běh se přerušil. Důvod: {0}
+
+
+
+ An existing connection was forcibly closed by the remote host.
+ Vzdálený hostitel vynutil ukončení existujícího připojení.
+
+
+
+ The active test discovery was aborted.
+ Aktivní zjišťování testů se přerušilo.
+
+
+
+ The active test discovery was aborted. Reason: {0}
+ Aktivní zjišťování testu se přerušilo. Důvod: {0}
+
+
+
+ Unable to communicate with test host process.
+ Nepovedlo se navázat komunikaci s procesem hostitele testu.
+
+
+
+ Unexpected message received. Expected MessageType : {0} Actual MessageType: {1}
+ Byla přijata neočekávaná zpráva. Očekávaný typ zprávy: {0} Skutečný typ zprávy: {1}
+
+
+
+ Protocol version check failed. Make sure test runner and host are compatible.
+ Kontrola verze protokolu selhala. Ověřte, jestli je spouštěč testů kompatibilní s hostitelem.
+
+
+
+ Failed to negotiate protocol, waiting for response timed out after {0} seconds. This may occur due to machine slowness, please set environment variable {1} to increase timeout.
+ Nepodařilo se vyjednat protokol. Po {0} s vypršel časový limit čekání na odezvu. Důvodem může být pomalý počítač. Nastavením proměnné prostředí {1} prosím časový limit prodlužte.
+
+
+
+ {0} process failed to connect to {1} process after {2} seconds. This may occur due to machine slowness, please set environment variable {3} to increase timeout.
+ Procesu {0} se nepovedlo připojit k procesu {1} ani po {2} s. Důvodem může být pomalý počítač. Nastavením proměnné prostředí {3} prosím časový limit prodlužte.
+
+
+
+ Test host process crashed
+ Proces testovacího hostitele se chybově ukončil.
+
+
+
+ Cannot attach the debugger to the default test host.
+ Ladicí program se nedá připojit k výchozímu hostiteli testů.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.de.xlf b/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.de.xlf
index 45d6a652d0..f94cf5c424 100644
--- a/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.de.xlf
+++ b/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.de.xlf
@@ -1,62 +1,62 @@
-
-
-
-
-
- The active test run was aborted. Reason: {0}
- Der aktive Testlauf wurde abgebrochen. Grund: {0}
-
-
-
- An existing connection was forcibly closed by the remote host.
- Das Schließen einer vorhandenen Verbindung wurde vom Remotehost erzwungen.
-
-
-
- The active test discovery was aborted.
- Die aktive Testerkennung wurde abgebrochen.
-
-
-
- The active test discovery was aborted. Reason: {0}
- Die aktive Testermittlung wurde abgebrochen. Grund: {0}
-
-
-
- Unable to communicate with test host process.
- Die Kommunikation mit dem Testhostprozess ist nicht möglich.
-
-
-
- Unexpected message received. Expected MessageType : {0} Actual MessageType: {1}
- Unerwartete Meldung empfangen. Erwarteter MessageType: {0}. Tatsächlicher MessageType: {1}
-
-
-
- Protocol version check failed. Make sure test runner and host are compatible.
- Fehler beim Überprüfen der Protokollversion. Der Test Runner und der Host müssen kompatibel sein.
-
-
-
- Failed to negotiate protocol, waiting for response timed out after {0} seconds. This may occur due to machine slowness, please set environment variable {1} to increase timeout.
- Fehler beim Verhandeln des Protokolls. Timeout beim Warten auf Antwort nach {0} Sekunden. Möglicherweise ist der Computer langsam. Legen Sie die Umgebungsvariable "{1}" fest, um den Timeoutwert zu erhöhen.
-
-
-
- {0} process failed to connect to {1} process after {2} seconds. This may occur due to machine slowness, please set environment variable {3} to increase timeout.
- Fehler beim Herstellen einer Verbindung des Prozesses "{0}" mit dem Prozess "{1}" nach {2} Sekunden. Möglicherweise ist der Computer langsam. Legen Sie die Umgebungsvariable "{3}" fest, um den Timeoutwert zu erhöhen.
-
-
-
- Test host process crashed
- Der Testhostprozess ist abgestürzt.
-
-
-
- Cannot attach the debugger to the default test host.
- Der Debugger kann nicht an den Standardtesthost angefügt werden.
-
-
-
-
-
+
+
+
+
+
+ The active test run was aborted. Reason: {0}
+ Der aktive Testlauf wurde abgebrochen. Grund: {0}
+
+
+
+ An existing connection was forcibly closed by the remote host.
+ Das Schließen einer vorhandenen Verbindung wurde vom Remotehost erzwungen.
+
+
+
+ The active test discovery was aborted.
+ Die aktive Testerkennung wurde abgebrochen.
+
+
+
+ The active test discovery was aborted. Reason: {0}
+ Die aktive Testermittlung wurde abgebrochen. Grund: {0}
+
+
+
+ Unable to communicate with test host process.
+ Die Kommunikation mit dem Testhostprozess ist nicht möglich.
+
+
+
+ Unexpected message received. Expected MessageType : {0} Actual MessageType: {1}
+ Unerwartete Meldung empfangen. Erwarteter MessageType: {0}. Tatsächlicher MessageType: {1}
+
+
+
+ Protocol version check failed. Make sure test runner and host are compatible.
+ Fehler beim Überprüfen der Protokollversion. Der Test Runner und der Host müssen kompatibel sein.
+
+
+
+ Failed to negotiate protocol, waiting for response timed out after {0} seconds. This may occur due to machine slowness, please set environment variable {1} to increase timeout.
+ Fehler beim Verhandeln des Protokolls. Timeout beim Warten auf Antwort nach {0} Sekunden. Möglicherweise ist der Computer langsam. Legen Sie die Umgebungsvariable "{1}" fest, um den Timeoutwert zu erhöhen.
+
+
+
+ {0} process failed to connect to {1} process after {2} seconds. This may occur due to machine slowness, please set environment variable {3} to increase timeout.
+ Fehler beim Herstellen einer Verbindung des Prozesses "{0}" mit dem Prozess "{1}" nach {2} Sekunden. Möglicherweise ist der Computer langsam. Legen Sie die Umgebungsvariable "{3}" fest, um den Timeoutwert zu erhöhen.
+
+
+
+ Test host process crashed
+ Der Testhostprozess ist abgestürzt.
+
+
+
+ Cannot attach the debugger to the default test host.
+ Der Debugger kann nicht an den Standardtesthost angefügt werden.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.es.xlf b/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.es.xlf
index 0be6bf04d0..2143343451 100644
--- a/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.es.xlf
+++ b/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.es.xlf
@@ -1,62 +1,62 @@
-
-
-
-
-
- The active test run was aborted. Reason: {0}
- Se ha anulado la serie de pruebas activa. Motivo: {0}
-
-
-
- An existing connection was forcibly closed by the remote host.
- El host remoto forzó el cierre de una conexión.
-
-
-
- The active test discovery was aborted.
- Se ha anulado la detección de pruebas activa.
-
-
-
- The active test discovery was aborted. Reason: {0}
- Se ha anulado la detección de pruebas activa. Motivo: {0}
-
-
-
- Unable to communicate with test host process.
- No se puede establecer comunicación con el proceso del host de pruebas.
-
-
-
- Unexpected message received. Expected MessageType : {0} Actual MessageType: {1}
- Se ha recibido un mensaje inesperado. Tipo de mensaje esperado: {0} Tipo de mensaje real: {1}
-
-
-
- Protocol version check failed. Make sure test runner and host are compatible.
- Error en la comprobación de la versión del protocolo. Asegúrese de que el ejecutor de pruebas y el host son compatibles.
-
-
-
- Failed to negotiate protocol, waiting for response timed out after {0} seconds. This may occur due to machine slowness, please set environment variable {1} to increase timeout.
- No se pudo negociar el protocolo, se agotó el tiempo de espera para la respuesta después de {0} segundos. Esto puede deberse a la lentitud de la máquina, configure la variable de entorno {1} para aumentar el tiempo de espera.
-
-
-
- {0} process failed to connect to {1} process after {2} seconds. This may occur due to machine slowness, please set environment variable {3} to increase timeout.
- El proceso {0} no pudo conectar con el proceso {1} después de {2} segundos. Esto puede deberse a la lentitud de la máquina, configure la variable de entorno {3} para aumentar el tiempo de espera.
-
-
-
- Test host process crashed
- Proceso de host de pruebas bloqueado
-
-
-
- Cannot attach the debugger to the default test host.
- No se puede asociar el depurador al host de prueba predeterminado.
-
-
-
-
-
+
+
+
+
+
+ The active test run was aborted. Reason: {0}
+ Se ha anulado la serie de pruebas activa. Motivo: {0}
+
+
+
+ An existing connection was forcibly closed by the remote host.
+ El host remoto forzó el cierre de una conexión.
+
+
+
+ The active test discovery was aborted.
+ Se ha anulado la detección de pruebas activa.
+
+
+
+ The active test discovery was aborted. Reason: {0}
+ Se ha anulado la detección de pruebas activa. Motivo: {0}
+
+
+
+ Unable to communicate with test host process.
+ No se puede establecer comunicación con el proceso del host de pruebas.
+
+
+
+ Unexpected message received. Expected MessageType : {0} Actual MessageType: {1}
+ Se ha recibido un mensaje inesperado. Tipo de mensaje esperado: {0} Tipo de mensaje real: {1}
+
+
+
+ Protocol version check failed. Make sure test runner and host are compatible.
+ Error en la comprobación de la versión del protocolo. Asegúrese de que el ejecutor de pruebas y el host son compatibles.
+
+
+
+ Failed to negotiate protocol, waiting for response timed out after {0} seconds. This may occur due to machine slowness, please set environment variable {1} to increase timeout.
+ No se pudo negociar el protocolo, se agotó el tiempo de espera para la respuesta después de {0} segundos. Esto puede deberse a la lentitud de la máquina, configure la variable de entorno {1} para aumentar el tiempo de espera.
+
+
+
+ {0} process failed to connect to {1} process after {2} seconds. This may occur due to machine slowness, please set environment variable {3} to increase timeout.
+ El proceso {0} no pudo conectar con el proceso {1} después de {2} segundos. Esto puede deberse a la lentitud de la máquina, configure la variable de entorno {3} para aumentar el tiempo de espera.
+
+
+
+ Test host process crashed
+ Proceso de host de pruebas bloqueado
+
+
+
+ Cannot attach the debugger to the default test host.
+ No se puede asociar el depurador al host de prueba predeterminado.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.fr.xlf b/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.fr.xlf
index fbc3a2c93c..6c7715e2d7 100644
--- a/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.fr.xlf
+++ b/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.fr.xlf
@@ -1,62 +1,62 @@
-
-
-
-
-
- The active test run was aborted. Reason: {0}
- La série de tests active a été abandonnée. Raison : {0}
-
-
-
- An existing connection was forcibly closed by the remote host.
- Une connexion existante a été fermée de force par l'hôte distant.
-
-
-
- The active test discovery was aborted.
- La découverte de tests active a été abandonnée.
-
-
-
- The active test discovery was aborted. Reason: {0}
- La découverte de tests active a été abandonnée. Raison : {0}
-
-
-
- Unable to communicate with test host process.
- Impossible de communiquer avec le processus hôte du test.
-
-
-
- Unexpected message received. Expected MessageType : {0} Actual MessageType: {1}
- Message inattendu reçu. MessageType attendu : {0} MessageType réel : {1}
-
-
-
- Protocol version check failed. Make sure test runner and host are compatible.
- Échec de la vérification de la version du protocole. Vérifiez que Test Runner et l'hôte sont compatibles.
-
-
-
- Failed to negotiate protocol, waiting for response timed out after {0} seconds. This may occur due to machine slowness, please set environment variable {1} to increase timeout.
- Échec de négociation du protocole, en attente d’une réponse dont le délai expire après {0} secondes. Cette situation peut se produire à cause de la lenteur de la machine. Définissez la variable d’environnement {1} de sorte à augmenter le délai d’expiration.
-
-
-
- {0} process failed to connect to {1} process after {2} seconds. This may occur due to machine slowness, please set environment variable {3} to increase timeout.
- Le processus {0} n’a pas réussi à se connecter au processus {1} après {2} secondes. Cette situation peut se produire à cause de la lenteur de la machine. Définissez la variable d’environnement {3} de sorte à augmenter le délai d’expiration.
-
-
-
- Test host process crashed
- Plantage du processus hôte de test
-
-
-
- Cannot attach the debugger to the default test host.
- Impossible d'attacher le débogueur à l'hôte de test par défaut.
-
-
-
-
-
+
+
+
+
+
+ The active test run was aborted. Reason: {0}
+ La série de tests active a été abandonnée. Raison : {0}
+
+
+
+ An existing connection was forcibly closed by the remote host.
+ Une connexion existante a été fermée de force par l'hôte distant.
+
+
+
+ The active test discovery was aborted.
+ La découverte de tests active a été abandonnée.
+
+
+
+ The active test discovery was aborted. Reason: {0}
+ La découverte de tests active a été abandonnée. Raison : {0}
+
+
+
+ Unable to communicate with test host process.
+ Impossible de communiquer avec le processus hôte du test.
+
+
+
+ Unexpected message received. Expected MessageType : {0} Actual MessageType: {1}
+ Message inattendu reçu. MessageType attendu : {0} MessageType réel : {1}
+
+
+
+ Protocol version check failed. Make sure test runner and host are compatible.
+ Échec de la vérification de la version du protocole. Vérifiez que Test Runner et l'hôte sont compatibles.
+
+
+
+ Failed to negotiate protocol, waiting for response timed out after {0} seconds. This may occur due to machine slowness, please set environment variable {1} to increase timeout.
+ Échec de négociation du protocole, en attente d’une réponse dont le délai expire après {0} secondes. Cette situation peut se produire à cause de la lenteur de la machine. Définissez la variable d’environnement {1} de sorte à augmenter le délai d’expiration.
+
+
+
+ {0} process failed to connect to {1} process after {2} seconds. This may occur due to machine slowness, please set environment variable {3} to increase timeout.
+ Le processus {0} n’a pas réussi à se connecter au processus {1} après {2} secondes. Cette situation peut se produire à cause de la lenteur de la machine. Définissez la variable d’environnement {3} de sorte à augmenter le délai d’expiration.
+
+
+
+ Test host process crashed
+ Plantage du processus hôte de test
+
+
+
+ Cannot attach the debugger to the default test host.
+ Impossible d'attacher le débogueur à l'hôte de test par défaut.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.it.xlf b/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.it.xlf
index b80dbd9f32..553b51cb16 100644
--- a/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.it.xlf
+++ b/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.it.xlf
@@ -1,62 +1,62 @@
-
-
-
-
-
- The active test run was aborted. Reason: {0}
- L'esecuzione dei test attivi è stata interrotta. Motivo: {0}
-
-
-
- An existing connection was forcibly closed by the remote host.
- Una connessione esistente è stata chiusa forzatamente dall'host remoto.
-
-
-
- The active test discovery was aborted.
- L'individuazione dei test attivi è stata interrotta.
-
-
-
- The active test discovery was aborted. Reason: {0}
- L'individuazione dei test attivi è stata interrotta. Motivo: {0}
-
-
-
- Unable to communicate with test host process.
- Non è possibile comunicare con il processo host dei test.
-
-
-
- Unexpected message received. Expected MessageType : {0} Actual MessageType: {1}
- È stato ricevuto un messaggio imprevisto. Tipo di messaggio previsto: {0}. Tipo di messaggio effettivo: {1}
-
-
-
- Protocol version check failed. Make sure test runner and host are compatible.
- Il controllo della versione del protocollo non è riuscito. Assicurarsi che runner e host dei test siano compatibili.
-
-
-
- Failed to negotiate protocol, waiting for response timed out after {0} seconds. This may occur due to machine slowness, please set environment variable {1} to increase timeout.
- Non è stato possibile negoziare il protocollo: in attesa del timeout della risposta dopo {0} secondi. Questo problema può verificarsi a causa della lentezza del computer. Impostare la variabile di ambiente {1} in modo da incrementare il timeout.
-
-
-
- {0} process failed to connect to {1} process after {2} seconds. This may occur due to machine slowness, please set environment variable {3} to increase timeout.
- Il processo {0} non è riuscito a connettersi al processo {1} dopo {2} secondi. Questo problema può verificarsi a causa della lentezza del computer. Impostare la variabile di ambiente {3} in modo da incrementare il timeout.
-
-
-
- Test host process crashed
- Arresto anomalo del processo host di test
-
-
-
- Cannot attach the debugger to the default test host.
- Non è possibile collegare il debugger all'host di test predefinito.
-
-
-
-
-
+
+
+
+
+
+ The active test run was aborted. Reason: {0}
+ L'esecuzione dei test attivi è stata interrotta. Motivo: {0}
+
+
+
+ An existing connection was forcibly closed by the remote host.
+ Una connessione esistente è stata chiusa forzatamente dall'host remoto.
+
+
+
+ The active test discovery was aborted.
+ L'individuazione dei test attivi è stata interrotta.
+
+
+
+ The active test discovery was aborted. Reason: {0}
+ L'individuazione dei test attivi è stata interrotta. Motivo: {0}
+
+
+
+ Unable to communicate with test host process.
+ Non è possibile comunicare con il processo host dei test.
+
+
+
+ Unexpected message received. Expected MessageType : {0} Actual MessageType: {1}
+ È stato ricevuto un messaggio imprevisto. Tipo di messaggio previsto: {0}. Tipo di messaggio effettivo: {1}
+
+
+
+ Protocol version check failed. Make sure test runner and host are compatible.
+ Il controllo della versione del protocollo non è riuscito. Assicurarsi che runner e host dei test siano compatibili.
+
+
+
+ Failed to negotiate protocol, waiting for response timed out after {0} seconds. This may occur due to machine slowness, please set environment variable {1} to increase timeout.
+ Non è stato possibile negoziare il protocollo: in attesa del timeout della risposta dopo {0} secondi. Questo problema può verificarsi a causa della lentezza del computer. Impostare la variabile di ambiente {1} in modo da incrementare il timeout.
+
+
+
+ {0} process failed to connect to {1} process after {2} seconds. This may occur due to machine slowness, please set environment variable {3} to increase timeout.
+ Il processo {0} non è riuscito a connettersi al processo {1} dopo {2} secondi. Questo problema può verificarsi a causa della lentezza del computer. Impostare la variabile di ambiente {3} in modo da incrementare il timeout.
+
+
+
+ Test host process crashed
+ Arresto anomalo del processo host di test
+
+
+
+ Cannot attach the debugger to the default test host.
+ Non è possibile collegare il debugger all'host di test predefinito.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.ja.xlf b/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.ja.xlf
index 343455c430..bce2062c64 100644
--- a/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.ja.xlf
+++ b/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.ja.xlf
@@ -1,62 +1,62 @@
-
-
-
-
-
- The active test run was aborted. Reason: {0}
- アクティブなテストの実行が中止されました。理由: {0}
-
-
-
- An existing connection was forcibly closed by the remote host.
- 既存の接続はリモート ホストに強制的に切断されました。
-
-
-
- The active test discovery was aborted.
- アクティブなテスト探索が中止されました。
-
-
-
- The active test discovery was aborted. Reason: {0}
- アクティブなテスト探索が中止されました。理由: {0}
-
-
-
- Unable to communicate with test host process.
- テスト ホスト プロセスと通信できません。
-
-
-
- Unexpected message received. Expected MessageType : {0} Actual MessageType: {1}
- 予期しないメッセージを受信しました。予想されたメッセージの種類: {0} 実際のメッセージの種類: {1}
-
-
-
- Protocol version check failed. Make sure test runner and host are compatible.
- プロトコルのバージョンを確認できませんでした。テスト ランナーとホストに互換性があることをご確認ください。
-
-
-
- Failed to negotiate protocol, waiting for response timed out after {0} seconds. This may occur due to machine slowness, please set environment variable {1} to increase timeout.
- プロトコルをネゴシエートできませんでした。応答への待機が {0} 秒後にタイムアウトしました。これはマシンの遅さが原因で発生する可能性があるため、環境変数 {1} を設定してタイムアウト時間を増やしてください。
-
-
-
- {0} process failed to connect to {1} process after {2} seconds. This may occur due to machine slowness, please set environment variable {3} to increase timeout.
- {0} プロセスでは、{2} 秒後に {1} プロセスへ接続できませんでした。これは、マシンの遅さが原因で発生する可能性があるため、環境変数 {3} を設定してタイムアウト時間を増やしてください。
-
-
-
- Test host process crashed
- テストのホスト プロセスがクラッシュしました
-
-
-
- Cannot attach the debugger to the default test host.
- デバッガーを既定のテスト ホストにアタッチできません。
-
-
-
-
-
+
+
+
+
+
+ The active test run was aborted. Reason: {0}
+ アクティブなテストの実行が中止されました。理由: {0}
+
+
+
+ An existing connection was forcibly closed by the remote host.
+ 既存の接続はリモート ホストに強制的に切断されました。
+
+
+
+ The active test discovery was aborted.
+ アクティブなテスト探索が中止されました。
+
+
+
+ The active test discovery was aborted. Reason: {0}
+ アクティブなテスト探索が中止されました。理由: {0}
+
+
+
+ Unable to communicate with test host process.
+ テスト ホスト プロセスと通信できません。
+
+
+
+ Unexpected message received. Expected MessageType : {0} Actual MessageType: {1}
+ 予期しないメッセージを受信しました。予想されたメッセージの種類: {0} 実際のメッセージの種類: {1}
+
+
+
+ Protocol version check failed. Make sure test runner and host are compatible.
+ プロトコルのバージョンを確認できませんでした。テスト ランナーとホストに互換性があることをご確認ください。
+
+
+
+ Failed to negotiate protocol, waiting for response timed out after {0} seconds. This may occur due to machine slowness, please set environment variable {1} to increase timeout.
+ プロトコルをネゴシエートできませんでした。応答への待機が {0} 秒後にタイムアウトしました。これはマシンの遅さが原因で発生する可能性があるため、環境変数 {1} を設定してタイムアウト時間を増やしてください。
+
+
+
+ {0} process failed to connect to {1} process after {2} seconds. This may occur due to machine slowness, please set environment variable {3} to increase timeout.
+ {0} プロセスでは、{2} 秒後に {1} プロセスへ接続できませんでした。これは、マシンの遅さが原因で発生する可能性があるため、環境変数 {3} を設定してタイムアウト時間を増やしてください。
+
+
+
+ Test host process crashed
+ テストのホスト プロセスがクラッシュしました
+
+
+
+ Cannot attach the debugger to the default test host.
+ デバッガーを既定のテスト ホストにアタッチできません。
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.ko.xlf b/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.ko.xlf
index fa39a81660..52423f5968 100644
--- a/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.ko.xlf
+++ b/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.ko.xlf
@@ -1,62 +1,62 @@
-
-
-
-
-
- The active test run was aborted. Reason: {0}
- 활성 테스트 실행이 중단되었습니다. 이유: {0}
-
-
-
- An existing connection was forcibly closed by the remote host.
- 원격 호스트에 의해 기존 연결이 강제로 종료되었습니다.
-
-
-
- The active test discovery was aborted.
- 활성 테스트 검색이 중단되었습니다.
-
-
-
- The active test discovery was aborted. Reason: {0}
- 활성 테스트 검색이 중단되었습니다. 이유: {0}
-
-
-
- Unable to communicate with test host process.
- 테스트 호스트 프로세스와 통신할 수 없습니다.
-
-
-
- Unexpected message received. Expected MessageType : {0} Actual MessageType: {1}
- 예기치 않은 메시지를 수신했습니다. 필요한 MessageType: {0} 실제 MessageType: {1}
-
-
-
- Protocol version check failed. Make sure test runner and host are compatible.
- 프로토콜 버전을 확인하지 못했습니다. Test Runner와 호스트가 호환되는지 확인하세요.
-
-
-
- Failed to negotiate protocol, waiting for response timed out after {0} seconds. This may occur due to machine slowness, please set environment variable {1} to increase timeout.
- 프로토콜을 협상하지 못했습니다. {0}초 후 응답 시간이 초과될 때까지 기다리는 중입니다. 이런 오류는 컴퓨터가 느려서 발생할 수 있습니다. 환경 변수 {1}을(를) 설정하여 시간 제한을 늘리세요.
-
-
-
- {0} process failed to connect to {1} process after {2} seconds. This may occur due to machine slowness, please set environment variable {3} to increase timeout.
- {0} 프로세스가 {2}초 후 {1} 프로세스에 연결하지 못했습니다. 이런 오류는 컴퓨터가 느려서 발생할 수 있습니다. 환경 변수 {3}을(를) 설정하여 시간 제한을 늘리세요.
-
-
-
- Test host process crashed
- 테스트 호스트 프로세스 작동이 중단됨
-
-
-
- Cannot attach the debugger to the default test host.
- 기본 테스트 호스트에 디버거를 연결할 수 없습니다.
-
-
-
-
-
+
+
+
+
+
+ The active test run was aborted. Reason: {0}
+ 활성 테스트 실행이 중단되었습니다. 이유: {0}
+
+
+
+ An existing connection was forcibly closed by the remote host.
+ 원격 호스트에 의해 기존 연결이 강제로 종료되었습니다.
+
+
+
+ The active test discovery was aborted.
+ 활성 테스트 검색이 중단되었습니다.
+
+
+
+ The active test discovery was aborted. Reason: {0}
+ 활성 테스트 검색이 중단되었습니다. 이유: {0}
+
+
+
+ Unable to communicate with test host process.
+ 테스트 호스트 프로세스와 통신할 수 없습니다.
+
+
+
+ Unexpected message received. Expected MessageType : {0} Actual MessageType: {1}
+ 예기치 않은 메시지를 수신했습니다. 필요한 MessageType: {0} 실제 MessageType: {1}
+
+
+
+ Protocol version check failed. Make sure test runner and host are compatible.
+ 프로토콜 버전을 확인하지 못했습니다. Test Runner와 호스트가 호환되는지 확인하세요.
+
+
+
+ Failed to negotiate protocol, waiting for response timed out after {0} seconds. This may occur due to machine slowness, please set environment variable {1} to increase timeout.
+ 프로토콜을 협상하지 못했습니다. {0}초 후 응답 시간이 초과될 때까지 기다리는 중입니다. 이런 오류는 컴퓨터가 느려서 발생할 수 있습니다. 환경 변수 {1}을(를) 설정하여 시간 제한을 늘리세요.
+
+
+
+ {0} process failed to connect to {1} process after {2} seconds. This may occur due to machine slowness, please set environment variable {3} to increase timeout.
+ {0} 프로세스가 {2}초 후 {1} 프로세스에 연결하지 못했습니다. 이런 오류는 컴퓨터가 느려서 발생할 수 있습니다. 환경 변수 {3}을(를) 설정하여 시간 제한을 늘리세요.
+
+
+
+ Test host process crashed
+ 테스트 호스트 프로세스 작동이 중단됨
+
+
+
+ Cannot attach the debugger to the default test host.
+ 기본 테스트 호스트에 디버거를 연결할 수 없습니다.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.pl.xlf b/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.pl.xlf
index 88ae21f6b1..32f9e407ec 100644
--- a/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.pl.xlf
+++ b/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.pl.xlf
@@ -1,62 +1,62 @@
-
-
-
-
-
- The active test run was aborted. Reason: {0}
- Aktywny przebieg testu został przerwany. Przyczyna: {0}
-
-
-
- An existing connection was forcibly closed by the remote host.
- Zamknięcie istniejącego połączenia zostało wymuszone przez host zdalny.
-
-
-
- The active test discovery was aborted.
- Aktywny proces wykrywania testu został przerwany.
-
-
-
- The active test discovery was aborted. Reason: {0}
- Aktywny proces wykrywania testu został przerwany. Przyczyna: {0}
-
-
-
- Unable to communicate with test host process.
- Nie można nawiązać komunikacji z procesem hosta.
-
-
-
- Unexpected message received. Expected MessageType : {0} Actual MessageType: {1}
- Otrzymano nieoczekiwany komunikat. Oczekiwany typ komunikatu: {0}, otrzymany typ komunikatu: {1}
-
-
-
- Protocol version check failed. Make sure test runner and host are compatible.
- Sprawdzanie wersji protokołu nie powiodło się. Upewnij się, że moduł uruchamiający testy i host są zgodne.
-
-
-
- Failed to negotiate protocol, waiting for response timed out after {0} seconds. This may occur due to machine slowness, please set environment variable {1} to increase timeout.
- Negocjowanie protokołu nie powiodło się, po upływie {0} sekund został przekroczony limit czasu oczekiwania na odpowiedź. Przyczyną może być wolne działanie maszyny. Zwiększ limit czasu, ustawiając zmienną środowiskową {1}.
-
-
-
- {0} process failed to connect to {1} process after {2} seconds. This may occur due to machine slowness, please set environment variable {3} to increase timeout.
- Proces {0} nie mógł połączyć się z procesem {1} w ciągu {2} sekund. Przyczyną może być wolne działanie maszyny. Zwiększ limit czasu, ustawiając zmienną środowiskową {3}.
-
-
-
- Test host process crashed
- Wystąpiła awaria procesu hosta testu
-
-
-
- Cannot attach the debugger to the default test host.
- Nie można dołączyć debugera do domyślnego hosta testowego.
-
-
-
-
-
+
+
+
+
+
+ The active test run was aborted. Reason: {0}
+ Aktywny przebieg testu został przerwany. Przyczyna: {0}
+
+
+
+ An existing connection was forcibly closed by the remote host.
+ Zamknięcie istniejącego połączenia zostało wymuszone przez host zdalny.
+
+
+
+ The active test discovery was aborted.
+ Aktywny proces wykrywania testu został przerwany.
+
+
+
+ The active test discovery was aborted. Reason: {0}
+ Aktywny proces wykrywania testu został przerwany. Przyczyna: {0}
+
+
+
+ Unable to communicate with test host process.
+ Nie można nawiązać komunikacji z procesem hosta.
+
+
+
+ Unexpected message received. Expected MessageType : {0} Actual MessageType: {1}
+ Otrzymano nieoczekiwany komunikat. Oczekiwany typ komunikatu: {0}, otrzymany typ komunikatu: {1}
+
+
+
+ Protocol version check failed. Make sure test runner and host are compatible.
+ Sprawdzanie wersji protokołu nie powiodło się. Upewnij się, że moduł uruchamiający testy i host są zgodne.
+
+
+
+ Failed to negotiate protocol, waiting for response timed out after {0} seconds. This may occur due to machine slowness, please set environment variable {1} to increase timeout.
+ Negocjowanie protokołu nie powiodło się, po upływie {0} sekund został przekroczony limit czasu oczekiwania na odpowiedź. Przyczyną może być wolne działanie maszyny. Zwiększ limit czasu, ustawiając zmienną środowiskową {1}.
+
+
+
+ {0} process failed to connect to {1} process after {2} seconds. This may occur due to machine slowness, please set environment variable {3} to increase timeout.
+ Proces {0} nie mógł połączyć się z procesem {1} w ciągu {2} sekund. Przyczyną może być wolne działanie maszyny. Zwiększ limit czasu, ustawiając zmienną środowiskową {3}.
+
+
+
+ Test host process crashed
+ Wystąpiła awaria procesu hosta testu
+
+
+
+ Cannot attach the debugger to the default test host.
+ Nie można dołączyć debugera do domyślnego hosta testowego.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.pt-BR.xlf b/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.pt-BR.xlf
index 91911be2a1..848b7773d4 100644
--- a/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.pt-BR.xlf
+++ b/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.pt-BR.xlf
@@ -1,62 +1,62 @@
-
-
-
-
-
- The active test run was aborted. Reason: {0}
- A execução de teste ativa foi anulada. Motivo: {0}
-
-
-
- An existing connection was forcibly closed by the remote host.
- Uma conexão existente foi fechada à força pelo host remoto.
-
-
-
- The active test discovery was aborted.
- A detecção de testes ativa foi anulada.
-
-
-
- The active test discovery was aborted. Reason: {0}
- A descoberta de teste ativa foi anulada. Motivo: {0}
-
-
-
- Unable to communicate with test host process.
- Não é possível se comunicar com o processo de host de teste.
-
-
-
- Unexpected message received. Expected MessageType : {0} Actual MessageType: {1}
- Mensagem inesperada recebida. MessageType esperada: {0} MessageType real: {1}
-
-
-
- Protocol version check failed. Make sure test runner and host are compatible.
- Falha na verificação da versão do protocolo. Verifique se o executor de testes e o host são compatíveis.
-
-
-
- Failed to negotiate protocol, waiting for response timed out after {0} seconds. This may occur due to machine slowness, please set environment variable {1} to increase timeout.
- Falha ao negociar o protocolo, aguardando pelo tempo limite de resposta após {0} segundos. Isso pode ocorrer devido à lentidão do computador. Defina a variável de ambiente {1} para aumentar o tempo limite.
-
-
-
- {0} process failed to connect to {1} process after {2} seconds. This may occur due to machine slowness, please set environment variable {3} to increase timeout.
- O processo {0} falha ao se conectar ao processo {1} após {2} segundos. Isso pode ocorrer devido à lentidão do computador. Defina a variável de ambiente {3} para aumentar o tempo limite.
-
-
-
- Test host process crashed
- Falha no processo do host de teste
-
-
-
- Cannot attach the debugger to the default test host.
- Não é possível anexar o depurador ao host de teste padrão.
-
-
-
-
-
+
+
+
+
+
+ The active test run was aborted. Reason: {0}
+ A execução de teste ativa foi anulada. Motivo: {0}
+
+
+
+ An existing connection was forcibly closed by the remote host.
+ Uma conexão existente foi fechada à força pelo host remoto.
+
+
+
+ The active test discovery was aborted.
+ A detecção de testes ativa foi anulada.
+
+
+
+ The active test discovery was aborted. Reason: {0}
+ A descoberta de teste ativa foi anulada. Motivo: {0}
+
+
+
+ Unable to communicate with test host process.
+ Não é possível se comunicar com o processo de host de teste.
+
+
+
+ Unexpected message received. Expected MessageType : {0} Actual MessageType: {1}
+ Mensagem inesperada recebida. MessageType esperada: {0} MessageType real: {1}
+
+
+
+ Protocol version check failed. Make sure test runner and host are compatible.
+ Falha na verificação da versão do protocolo. Verifique se o executor de testes e o host são compatíveis.
+
+
+
+ Failed to negotiate protocol, waiting for response timed out after {0} seconds. This may occur due to machine slowness, please set environment variable {1} to increase timeout.
+ Falha ao negociar o protocolo, aguardando pelo tempo limite de resposta após {0} segundos. Isso pode ocorrer devido à lentidão do computador. Defina a variável de ambiente {1} para aumentar o tempo limite.
+
+
+
+ {0} process failed to connect to {1} process after {2} seconds. This may occur due to machine slowness, please set environment variable {3} to increase timeout.
+ O processo {0} falha ao se conectar ao processo {1} após {2} segundos. Isso pode ocorrer devido à lentidão do computador. Defina a variável de ambiente {3} para aumentar o tempo limite.
+
+
+
+ Test host process crashed
+ Falha no processo do host de teste
+
+
+
+ Cannot attach the debugger to the default test host.
+ Não é possível anexar o depurador ao host de teste padrão.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.ru.xlf b/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.ru.xlf
index 946d5f42fa..ba06838750 100644
--- a/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.ru.xlf
+++ b/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.ru.xlf
@@ -1,62 +1,62 @@
-
-
-
-
-
- The active test run was aborted. Reason: {0}
- Активный тестовый запуск прерван. Причина: {0}
-
-
-
- An existing connection was forcibly closed by the remote host.
- Существующее подключение принудительно закрыто удаленным узлом.
-
-
-
- The active test discovery was aborted.
- Активное обнаружение тестов прервано.
-
-
-
- The active test discovery was aborted. Reason: {0}
- Активное обнаружение тестов прервано. Причина: {0}
-
-
-
- Unable to communicate with test host process.
- Не удалось связаться с хост-процессом теста.
-
-
-
- Unexpected message received. Expected MessageType : {0} Actual MessageType: {1}
- Получено непредвиденное сообщение. Ожидаемый тип сообщения (MessageType): {0}, фактический тип сообщения (MessageType): {1}
-
-
-
- Protocol version check failed. Make sure test runner and host are compatible.
- Проверка версии протокола не пройдена. Убедитесь, что средство запуска теста и узел совместимы.
-
-
-
- Failed to negotiate protocol, waiting for response timed out after {0} seconds. This may occur due to machine slowness, please set environment variable {1} to increase timeout.
- Не удалось согласовать протокол, превышено время ожидания ответа по прошествии {0} с. Это может происходить из-за медленной работы компьютера. Увеличьте время ожидания в переменной среды {1}.
-
-
-
- {0} process failed to connect to {1} process after {2} seconds. This may occur due to machine slowness, please set environment variable {3} to increase timeout.
- Процесс {0} не смог подключиться к процессу {1} по прошествии {2} с. Это может происходить из-за медленной работы компьютера. Увеличьте время ожидания в переменной среды {3}.
-
-
-
- Test host process crashed
- Сбой хост-процесса теста
-
-
-
- Cannot attach the debugger to the default test host.
- Не удается подключить отладчик к узлу тестирования по умолчанию.
-
-
-
-
-
+
+
+
+
+
+ The active test run was aborted. Reason: {0}
+ Активный тестовый запуск прерван. Причина: {0}
+
+
+
+ An existing connection was forcibly closed by the remote host.
+ Существующее подключение принудительно закрыто удаленным узлом.
+
+
+
+ The active test discovery was aborted.
+ Активное обнаружение тестов прервано.
+
+
+
+ The active test discovery was aborted. Reason: {0}
+ Активное обнаружение тестов прервано. Причина: {0}
+
+
+
+ Unable to communicate with test host process.
+ Не удалось связаться с хост-процессом теста.
+
+
+
+ Unexpected message received. Expected MessageType : {0} Actual MessageType: {1}
+ Получено непредвиденное сообщение. Ожидаемый тип сообщения (MessageType): {0}, фактический тип сообщения (MessageType): {1}
+
+
+
+ Protocol version check failed. Make sure test runner and host are compatible.
+ Проверка версии протокола не пройдена. Убедитесь, что средство запуска теста и узел совместимы.
+
+
+
+ Failed to negotiate protocol, waiting for response timed out after {0} seconds. This may occur due to machine slowness, please set environment variable {1} to increase timeout.
+ Не удалось согласовать протокол, превышено время ожидания ответа по прошествии {0} с. Это может происходить из-за медленной работы компьютера. Увеличьте время ожидания в переменной среды {1}.
+
+
+
+ {0} process failed to connect to {1} process after {2} seconds. This may occur due to machine slowness, please set environment variable {3} to increase timeout.
+ Процесс {0} не смог подключиться к процессу {1} по прошествии {2} с. Это может происходить из-за медленной работы компьютера. Увеличьте время ожидания в переменной среды {3}.
+
+
+
+ Test host process crashed
+ Сбой хост-процесса теста
+
+
+
+ Cannot attach the debugger to the default test host.
+ Не удается подключить отладчик к узлу тестирования по умолчанию.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.tr.xlf b/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.tr.xlf
index fb625cc2b0..d653842622 100644
--- a/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.tr.xlf
+++ b/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.tr.xlf
@@ -1,62 +1,62 @@
-
-
-
-
-
- The active test run was aborted. Reason: {0}
- Etkin test çalıştırması iptal edildi. Nedeni: {0}
-
-
-
- An existing connection was forcibly closed by the remote host.
- Mevcut bir bağlantı uzak konak tarafından zorla kapatıldı.
-
-
-
- The active test discovery was aborted.
- Etkin test bulma durduruldu.
-
-
-
- The active test discovery was aborted. Reason: {0}
- Etkin test bulma iptal edildi. Nedeni: {0}
-
-
-
- Unable to communicate with test host process.
- Test ana bilgisayarı işlemi ile iletişim kurulamıyor.
-
-
-
- Unexpected message received. Expected MessageType : {0} Actual MessageType: {1}
- Beklenmeyen ileti alındı. Beklenen MessageType: {0} Gerçek MessageType: {1}
-
-
-
- Protocol version check failed. Make sure test runner and host are compatible.
- Protokol sürümü denetlenemedi. Test çalıştırıcısı ve ana bilgisayarının uyumlu olduğundan emin olun.
-
-
-
- Failed to negotiate protocol, waiting for response timed out after {0} seconds. This may occur due to machine slowness, please set environment variable {1} to increase timeout.
- Protokol üzerinde anlaşmaya varılamadı, yanıt bekleme süresi {0} saniyenin ardından zaman aşımına uğradı. Bu durum makinenin yavaşlığından kaynaklanıyor olabilir, zaman aşımı süresini artırmak için lütfen ortam değişkenini {1} olarak ayarlayın.
-
-
-
- {0} process failed to connect to {1} process after {2} seconds. This may occur due to machine slowness, please set environment variable {3} to increase timeout.
- {0} işlemi, {2} saniye sonra {1} işlemine bağlanamadı. Bu durum makinenin yavaşlığından kaynaklanıyor olabilir, zaman aşımı süresini artırmak için lütfen ortam değişkenini {3} olarak ayarlayın.
-
-
-
- Test host process crashed
- Test ana işlemi kilitlendi
-
-
-
- Cannot attach the debugger to the default test host.
- Hata ayıklayıcı, varsayılan test ana bilgisayarına eklenemiyor.
-
-
-
-
-
+
+
+
+
+
+ The active test run was aborted. Reason: {0}
+ Etkin test çalıştırması iptal edildi. Nedeni: {0}
+
+
+
+ An existing connection was forcibly closed by the remote host.
+ Mevcut bir bağlantı uzak konak tarafından zorla kapatıldı.
+
+
+
+ The active test discovery was aborted.
+ Etkin test bulma durduruldu.
+
+
+
+ The active test discovery was aborted. Reason: {0}
+ Etkin test bulma iptal edildi. Nedeni: {0}
+
+
+
+ Unable to communicate with test host process.
+ Test ana bilgisayarı işlemi ile iletişim kurulamıyor.
+
+
+
+ Unexpected message received. Expected MessageType : {0} Actual MessageType: {1}
+ Beklenmeyen ileti alındı. Beklenen MessageType: {0} Gerçek MessageType: {1}
+
+
+
+ Protocol version check failed. Make sure test runner and host are compatible.
+ Protokol sürümü denetlenemedi. Test çalıştırıcısı ve ana bilgisayarının uyumlu olduğundan emin olun.
+
+
+
+ Failed to negotiate protocol, waiting for response timed out after {0} seconds. This may occur due to machine slowness, please set environment variable {1} to increase timeout.
+ Protokol üzerinde anlaşmaya varılamadı, yanıt bekleme süresi {0} saniyenin ardından zaman aşımına uğradı. Bu durum makinenin yavaşlığından kaynaklanıyor olabilir, zaman aşımı süresini artırmak için lütfen ortam değişkenini {1} olarak ayarlayın.
+
+
+
+ {0} process failed to connect to {1} process after {2} seconds. This may occur due to machine slowness, please set environment variable {3} to increase timeout.
+ {0} işlemi, {2} saniye sonra {1} işlemine bağlanamadı. Bu durum makinenin yavaşlığından kaynaklanıyor olabilir, zaman aşımı süresini artırmak için lütfen ortam değişkenini {3} olarak ayarlayın.
+
+
+
+ Test host process crashed
+ Test ana işlemi kilitlendi
+
+
+
+ Cannot attach the debugger to the default test host.
+ Hata ayıklayıcı, varsayılan test ana bilgisayarına eklenemiyor.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.zh-Hans.xlf b/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.zh-Hans.xlf
index 61d4f2561a..be99a9bc47 100644
--- a/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.zh-Hans.xlf
+++ b/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.zh-Hans.xlf
@@ -1,62 +1,62 @@
-
-
-
-
-
- The active test run was aborted. Reason: {0}
- 活动的测试运行已中止。原因: {0}
-
-
-
- An existing connection was forcibly closed by the remote host.
- 现有连接被远程主机强制关闭。
-
-
-
- The active test discovery was aborted.
- 活动的测试发现已中止。
-
-
-
- The active test discovery was aborted. Reason: {0}
- 活动的测试发现已中止。原因: {0}
-
-
-
- Unable to communicate with test host process.
- 无法与测试宿主进程通信。
-
-
-
- Unexpected message received. Expected MessageType : {0} Actual MessageType: {1}
- 收到意外消息。意外 MessageType: {0} 实际 MessageType: {1}
-
-
-
- Protocol version check failed. Make sure test runner and host are compatible.
- 协议版本检查失败。请确保测试运行程序和主机兼容。
-
-
-
- Failed to negotiate protocol, waiting for response timed out after {0} seconds. This may occur due to machine slowness, please set environment variable {1} to increase timeout.
- 未能协商协议,等待响应在 {0} 秒后超时。出现此问题可能是因为计算机性能较低,请设置环境变量 {1},增加超时时间值。
-
-
-
- {0} process failed to connect to {1} process after {2} seconds. This may occur due to machine slowness, please set environment variable {3} to increase timeout.
- {0} 进程未能在 {2} 秒后连接到 {1} 进程。出现此问题可能是因为计算机性能较低,请设置环境变量 {3},增加超时时间值。
-
-
-
- Test host process crashed
- 测试主机进程崩溃
-
-
-
- Cannot attach the debugger to the default test host.
- 无法将调试程序附加到默认测试主机。
-
-
-
-
-
+
+
+
+
+
+ The active test run was aborted. Reason: {0}
+ 活动的测试运行已中止。原因: {0}
+
+
+
+ An existing connection was forcibly closed by the remote host.
+ 现有连接被远程主机强制关闭。
+
+
+
+ The active test discovery was aborted.
+ 活动的测试发现已中止。
+
+
+
+ The active test discovery was aborted. Reason: {0}
+ 活动的测试发现已中止。原因: {0}
+
+
+
+ Unable to communicate with test host process.
+ 无法与测试宿主进程通信。
+
+
+
+ Unexpected message received. Expected MessageType : {0} Actual MessageType: {1}
+ 收到意外消息。意外 MessageType: {0} 实际 MessageType: {1}
+
+
+
+ Protocol version check failed. Make sure test runner and host are compatible.
+ 协议版本检查失败。请确保测试运行程序和主机兼容。
+
+
+
+ Failed to negotiate protocol, waiting for response timed out after {0} seconds. This may occur due to machine slowness, please set environment variable {1} to increase timeout.
+ 未能协商协议,等待响应在 {0} 秒后超时。出现此问题可能是因为计算机性能较低,请设置环境变量 {1},增加超时时间值。
+
+
+
+ {0} process failed to connect to {1} process after {2} seconds. This may occur due to machine slowness, please set environment variable {3} to increase timeout.
+ {0} 进程未能在 {2} 秒后连接到 {1} 进程。出现此问题可能是因为计算机性能较低,请设置环境变量 {3},增加超时时间值。
+
+
+
+ Test host process crashed
+ 测试主机进程崩溃
+
+
+
+ Cannot attach the debugger to the default test host.
+ 无法将调试程序附加到默认测试主机。
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.zh-Hant.xlf b/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.zh-Hant.xlf
index 7d365052e6..9e0062726f 100644
--- a/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.zh-Hant.xlf
+++ b/src/Microsoft.TestPlatform.CommunicationUtilities/Resources/xlf/Resources.zh-Hant.xlf
@@ -1,62 +1,62 @@
-
-
-
-
-
- The active test run was aborted. Reason: {0}
- 使用中的測試回合已中止。原因: {0}
-
-
-
- An existing connection was forcibly closed by the remote host.
- 遠端主機已強制關閉現有連線。
-
-
-
- The active test discovery was aborted.
- 使用中的測試探索已中止。
-
-
-
- The active test discovery was aborted. Reason: {0}
- 使用中的測試探索已中止。原因: {0}
-
-
-
- Unable to communicate with test host process.
- 無法與測試主機處理序通訊。
-
-
-
- Unexpected message received. Expected MessageType : {0} Actual MessageType: {1}
- 收到未預期的訊息。需要的訊息類型: {0},實際的訊息類型: {1}
-
-
-
- Protocol version check failed. Make sure test runner and host are compatible.
- 通訊協定版本檢查失敗。請確定測試執行器與主機相容。
-
-
-
- Failed to negotiate protocol, waiting for response timed out after {0} seconds. This may occur due to machine slowness, please set environment variable {1} to increase timeout.
- 無法交涉通訊協定,等待回應在 {0} 秒後已逾時。原因可能是電腦太慢,請設定環境變數 {1},加長逾時。
-
-
-
- {0} process failed to connect to {1} process after {2} seconds. This may occur due to machine slowness, please set environment variable {3} to increase timeout.
- 在 {2} 秒後,{0} 處理序無法連線到 {1} 處理序。原因可能是電腦太慢,請設定環境變數 {3},加長逾時。
-
-
-
- Test host process crashed
- 測試主機處理序當機
-
-
-
- Cannot attach the debugger to the default test host.
- 無法將偵錯工具連結到預設測試主機。
-
-
-
-
-
+
+
+
+
+
+ The active test run was aborted. Reason: {0}
+ 使用中的測試回合已中止。原因: {0}
+
+
+
+ An existing connection was forcibly closed by the remote host.
+ 遠端主機已強制關閉現有連線。
+
+
+
+ The active test discovery was aborted.
+ 使用中的測試探索已中止。
+
+
+
+ The active test discovery was aborted. Reason: {0}
+ 使用中的測試探索已中止。原因: {0}
+
+
+
+ Unable to communicate with test host process.
+ 無法與測試主機處理序通訊。
+
+
+
+ Unexpected message received. Expected MessageType : {0} Actual MessageType: {1}
+ 收到未預期的訊息。需要的訊息類型: {0},實際的訊息類型: {1}
+
+
+
+ Protocol version check failed. Make sure test runner and host are compatible.
+ 通訊協定版本檢查失敗。請確定測試執行器與主機相容。
+
+
+
+ Failed to negotiate protocol, waiting for response timed out after {0} seconds. This may occur due to machine slowness, please set environment variable {1} to increase timeout.
+ 無法交涉通訊協定,等待回應在 {0} 秒後已逾時。原因可能是電腦太慢,請設定環境變數 {1},加長逾時。
+
+
+
+ {0} process failed to connect to {1} process after {2} seconds. This may occur due to machine slowness, please set environment variable {3} to increase timeout.
+ 在 {2} 秒後,{0} 處理序無法連線到 {1} 處理序。原因可能是電腦太慢,請設定環境變數 {3},加長逾時。
+
+
+
+ Test host process crashed
+ 測試主機處理序當機
+
+
+
+ Cannot attach the debugger to the default test host.
+ 無法將偵錯工具連結到預設測試主機。
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CommunicationUtilities/TcpClientExtensions.cs b/src/Microsoft.TestPlatform.CommunicationUtilities/TcpClientExtensions.cs
index ad6a9bfee9..97a06447d1 100644
--- a/src/Microsoft.TestPlatform.CommunicationUtilities/TcpClientExtensions.cs
+++ b/src/Microsoft.TestPlatform.CommunicationUtilities/TcpClientExtensions.cs
@@ -71,7 +71,11 @@ internal static Task MessageLoopAsync(
ioException,
remoteEndPoint,
localEndPoint);
- error = ioException;
+ // Do not pass the error to the caller, the transport was torn down because testhost
+ // disconnected, in 99% of the cases. This error ends up confusing developers
+ // even though it just means "testhost crashed", look at testhost to see what happened.
+ // https://github.com/microsoft/vstest/issues/4461
+ // error = ioException;
break;
}
}
diff --git a/src/Microsoft.TestPlatform.CoreUtilities/Helpers/DotnetHostHelper.cs b/src/Microsoft.TestPlatform.CoreUtilities/Helpers/DotnetHostHelper.cs
index 1038fca464..519ee34410 100644
--- a/src/Microsoft.TestPlatform.CoreUtilities/Helpers/DotnetHostHelper.cs
+++ b/src/Microsoft.TestPlatform.CoreUtilities/Helpers/DotnetHostHelper.cs
@@ -96,14 +96,13 @@ public string GetMonoPath()
return monoPath;
}
- private bool TryGetExecutablePath(string executableBaseName, out string executablePath)
+ private bool TryGetExecutablePath(string executableBaseName, [NotNullWhen(true)] out string? executablePath)
{
if (_environment.OperatingSystem.Equals(PlatformOperatingSystem.Windows))
{
executableBaseName += ".exe";
}
- executablePath = string.Empty;
var pathString = Environment.GetEnvironmentVariable("PATH")!;
foreach (string path in pathString.Split(Path.PathSeparator))
{
@@ -115,6 +114,7 @@ private bool TryGetExecutablePath(string executableBaseName, out string executab
}
}
+ executablePath = null;
return false;
}
diff --git a/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.cs.xlf b/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.cs.xlf
index e806642171..6293abf623 100644
--- a/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.cs.xlf
+++ b/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.cs.xlf
@@ -1,87 +1,87 @@
-
-
-
-
-
- The parameter cannot be null or empty.
- Parametr nemůže být null nebo prázdný.
-
-
-
- Error: {0}
- Chyba: {0}
-
-
-
- Information: {0}
- Informace: {0}
-
-
-
- Warning: {0}
- Upozornění: {0}
-
-
-
- The specified argument cannot be empty.
- Zadaný argument nemůže být prázdný.
-
-
-
- The specified argument cannot be negative.
- Zadaný argument nemůže být záporný.
-
-
-
- The specified argument must have the following type: {0}.
- Zadaný argument musí být tohoto typu: {0}
-
-
-
- The specified argument has the following property, which cannot be an empty string: {0}.
- Zadaný argument má následující vlastnost, která nemůže být prázdný řetězec: {0}
-
-
-
- The specified argument has the following property, which cannot be negative: {0}.
- Zadaný argument má následující vlastnost, která nemůže být záporná: {0}
-
-
-
- The specified argument has the following property, which cannot be null: {0}.
- Zadaný argument má následující vlastnost, která nemůže být null: {0}
-
-
-
- The specified argument has the following property: {0}. This property must have the following type: {1}.
- Zadaný argument má následující vlastnost: {0}. Tato vlastnost musí být tohoto typu: {1}
-
-
-
- Unhandled exception occurred while processing a job from the '{0}' queue: {1}
- Při zpracování úlohy z fronty {0} došlo k neošetřené výjimce: {1}
-
-
-
- The {0} queue has already been disposed.
- Fronta {0} se už uvolnila.
-
-
-
- The {0} queue cannot be disposed while paused.
- Frontu {0} nejde uvolnit, když je pozastavená.
-
-
-
- Error getting process name.
- Při získávání názvu procesu se stala chyba.
-
-
-
- Could not find '{0}' host. Make sure that '{0}' is installed on the machine and is available in PATH environment variable.
- Hostitele {0} nešlo najít. Ujistěte se, jestli je {0} nainstalovaný na počítači a dostupný v cestě určené proměnnou prostředí PATH.
-
-
-
-
-
+
+
+
+
+
+ The parameter cannot be null or empty.
+ Parametr nemůže být null nebo prázdný.
+
+
+
+ Error: {0}
+ Chyba: {0}
+
+
+
+ Information: {0}
+ Informace: {0}
+
+
+
+ Warning: {0}
+ Upozornění: {0}
+
+
+
+ The specified argument cannot be empty.
+ Zadaný argument nemůže být prázdný.
+
+
+
+ The specified argument cannot be negative.
+ Zadaný argument nemůže být záporný.
+
+
+
+ The specified argument must have the following type: {0}.
+ Zadaný argument musí být tohoto typu: {0}
+
+
+
+ The specified argument has the following property, which cannot be an empty string: {0}.
+ Zadaný argument má následující vlastnost, která nemůže být prázdný řetězec: {0}
+
+
+
+ The specified argument has the following property, which cannot be negative: {0}.
+ Zadaný argument má následující vlastnost, která nemůže být záporná: {0}
+
+
+
+ The specified argument has the following property, which cannot be null: {0}.
+ Zadaný argument má následující vlastnost, která nemůže být null: {0}
+
+
+
+ The specified argument has the following property: {0}. This property must have the following type: {1}.
+ Zadaný argument má následující vlastnost: {0}. Tato vlastnost musí být tohoto typu: {1}
+
+
+
+ Unhandled exception occurred while processing a job from the '{0}' queue: {1}
+ Při zpracování úlohy z fronty {0} došlo k neošetřené výjimce: {1}
+
+
+
+ The {0} queue has already been disposed.
+ Fronta {0} se už uvolnila.
+
+
+
+ The {0} queue cannot be disposed while paused.
+ Frontu {0} nejde uvolnit, když je pozastavená.
+
+
+
+ Error getting process name.
+ Při získávání názvu procesu se stala chyba.
+
+
+
+ Could not find '{0}' host. Make sure that '{0}' is installed on the machine and is available in PATH environment variable.
+ Hostitele {0} nešlo najít. Ujistěte se, jestli je {0} nainstalovaný na počítači a dostupný v cestě určené proměnnou prostředí PATH.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.de.xlf b/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.de.xlf
index ae2863ff9c..62c0907a4c 100644
--- a/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.de.xlf
+++ b/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.de.xlf
@@ -1,87 +1,87 @@
-
-
-
-
-
- The parameter cannot be null or empty.
- Der Parameter darf nicht NULL oder leer sein.
-
-
-
- Error: {0}
- Fehler: {0}
-
-
-
- Information: {0}
- Informationen: {0}
-
-
-
- Warning: {0}
- Warnung: {0}
-
-
-
- The specified argument cannot be empty.
- Das angegebene Argument darf nicht leer sein.
-
-
-
- The specified argument cannot be negative.
- Das angegebene Argument darf nicht negativ sein.
-
-
-
- The specified argument must have the following type: {0}.
- Das angegebene Argument muss den folgenden Typ aufweisen: {0}.
-
-
-
- The specified argument has the following property, which cannot be an empty string: {0}.
- Das angegebene Argument weist die folgende Eigenschaft auf, die keine leere Zeichenfolge sein darf: {0}.
-
-
-
- The specified argument has the following property, which cannot be negative: {0}.
- Das angegebene Argument weist die folgende Eigenschaft auf, die nicht negativ sein darf: {0}.
-
-
-
- The specified argument has the following property, which cannot be null: {0}.
- Das angegebene Argument weist die folgende Eigenschaft auf, die nicht NULL sein darf: {0}.
-
-
-
- The specified argument has the following property: {0}. This property must have the following type: {1}.
- Das angegebene Argument weist die folgende Eigenschaft auf: {0}. Diese Eigenschaft muss den folgenden Typ aufweisen: {1}.
-
-
-
- Unhandled exception occurred while processing a job from the '{0}' queue: {1}
- Ausnahmefehler beim Verarbeiten eines Auftrags aus der Warteschlange "{0}": {1}
-
-
-
- The {0} queue has already been disposed.
- Die Warteschlange {0} wurde bereits verworfen.
-
-
-
- The {0} queue cannot be disposed while paused.
- Die Warteschlange {0} kann nicht verworfen werden, während sie angehalten ist.
-
-
-
- Error getting process name.
- Fehler beim Abrufen des Prozessnamens.
-
-
-
- Could not find '{0}' host. Make sure that '{0}' is installed on the machine and is available in PATH environment variable.
- Der Host "{0}" wurde nicht gefunden. Stellen Sie sicher, dass "{0}" auf dem Computer installiert und in der PATH-Umgebungsvariablen verfügbar ist.
-
-
-
-
-
+
+
+
+
+
+ The parameter cannot be null or empty.
+ Der Parameter darf nicht NULL oder leer sein.
+
+
+
+ Error: {0}
+ Fehler: {0}
+
+
+
+ Information: {0}
+ Informationen: {0}
+
+
+
+ Warning: {0}
+ Warnung: {0}
+
+
+
+ The specified argument cannot be empty.
+ Das angegebene Argument darf nicht leer sein.
+
+
+
+ The specified argument cannot be negative.
+ Das angegebene Argument darf nicht negativ sein.
+
+
+
+ The specified argument must have the following type: {0}.
+ Das angegebene Argument muss den folgenden Typ aufweisen: {0}.
+
+
+
+ The specified argument has the following property, which cannot be an empty string: {0}.
+ Das angegebene Argument weist die folgende Eigenschaft auf, die keine leere Zeichenfolge sein darf: {0}.
+
+
+
+ The specified argument has the following property, which cannot be negative: {0}.
+ Das angegebene Argument weist die folgende Eigenschaft auf, die nicht negativ sein darf: {0}.
+
+
+
+ The specified argument has the following property, which cannot be null: {0}.
+ Das angegebene Argument weist die folgende Eigenschaft auf, die nicht NULL sein darf: {0}.
+
+
+
+ The specified argument has the following property: {0}. This property must have the following type: {1}.
+ Das angegebene Argument weist die folgende Eigenschaft auf: {0}. Diese Eigenschaft muss den folgenden Typ aufweisen: {1}.
+
+
+
+ Unhandled exception occurred while processing a job from the '{0}' queue: {1}
+ Ausnahmefehler beim Verarbeiten eines Auftrags aus der Warteschlange "{0}": {1}
+
+
+
+ The {0} queue has already been disposed.
+ Die Warteschlange {0} wurde bereits verworfen.
+
+
+
+ The {0} queue cannot be disposed while paused.
+ Die Warteschlange {0} kann nicht verworfen werden, während sie angehalten ist.
+
+
+
+ Error getting process name.
+ Fehler beim Abrufen des Prozessnamens.
+
+
+
+ Could not find '{0}' host. Make sure that '{0}' is installed on the machine and is available in PATH environment variable.
+ Der Host "{0}" wurde nicht gefunden. Stellen Sie sicher, dass "{0}" auf dem Computer installiert und in der PATH-Umgebungsvariablen verfügbar ist.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.es.xlf b/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.es.xlf
index e353f79d05..e51b82f212 100644
--- a/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.es.xlf
+++ b/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.es.xlf
@@ -1,87 +1,87 @@
-
-
-
-
-
- The parameter cannot be null or empty.
- El parámetro no puede ser nulo ni estar vacío.
-
-
-
- Error: {0}
- Error: {0}
-
-
-
- Information: {0}
- Información: {0}
-
-
-
- Warning: {0}
- Advertencia: {0}
-
-
-
- The specified argument cannot be empty.
- El argumento especificado no puede estar vacío.
-
-
-
- The specified argument cannot be negative.
- El argumento especificado no puede ser negativo.
-
-
-
- The specified argument must have the following type: {0}.
- El argumento especificado debe tener el tipo {0}.
-
-
-
- The specified argument has the following property, which cannot be an empty string: {0}.
- El argumento especificado tiene la siguiente propiedad, que no puede ser una cadena vacía: {0}.
-
-
-
- The specified argument has the following property, which cannot be negative: {0}.
- El argumento especificado tiene la siguiente propiedad, que no puede ser negativa: {0}.
-
-
-
- The specified argument has the following property, which cannot be null: {0}.
- El argumento especificado tiene la siguiente propiedad, que no puede ser nula: {0}.
-
-
-
- The specified argument has the following property: {0}. This property must have the following type: {1}.
- El argumento especificado tiene la siguiente propiedad: {0}. Esta propiedad debe tener el tipo {1}.
-
-
-
- Unhandled exception occurred while processing a job from the '{0}' queue: {1}
- Se produjo una excepción no controlada al procesar un trabajo de la cola '{0}': {1}
-
-
-
- The {0} queue has already been disposed.
- La cola {0} ya se ha eliminado.
-
-
-
- The {0} queue cannot be disposed while paused.
- La cola {0} no se puede eliminar mientras está en pausa.
-
-
-
- Error getting process name.
- Error al obtener el nombre del proceso.
-
-
-
- Could not find '{0}' host. Make sure that '{0}' is installed on the machine and is available in PATH environment variable.
- No se pudo encontrar el host "{0}". Asegúrese de que "{0}" está instalado en el equipo y está disponible en la variable de entorno PATH.
-
-
-
-
-
+
+
+
+
+
+ The parameter cannot be null or empty.
+ El parámetro no puede ser nulo ni estar vacío.
+
+
+
+ Error: {0}
+ Error: {0}
+
+
+
+ Information: {0}
+ Información: {0}
+
+
+
+ Warning: {0}
+ Advertencia: {0}
+
+
+
+ The specified argument cannot be empty.
+ El argumento especificado no puede estar vacío.
+
+
+
+ The specified argument cannot be negative.
+ El argumento especificado no puede ser negativo.
+
+
+
+ The specified argument must have the following type: {0}.
+ El argumento especificado debe tener el tipo {0}.
+
+
+
+ The specified argument has the following property, which cannot be an empty string: {0}.
+ El argumento especificado tiene la siguiente propiedad, que no puede ser una cadena vacía: {0}.
+
+
+
+ The specified argument has the following property, which cannot be negative: {0}.
+ El argumento especificado tiene la siguiente propiedad, que no puede ser negativa: {0}.
+
+
+
+ The specified argument has the following property, which cannot be null: {0}.
+ El argumento especificado tiene la siguiente propiedad, que no puede ser nula: {0}.
+
+
+
+ The specified argument has the following property: {0}. This property must have the following type: {1}.
+ El argumento especificado tiene la siguiente propiedad: {0}. Esta propiedad debe tener el tipo {1}.
+
+
+
+ Unhandled exception occurred while processing a job from the '{0}' queue: {1}
+ Se produjo una excepción no controlada al procesar un trabajo de la cola '{0}': {1}
+
+
+
+ The {0} queue has already been disposed.
+ La cola {0} ya se ha eliminado.
+
+
+
+ The {0} queue cannot be disposed while paused.
+ La cola {0} no se puede eliminar mientras está en pausa.
+
+
+
+ Error getting process name.
+ Error al obtener el nombre del proceso.
+
+
+
+ Could not find '{0}' host. Make sure that '{0}' is installed on the machine and is available in PATH environment variable.
+ No se pudo encontrar el host "{0}". Asegúrese de que "{0}" está instalado en el equipo y está disponible en la variable de entorno PATH.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.fr.xlf b/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.fr.xlf
index f881766ece..afe77aa864 100644
--- a/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.fr.xlf
+++ b/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.fr.xlf
@@ -1,87 +1,87 @@
-
-
-
-
-
- The parameter cannot be null or empty.
- Le paramètre ne peut pas avoir une valeur null ou être vide.
-
-
-
- Error: {0}
- Erreur : {0}
-
-
-
- Information: {0}
- Informations : {0}
-
-
-
- Warning: {0}
- Avertissement : {0}
-
-
-
- The specified argument cannot be empty.
- L'argument spécifié ne peut pas être vide.
-
-
-
- The specified argument cannot be negative.
- L'argument spécifié ne peut pas être négatif.
-
-
-
- The specified argument must have the following type: {0}.
- L'argument spécifié doit être du type suivant : {0}.
-
-
-
- The specified argument has the following property, which cannot be an empty string: {0}.
- L'argument spécifié a la propriété suivante, laquelle ne peut pas être une chaîne vide : {0}.
-
-
-
- The specified argument has the following property, which cannot be negative: {0}.
- L'argument spécifié a la propriété suivante, laquelle ne peut pas être négative : {0}.
-
-
-
- The specified argument has the following property, which cannot be null: {0}.
- L'argument spécifié a la propriété suivante, laquelle ne peut pas être une valeur null : {0}.
-
-
-
- The specified argument has the following property: {0}. This property must have the following type: {1}.
- L'argument spécifié a la propriété suivante : {0}. Cette propriété doit avoir le type suivant : {1}.
-
-
-
- Unhandled exception occurred while processing a job from the '{0}' queue: {1}
- Une exception non prise en charge s'est produite durant le traitement d'un travail à partir de la file d'attente '{0}' : {1}
-
-
-
- The {0} queue has already been disposed.
- La file d'attente {0} a déjà été supprimée.
-
-
-
- The {0} queue cannot be disposed while paused.
- Impossible de supprimer la file d'attente {0} pendant qu'elle est en pause.
-
-
-
- Error getting process name.
- Erreur d'obtention du nom du processus.
-
-
-
- Could not find '{0}' host. Make sure that '{0}' is installed on the machine and is available in PATH environment variable.
- L'hôte '{0}' est introuvable. Vérifiez que '{0}' est installé sur la machine et qu'il est disponible dans la variable d'environnement PATH.
-
-
-
-
-
+
+
+
+
+
+ The parameter cannot be null or empty.
+ Le paramètre ne peut pas avoir une valeur null ou être vide.
+
+
+
+ Error: {0}
+ Erreur : {0}
+
+
+
+ Information: {0}
+ Informations : {0}
+
+
+
+ Warning: {0}
+ Avertissement : {0}
+
+
+
+ The specified argument cannot be empty.
+ L'argument spécifié ne peut pas être vide.
+
+
+
+ The specified argument cannot be negative.
+ L'argument spécifié ne peut pas être négatif.
+
+
+
+ The specified argument must have the following type: {0}.
+ L'argument spécifié doit être du type suivant : {0}.
+
+
+
+ The specified argument has the following property, which cannot be an empty string: {0}.
+ L'argument spécifié a la propriété suivante, laquelle ne peut pas être une chaîne vide : {0}.
+
+
+
+ The specified argument has the following property, which cannot be negative: {0}.
+ L'argument spécifié a la propriété suivante, laquelle ne peut pas être négative : {0}.
+
+
+
+ The specified argument has the following property, which cannot be null: {0}.
+ L'argument spécifié a la propriété suivante, laquelle ne peut pas être une valeur null : {0}.
+
+
+
+ The specified argument has the following property: {0}. This property must have the following type: {1}.
+ L'argument spécifié a la propriété suivante : {0}. Cette propriété doit avoir le type suivant : {1}.
+
+
+
+ Unhandled exception occurred while processing a job from the '{0}' queue: {1}
+ Une exception non prise en charge s'est produite durant le traitement d'un travail à partir de la file d'attente '{0}' : {1}
+
+
+
+ The {0} queue has already been disposed.
+ La file d'attente {0} a déjà été supprimée.
+
+
+
+ The {0} queue cannot be disposed while paused.
+ Impossible de supprimer la file d'attente {0} pendant qu'elle est en pause.
+
+
+
+ Error getting process name.
+ Erreur d'obtention du nom du processus.
+
+
+
+ Could not find '{0}' host. Make sure that '{0}' is installed on the machine and is available in PATH environment variable.
+ L'hôte '{0}' est introuvable. Vérifiez que '{0}' est installé sur la machine et qu'il est disponible dans la variable d'environnement PATH.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.it.xlf b/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.it.xlf
index e6e782f8cc..3956137a02 100644
--- a/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.it.xlf
+++ b/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.it.xlf
@@ -1,87 +1,87 @@
-
-
-
-
-
- The parameter cannot be null or empty.
- Il parametro non può essere vuoto o Null.
-
-
-
- Error: {0}
- Errore: {0}
-
-
-
- Information: {0}
- Informazioni: {0}
-
-
-
- Warning: {0}
- Avviso: {0}
-
-
-
- The specified argument cannot be empty.
- L'argomento specificato non può essere vuoto.
-
-
-
- The specified argument cannot be negative.
- L'argomento specificato non può essere negativo.
-
-
-
- The specified argument must have the following type: {0}.
- L'argomento specificato deve essere del tipo seguente: {0}.
-
-
-
- The specified argument has the following property, which cannot be an empty string: {0}.
- L'argomento specificato presenta la proprietà seguente, che non può essere una stringa vuota: {0}.
-
-
-
- The specified argument has the following property, which cannot be negative: {0}.
- L'argomento specificato presenta la proprietà seguente, che non può essere negativa: {0}.
-
-
-
- The specified argument has the following property, which cannot be null: {0}.
- L'argomento specificato presenta la proprietà seguente, che non può essere Null: {0}.
-
-
-
- The specified argument has the following property: {0}. This property must have the following type: {1}.
- L'argomento specificato presenta la proprietà seguente: {0}. Tale proprietà deve essere del tipo seguente: {1}.
-
-
-
- Unhandled exception occurred while processing a job from the '{0}' queue: {1}
- Si è verificata un'eccezione non gestita durante l'elaborazione di un processo dalla coda di '{0}': {1}
-
-
-
- The {0} queue has already been disposed.
- La coda {0} è già stata eliminata.
-
-
-
- The {0} queue cannot be disposed while paused.
- Non è possibile eliminare la coda {0} mentre è in sospeso.
-
-
-
- Error getting process name.
- Si è verificato un errore durante il recupero del nome del processo.
-
-
-
- Could not find '{0}' host. Make sure that '{0}' is installed on the machine and is available in PATH environment variable.
- L'host '{0}' non è stato trovato. Assicurarsi che '{0}' sia installato nel computer e che sia disponibile nella variabile di ambiente PATH.
-
-
-
-
-
+
+
+
+
+
+ The parameter cannot be null or empty.
+ Il parametro non può essere vuoto o Null.
+
+
+
+ Error: {0}
+ Errore: {0}
+
+
+
+ Information: {0}
+ Informazioni: {0}
+
+
+
+ Warning: {0}
+ Avviso: {0}
+
+
+
+ The specified argument cannot be empty.
+ L'argomento specificato non può essere vuoto.
+
+
+
+ The specified argument cannot be negative.
+ L'argomento specificato non può essere negativo.
+
+
+
+ The specified argument must have the following type: {0}.
+ L'argomento specificato deve essere del tipo seguente: {0}.
+
+
+
+ The specified argument has the following property, which cannot be an empty string: {0}.
+ L'argomento specificato presenta la proprietà seguente, che non può essere una stringa vuota: {0}.
+
+
+
+ The specified argument has the following property, which cannot be negative: {0}.
+ L'argomento specificato presenta la proprietà seguente, che non può essere negativa: {0}.
+
+
+
+ The specified argument has the following property, which cannot be null: {0}.
+ L'argomento specificato presenta la proprietà seguente, che non può essere Null: {0}.
+
+
+
+ The specified argument has the following property: {0}. This property must have the following type: {1}.
+ L'argomento specificato presenta la proprietà seguente: {0}. Tale proprietà deve essere del tipo seguente: {1}.
+
+
+
+ Unhandled exception occurred while processing a job from the '{0}' queue: {1}
+ Si è verificata un'eccezione non gestita durante l'elaborazione di un processo dalla coda di '{0}': {1}
+
+
+
+ The {0} queue has already been disposed.
+ La coda {0} è già stata eliminata.
+
+
+
+ The {0} queue cannot be disposed while paused.
+ Non è possibile eliminare la coda {0} mentre è in sospeso.
+
+
+
+ Error getting process name.
+ Si è verificato un errore durante il recupero del nome del processo.
+
+
+
+ Could not find '{0}' host. Make sure that '{0}' is installed on the machine and is available in PATH environment variable.
+ L'host '{0}' non è stato trovato. Assicurarsi che '{0}' sia installato nel computer e che sia disponibile nella variabile di ambiente PATH.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.ja.xlf b/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.ja.xlf
index 0b55a053c0..8dcc27956e 100644
--- a/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.ja.xlf
+++ b/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.ja.xlf
@@ -1,87 +1,87 @@
-
-
-
-
-
- The parameter cannot be null or empty.
- パラメーターを null または空にすることはできません。
-
-
-
- Error: {0}
- エラー: {0}
-
-
-
- Information: {0}
- 情報: {0}
-
-
-
- Warning: {0}
- 警告: {0}
-
-
-
- The specified argument cannot be empty.
- 指定した引数を空にすることはできません。
-
-
-
- The specified argument cannot be negative.
- 指定した引数を負の値にすることはできません。
-
-
-
- The specified argument must have the following type: {0}.
- 指定された引数は次の型でなければなりません: {0}。
-
-
-
- The specified argument has the following property, which cannot be an empty string: {0}.
- 指定された引数には次のプロパティがあり、これを空の文字列にすることはできません: {0}。
-
-
-
- The specified argument has the following property, which cannot be negative: {0}.
- 指定した引数には次のプロパティがあります。このプロパティを負の値にすることはできません: {0}。
-
-
-
- The specified argument has the following property, which cannot be null: {0}.
- 指定した引数には次のプロパティがあります。このプロパティを null にすることはできません: {0}。
-
-
-
- The specified argument has the following property: {0}. This property must have the following type: {1}.
- 指定された引数には次のプロパティがあります: {0}。このプロパティは次の型でなければなりません: {1}。
-
-
-
- Unhandled exception occurred while processing a job from the '{0}' queue: {1}
- '{0}' キューからジョブを処理中にハンドルされない例外が発生しました: {1}。
-
-
-
- The {0} queue has already been disposed.
- {0} キューは既に破棄されています。
-
-
-
- The {0} queue cannot be disposed while paused.
- {0} キューは一時停止中に破棄できません。
-
-
-
- Error getting process name.
- プロセス名の取得エラーです。
-
-
-
- Could not find '{0}' host. Make sure that '{0}' is installed on the machine and is available in PATH environment variable.
- '{0}' ホストが見つかりませんでした。'{0}' がコンピューターにインストールされており、PATH 環境変数で使用できることを確認してください。
-
-
-
-
-
+
+
+
+
+
+ The parameter cannot be null or empty.
+ パラメーターを null または空にすることはできません。
+
+
+
+ Error: {0}
+ エラー: {0}
+
+
+
+ Information: {0}
+ 情報: {0}
+
+
+
+ Warning: {0}
+ 警告: {0}
+
+
+
+ The specified argument cannot be empty.
+ 指定した引数を空にすることはできません。
+
+
+
+ The specified argument cannot be negative.
+ 指定した引数を負の値にすることはできません。
+
+
+
+ The specified argument must have the following type: {0}.
+ 指定された引数は次の型でなければなりません: {0}。
+
+
+
+ The specified argument has the following property, which cannot be an empty string: {0}.
+ 指定された引数には次のプロパティがあり、これを空の文字列にすることはできません: {0}。
+
+
+
+ The specified argument has the following property, which cannot be negative: {0}.
+ 指定した引数には次のプロパティがあります。このプロパティを負の値にすることはできません: {0}。
+
+
+
+ The specified argument has the following property, which cannot be null: {0}.
+ 指定した引数には次のプロパティがあります。このプロパティを null にすることはできません: {0}。
+
+
+
+ The specified argument has the following property: {0}. This property must have the following type: {1}.
+ 指定された引数には次のプロパティがあります: {0}。このプロパティは次の型でなければなりません: {1}。
+
+
+
+ Unhandled exception occurred while processing a job from the '{0}' queue: {1}
+ '{0}' キューからジョブを処理中にハンドルされない例外が発生しました: {1}。
+
+
+
+ The {0} queue has already been disposed.
+ {0} キューは既に破棄されています。
+
+
+
+ The {0} queue cannot be disposed while paused.
+ {0} キューは一時停止中に破棄できません。
+
+
+
+ Error getting process name.
+ プロセス名の取得エラーです。
+
+
+
+ Could not find '{0}' host. Make sure that '{0}' is installed on the machine and is available in PATH environment variable.
+ '{0}' ホストが見つかりませんでした。'{0}' がコンピューターにインストールされており、PATH 環境変数で使用できることを確認してください。
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.ko.xlf b/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.ko.xlf
index 8aa5640d2e..975dc94381 100644
--- a/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.ko.xlf
+++ b/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.ko.xlf
@@ -1,87 +1,87 @@
-
-
-
-
-
- The parameter cannot be null or empty.
- 매개 변수는 null이거나 비워 둘 수 없습니다.
-
-
-
- Error: {0}
- 오류: {0}
-
-
-
- Information: {0}
- 정보: {0}
-
-
-
- Warning: {0}
- 경고: {0}
-
-
-
- The specified argument cannot be empty.
- 지정한 인수는 비워 둘 수 없습니다.
-
-
-
- The specified argument cannot be negative.
- 지정한 인수는 음수일 수 없습니다.
-
-
-
- The specified argument must have the following type: {0}.
- 지정한 인수는 {0} 형식이어야 합니다.
-
-
-
- The specified argument has the following property, which cannot be an empty string: {0}.
- 지정한 인수에 {0} 속성이 있습니다. 이 속성은 빈 문자열일 수 없습니다.
-
-
-
- The specified argument has the following property, which cannot be negative: {0}.
- 지정한 인수에 {0} 속성이 있습니다. 이 속성은 음수일 수 없습니다.
-
-
-
- The specified argument has the following property, which cannot be null: {0}.
- 지정한 인수에 {0} 속성이 있습니다. 이 속성은 null일 수 없습니다.
-
-
-
- The specified argument has the following property: {0}. This property must have the following type: {1}.
- 지정한 인수에 {0} 속성이 있습니다. 이 속성은 {1} 형식이어야 합니다.
-
-
-
- Unhandled exception occurred while processing a job from the '{0}' queue: {1}
- '{0}' 큐에서 작업을 처리하는 동안 처리되지 않은 예외가 발생했습니다. {1}
-
-
-
- The {0} queue has already been disposed.
- {0} 큐가 이미 삭제되었습니다.
-
-
-
- The {0} queue cannot be disposed while paused.
- 일시 중지된 동안에는 {0} 큐를 삭제할 수 없습니다.
-
-
-
- Error getting process name.
- 프로세스 이름을 가져오는 동안 오류가 발생했습니다.
-
-
-
- Could not find '{0}' host. Make sure that '{0}' is installed on the machine and is available in PATH environment variable.
- ‘{0}’ 호스트를 찾을 수 없습니다. ‘{0}’이(가) 컴퓨터에 설치되어 있고 PATH 환경 변수에서 사용할 수 있는지 확인하세요.
-
-
-
-
-
+
+
+
+
+
+ The parameter cannot be null or empty.
+ 매개 변수는 null이거나 비워 둘 수 없습니다.
+
+
+
+ Error: {0}
+ 오류: {0}
+
+
+
+ Information: {0}
+ 정보: {0}
+
+
+
+ Warning: {0}
+ 경고: {0}
+
+
+
+ The specified argument cannot be empty.
+ 지정한 인수는 비워 둘 수 없습니다.
+
+
+
+ The specified argument cannot be negative.
+ 지정한 인수는 음수일 수 없습니다.
+
+
+
+ The specified argument must have the following type: {0}.
+ 지정한 인수는 {0} 형식이어야 합니다.
+
+
+
+ The specified argument has the following property, which cannot be an empty string: {0}.
+ 지정한 인수에 {0} 속성이 있습니다. 이 속성은 빈 문자열일 수 없습니다.
+
+
+
+ The specified argument has the following property, which cannot be negative: {0}.
+ 지정한 인수에 {0} 속성이 있습니다. 이 속성은 음수일 수 없습니다.
+
+
+
+ The specified argument has the following property, which cannot be null: {0}.
+ 지정한 인수에 {0} 속성이 있습니다. 이 속성은 null일 수 없습니다.
+
+
+
+ The specified argument has the following property: {0}. This property must have the following type: {1}.
+ 지정한 인수에 {0} 속성이 있습니다. 이 속성은 {1} 형식이어야 합니다.
+
+
+
+ Unhandled exception occurred while processing a job from the '{0}' queue: {1}
+ '{0}' 큐에서 작업을 처리하는 동안 처리되지 않은 예외가 발생했습니다. {1}
+
+
+
+ The {0} queue has already been disposed.
+ {0} 큐가 이미 삭제되었습니다.
+
+
+
+ The {0} queue cannot be disposed while paused.
+ 일시 중지된 동안에는 {0} 큐를 삭제할 수 없습니다.
+
+
+
+ Error getting process name.
+ 프로세스 이름을 가져오는 동안 오류가 발생했습니다.
+
+
+
+ Could not find '{0}' host. Make sure that '{0}' is installed on the machine and is available in PATH environment variable.
+ ‘{0}’ 호스트를 찾을 수 없습니다. ‘{0}’이(가) 컴퓨터에 설치되어 있고 PATH 환경 변수에서 사용할 수 있는지 확인하세요.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.pl.xlf b/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.pl.xlf
index 5556e65ac6..dbddf6087c 100644
--- a/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.pl.xlf
+++ b/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.pl.xlf
@@ -1,87 +1,87 @@
-
-
-
-
-
- The parameter cannot be null or empty.
- Parametr nie może mieć wartości null ani być pusty.
-
-
-
- Error: {0}
- Błąd: {0}
-
-
-
- Information: {0}
- Informacje: {0}
-
-
-
- Warning: {0}
- Ostrzeżenie: {0}
-
-
-
- The specified argument cannot be empty.
- Określony argument nie może być pusty.
-
-
-
- The specified argument cannot be negative.
- Określony argument nie może być ujemny.
-
-
-
- The specified argument must have the following type: {0}.
- Określony argument musi być następującego typu: {0}.
-
-
-
- The specified argument has the following property, which cannot be an empty string: {0}.
- Określony argument ma następującą właściwość, która nie może być pustym ciągiem: {0}.
-
-
-
- The specified argument has the following property, which cannot be negative: {0}.
- Określony argument ma następującą właściwość, która nie może być ujemna: {0}.
-
-
-
- The specified argument has the following property, which cannot be null: {0}.
- Określony argument ma następującą właściwość, która nie może mieć wartości null: {0}.
-
-
-
- The specified argument has the following property: {0}. This property must have the following type: {1}.
- Określony argument ma następującą właściwość: {0}. Ta właściwość musi być następującego typu: {1}.
-
-
-
- Unhandled exception occurred while processing a job from the '{0}' queue: {1}
- Wystąpił nieobsługiwany wyjątek podczas przetwarzania zadania z kolejki „{0}”: {1}
-
-
-
- The {0} queue has already been disposed.
- Kolejka {0} została już usunięta.
-
-
-
- The {0} queue cannot be disposed while paused.
- Nie można usunąć kolejki {0} podczas wstrzymania.
-
-
-
- Error getting process name.
- Błąd podczas pobierania nazwy procesu.
-
-
-
- Could not find '{0}' host. Make sure that '{0}' is installed on the machine and is available in PATH environment variable.
- Nie można znaleźć hosta „{0}”. Upewnij się, że element „{0}” jest zainstalowany na maszynie i jest dostępny w zmiennej środowiskowej PATH.
-
-
-
-
-
+
+
+
+
+
+ The parameter cannot be null or empty.
+ Parametr nie może mieć wartości null ani być pusty.
+
+
+
+ Error: {0}
+ Błąd: {0}
+
+
+
+ Information: {0}
+ Informacje: {0}
+
+
+
+ Warning: {0}
+ Ostrzeżenie: {0}
+
+
+
+ The specified argument cannot be empty.
+ Określony argument nie może być pusty.
+
+
+
+ The specified argument cannot be negative.
+ Określony argument nie może być ujemny.
+
+
+
+ The specified argument must have the following type: {0}.
+ Określony argument musi być następującego typu: {0}.
+
+
+
+ The specified argument has the following property, which cannot be an empty string: {0}.
+ Określony argument ma następującą właściwość, która nie może być pustym ciągiem: {0}.
+
+
+
+ The specified argument has the following property, which cannot be negative: {0}.
+ Określony argument ma następującą właściwość, która nie może być ujemna: {0}.
+
+
+
+ The specified argument has the following property, which cannot be null: {0}.
+ Określony argument ma następującą właściwość, która nie może mieć wartości null: {0}.
+
+
+
+ The specified argument has the following property: {0}. This property must have the following type: {1}.
+ Określony argument ma następującą właściwość: {0}. Ta właściwość musi być następującego typu: {1}.
+
+
+
+ Unhandled exception occurred while processing a job from the '{0}' queue: {1}
+ Wystąpił nieobsługiwany wyjątek podczas przetwarzania zadania z kolejki „{0}”: {1}
+
+
+
+ The {0} queue has already been disposed.
+ Kolejka {0} została już usunięta.
+
+
+
+ The {0} queue cannot be disposed while paused.
+ Nie można usunąć kolejki {0} podczas wstrzymania.
+
+
+
+ Error getting process name.
+ Błąd podczas pobierania nazwy procesu.
+
+
+
+ Could not find '{0}' host. Make sure that '{0}' is installed on the machine and is available in PATH environment variable.
+ Nie można znaleźć hosta „{0}”. Upewnij się, że element „{0}” jest zainstalowany na maszynie i jest dostępny w zmiennej środowiskowej PATH.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.pt-BR.xlf b/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.pt-BR.xlf
index 00ce799b68..1ef2e67832 100644
--- a/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.pt-BR.xlf
+++ b/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.pt-BR.xlf
@@ -1,87 +1,87 @@
-
-
-
-
-
- The parameter cannot be null or empty.
- O parâmetro não pode ser nulo ou estar vazio.
-
-
-
- Error: {0}
- Erro: {0}
-
-
-
- Information: {0}
- Informações: {0}
-
-
-
- Warning: {0}
- Aviso: {0}
-
-
-
- The specified argument cannot be empty.
- O argumento especificado não pode estar vazio.
-
-
-
- The specified argument cannot be negative.
- O argumento especificado não pode ser negativo.
-
-
-
- The specified argument must have the following type: {0}.
- O argumento especificado deve ter o seguinte tipo: {0}.
-
-
-
- The specified argument has the following property, which cannot be an empty string: {0}.
- O argumento especificado tem a seguinte propriedade, que não pode ser uma cadeia de caracteres vazia: {0}.
-
-
-
- The specified argument has the following property, which cannot be negative: {0}.
- O argumento especificado tem a seguinte propriedade, que não pode ser negativa: {0}.
-
-
-
- The specified argument has the following property, which cannot be null: {0}.
- O argumento especificado tem a seguinte propriedade, que não pode ser nula: {0}.
-
-
-
- The specified argument has the following property: {0}. This property must have the following type: {1}.
- O argumento especificado tem a seguinte propriedade: {0}. Esta propriedade deve ter o seguinte tipo: {1}.
-
-
-
- Unhandled exception occurred while processing a job from the '{0}' queue: {1}
- Ocorreu uma exceção sem tratamento ao processar um trabalho da fila '{0}': {1}
-
-
-
- The {0} queue has already been disposed.
- A fila {0} já foi descartada.
-
-
-
- The {0} queue cannot be disposed while paused.
- A fila {0} não pode ser descartada enquanto está em pausa.
-
-
-
- Error getting process name.
- Erro ao obter o nome do processo.
-
-
-
- Could not find '{0}' host. Make sure that '{0}' is installed on the machine and is available in PATH environment variable.
- Não foi possível encontrar o host '{0}'. Verifique se o '{0}' está instalado no computador e está disponível na variável de ambiente PATH.
-
-
-
-
-
+
+
+
+
+
+ The parameter cannot be null or empty.
+ O parâmetro não pode ser nulo ou estar vazio.
+
+
+
+ Error: {0}
+ Erro: {0}
+
+
+
+ Information: {0}
+ Informações: {0}
+
+
+
+ Warning: {0}
+ Aviso: {0}
+
+
+
+ The specified argument cannot be empty.
+ O argumento especificado não pode estar vazio.
+
+
+
+ The specified argument cannot be negative.
+ O argumento especificado não pode ser negativo.
+
+
+
+ The specified argument must have the following type: {0}.
+ O argumento especificado deve ter o seguinte tipo: {0}.
+
+
+
+ The specified argument has the following property, which cannot be an empty string: {0}.
+ O argumento especificado tem a seguinte propriedade, que não pode ser uma cadeia de caracteres vazia: {0}.
+
+
+
+ The specified argument has the following property, which cannot be negative: {0}.
+ O argumento especificado tem a seguinte propriedade, que não pode ser negativa: {0}.
+
+
+
+ The specified argument has the following property, which cannot be null: {0}.
+ O argumento especificado tem a seguinte propriedade, que não pode ser nula: {0}.
+
+
+
+ The specified argument has the following property: {0}. This property must have the following type: {1}.
+ O argumento especificado tem a seguinte propriedade: {0}. Esta propriedade deve ter o seguinte tipo: {1}.
+
+
+
+ Unhandled exception occurred while processing a job from the '{0}' queue: {1}
+ Ocorreu uma exceção sem tratamento ao processar um trabalho da fila '{0}': {1}
+
+
+
+ The {0} queue has already been disposed.
+ A fila {0} já foi descartada.
+
+
+
+ The {0} queue cannot be disposed while paused.
+ A fila {0} não pode ser descartada enquanto está em pausa.
+
+
+
+ Error getting process name.
+ Erro ao obter o nome do processo.
+
+
+
+ Could not find '{0}' host. Make sure that '{0}' is installed on the machine and is available in PATH environment variable.
+ Não foi possível encontrar o host '{0}'. Verifique se o '{0}' está instalado no computador e está disponível na variável de ambiente PATH.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.ru.xlf b/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.ru.xlf
index b46b9e0aa8..3abeba195c 100644
--- a/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.ru.xlf
+++ b/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.ru.xlf
@@ -1,87 +1,87 @@
-
-
-
-
-
- The parameter cannot be null or empty.
- Параметр не может быть пустым или иметь значение null.
-
-
-
- Error: {0}
- Ошибка: {0}
-
-
-
- Information: {0}
- Сведения: {0}
-
-
-
- Warning: {0}
- Предупреждение: {0}
-
-
-
- The specified argument cannot be empty.
- Указанный аргумент не может быть пустым.
-
-
-
- The specified argument cannot be negative.
- Указанный аргумент не может быть отрицательным.
-
-
-
- The specified argument must have the following type: {0}.
- Указанный аргумент должен иметь следующий тип: {0}.
-
-
-
- The specified argument has the following property, which cannot be an empty string: {0}.
- Указанный аргумент имеет следующее свойство, которое не может быть пустой строкой: {0}.
-
-
-
- The specified argument has the following property, which cannot be negative: {0}.
- Указанный аргумент имеет следующее свойство, которое не может быть отрицательным: {0}.
-
-
-
- The specified argument has the following property, which cannot be null: {0}.
- Указанный аргумент имеет следующее свойство, которое не может иметь значение null: {0}.
-
-
-
- The specified argument has the following property: {0}. This property must have the following type: {1}.
- Указанный аргумент имеет следующее свойство: {0}. Это свойство должно относиться к следующему типу: {1}.
-
-
-
- Unhandled exception occurred while processing a job from the '{0}' queue: {1}
- При обработке задания из очереди "{0}" возникло необработанное исключение: {1}
-
-
-
- The {0} queue has already been disposed.
- Очередь {0} уже удалена.
-
-
-
- The {0} queue cannot be disposed while paused.
- Нельзя удалить приостановленную очередь {0}.
-
-
-
- Error getting process name.
- Ошибка при получении имени процесса.
-
-
-
- Could not find '{0}' host. Make sure that '{0}' is installed on the machine and is available in PATH environment variable.
- Не удалось найти хост "{0}". Убедитесь, что "{0}" установлен на компьютере и доступен в переменной среды PATH.
-
-
-
-
-
+
+
+
+
+
+ The parameter cannot be null or empty.
+ Параметр не может быть пустым или иметь значение null.
+
+
+
+ Error: {0}
+ Ошибка: {0}
+
+
+
+ Information: {0}
+ Сведения: {0}
+
+
+
+ Warning: {0}
+ Предупреждение: {0}
+
+
+
+ The specified argument cannot be empty.
+ Указанный аргумент не может быть пустым.
+
+
+
+ The specified argument cannot be negative.
+ Указанный аргумент не может быть отрицательным.
+
+
+
+ The specified argument must have the following type: {0}.
+ Указанный аргумент должен иметь следующий тип: {0}.
+
+
+
+ The specified argument has the following property, which cannot be an empty string: {0}.
+ Указанный аргумент имеет следующее свойство, которое не может быть пустой строкой: {0}.
+
+
+
+ The specified argument has the following property, which cannot be negative: {0}.
+ Указанный аргумент имеет следующее свойство, которое не может быть отрицательным: {0}.
+
+
+
+ The specified argument has the following property, which cannot be null: {0}.
+ Указанный аргумент имеет следующее свойство, которое не может иметь значение null: {0}.
+
+
+
+ The specified argument has the following property: {0}. This property must have the following type: {1}.
+ Указанный аргумент имеет следующее свойство: {0}. Это свойство должно относиться к следующему типу: {1}.
+
+
+
+ Unhandled exception occurred while processing a job from the '{0}' queue: {1}
+ При обработке задания из очереди "{0}" возникло необработанное исключение: {1}
+
+
+
+ The {0} queue has already been disposed.
+ Очередь {0} уже удалена.
+
+
+
+ The {0} queue cannot be disposed while paused.
+ Нельзя удалить приостановленную очередь {0}.
+
+
+
+ Error getting process name.
+ Ошибка при получении имени процесса.
+
+
+
+ Could not find '{0}' host. Make sure that '{0}' is installed on the machine and is available in PATH environment variable.
+ Не удалось найти хост "{0}". Убедитесь, что "{0}" установлен на компьютере и доступен в переменной среды PATH.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.tr.xlf b/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.tr.xlf
index b515f65a75..cc12f2e210 100644
--- a/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.tr.xlf
+++ b/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.tr.xlf
@@ -1,87 +1,87 @@
-
-
-
-
-
- The parameter cannot be null or empty.
- Parametre null veya boş olamaz.
-
-
-
- Error: {0}
- Hata: {0}
-
-
-
- Information: {0}
- Bilgi: {0}
-
-
-
- Warning: {0}
- Uyarı: {0}
-
-
-
- The specified argument cannot be empty.
- Belirtilen bağımsız değişken boş olamaz.
-
-
-
- The specified argument cannot be negative.
- Belirtilen bağımsız değişken negatif olamaz.
-
-
-
- The specified argument must have the following type: {0}.
- Belirtilen bağımsız değişken şu türde olmalıdır: {0}.
-
-
-
- The specified argument has the following property, which cannot be an empty string: {0}.
- Belirtilen bağımsız değişken, boş dize olamayacak olan şu özelliğe sahiptir: {0}.
-
-
-
- The specified argument has the following property, which cannot be negative: {0}.
- Belirtilen bağımsız değişken, negatif olamayacak olan şu özelliğe sahiptir: {0}.
-
-
-
- The specified argument has the following property, which cannot be null: {0}.
- Belirtilen bağımsız değişken, null olamayacak olan şu özelliğe sahiptir: {0}.
-
-
-
- The specified argument has the following property: {0}. This property must have the following type: {1}.
- Belirtilen bağımsız değişken şu özelliğe sahiptir: {0}. Bu özellik şu türde olmalıdır: {1}.
-
-
-
- Unhandled exception occurred while processing a job from the '{0}' queue: {1}
- '{0}' kuyruğundan bir iş işlenirken, işlenmeyen özel durum oluştu: {1}
-
-
-
- The {0} queue has already been disposed.
- {0} kuyruğu zaten atıldı.
-
-
-
- The {0} queue cannot be disposed while paused.
- {0} kuyruğu duraklatılmış durumdayken atılamaz.
-
-
-
- Error getting process name.
- İşlem adı alınırken hata oluştu.
-
-
-
- Could not find '{0}' host. Make sure that '{0}' is installed on the machine and is available in PATH environment variable.
- '{0}' konağı bulunamadı. '{0}' konağının makinede yüklü olduğundan ve PATH ortam değişkeninde bulunduğundan emin olun.
-
-
-
-
-
+
+
+
+
+
+ The parameter cannot be null or empty.
+ Parametre null veya boş olamaz.
+
+
+
+ Error: {0}
+ Hata: {0}
+
+
+
+ Information: {0}
+ Bilgi: {0}
+
+
+
+ Warning: {0}
+ Uyarı: {0}
+
+
+
+ The specified argument cannot be empty.
+ Belirtilen bağımsız değişken boş olamaz.
+
+
+
+ The specified argument cannot be negative.
+ Belirtilen bağımsız değişken negatif olamaz.
+
+
+
+ The specified argument must have the following type: {0}.
+ Belirtilen bağımsız değişken şu türde olmalıdır: {0}.
+
+
+
+ The specified argument has the following property, which cannot be an empty string: {0}.
+ Belirtilen bağımsız değişken, boş dize olamayacak olan şu özelliğe sahiptir: {0}.
+
+
+
+ The specified argument has the following property, which cannot be negative: {0}.
+ Belirtilen bağımsız değişken, negatif olamayacak olan şu özelliğe sahiptir: {0}.
+
+
+
+ The specified argument has the following property, which cannot be null: {0}.
+ Belirtilen bağımsız değişken, null olamayacak olan şu özelliğe sahiptir: {0}.
+
+
+
+ The specified argument has the following property: {0}. This property must have the following type: {1}.
+ Belirtilen bağımsız değişken şu özelliğe sahiptir: {0}. Bu özellik şu türde olmalıdır: {1}.
+
+
+
+ Unhandled exception occurred while processing a job from the '{0}' queue: {1}
+ '{0}' kuyruğundan bir iş işlenirken, işlenmeyen özel durum oluştu: {1}
+
+
+
+ The {0} queue has already been disposed.
+ {0} kuyruğu zaten atıldı.
+
+
+
+ The {0} queue cannot be disposed while paused.
+ {0} kuyruğu duraklatılmış durumdayken atılamaz.
+
+
+
+ Error getting process name.
+ İşlem adı alınırken hata oluştu.
+
+
+
+ Could not find '{0}' host. Make sure that '{0}' is installed on the machine and is available in PATH environment variable.
+ '{0}' konağı bulunamadı. '{0}' konağının makinede yüklü olduğundan ve PATH ortam değişkeninde bulunduğundan emin olun.
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.zh-Hans.xlf b/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.zh-Hans.xlf
index 2d63fcdc55..af18ef86be 100644
--- a/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.zh-Hans.xlf
+++ b/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.zh-Hans.xlf
@@ -1,87 +1,87 @@
-
-
-
-
-
- The parameter cannot be null or empty.
- 参数不能为 NULL 或为空。
-
-
-
- Error: {0}
- 错误: {0}
-
-
-
- Information: {0}
- 信息: {0}
-
-
-
- Warning: {0}
- 警告: {0}
-
-
-
- The specified argument cannot be empty.
- 指定的参数不能为空。
-
-
-
- The specified argument cannot be negative.
- 指定的参数不能为负。
-
-
-
- The specified argument must have the following type: {0}.
- 指定的参数都必须具有以下类型: {0}。
-
-
-
- The specified argument has the following property, which cannot be an empty string: {0}.
- 指定的参数具有以下属性: {0},且不能为空字符串。
-
-
-
- The specified argument has the following property, which cannot be negative: {0}.
- 指定的参数具有以下属性: {0},且不能为负。
-
-
-
- The specified argument has the following property, which cannot be null: {0}.
- 指定的参数具有以下属性: {0},且不能为 null。
-
-
-
- The specified argument has the following property: {0}. This property must have the following type: {1}.
- 指定的参数具有以下属性: {0}。此属性必须具有以下类型: {1}。
-
-
-
- Unhandled exception occurred while processing a job from the '{0}' queue: {1}
- 处理“{0}”队列中的作业时发生未处理的异常: {1}
-
-
-
- The {0} queue has already been disposed.
- 已处置 {0} 队列。
-
-
-
- The {0} queue cannot be disposed while paused.
- 暂停时无法处置 {0} 队列。
-
-
-
- Error getting process name.
- 获取进程名称时出错。
-
-
-
- Could not find '{0}' host. Make sure that '{0}' is installed on the machine and is available in PATH environment variable.
- 找不到“{0}”主机。请确保计算机上已安装“{0}”且位于 PATH 环境变量中。
-
-
-
-
-
+
+
+
+
+
+ The parameter cannot be null or empty.
+ 参数不能为 NULL 或为空。
+
+
+
+ Error: {0}
+ 错误: {0}
+
+
+
+ Information: {0}
+ 信息: {0}
+
+
+
+ Warning: {0}
+ 警告: {0}
+
+
+
+ The specified argument cannot be empty.
+ 指定的参数不能为空。
+
+
+
+ The specified argument cannot be negative.
+ 指定的参数不能为负。
+
+
+
+ The specified argument must have the following type: {0}.
+ 指定的参数都必须具有以下类型: {0}。
+
+
+
+ The specified argument has the following property, which cannot be an empty string: {0}.
+ 指定的参数具有以下属性: {0},且不能为空字符串。
+
+
+
+ The specified argument has the following property, which cannot be negative: {0}.
+ 指定的参数具有以下属性: {0},且不能为负。
+
+
+
+ The specified argument has the following property, which cannot be null: {0}.
+ 指定的参数具有以下属性: {0},且不能为 null。
+
+
+
+ The specified argument has the following property: {0}. This property must have the following type: {1}.
+ 指定的参数具有以下属性: {0}。此属性必须具有以下类型: {1}。
+
+
+
+ Unhandled exception occurred while processing a job from the '{0}' queue: {1}
+ 处理“{0}”队列中的作业时发生未处理的异常: {1}
+
+
+
+ The {0} queue has already been disposed.
+ 已处置 {0} 队列。
+
+
+
+ The {0} queue cannot be disposed while paused.
+ 暂停时无法处置 {0} 队列。
+
+
+
+ Error getting process name.
+ 获取进程名称时出错。
+
+
+
+ Could not find '{0}' host. Make sure that '{0}' is installed on the machine and is available in PATH environment variable.
+ 找不到“{0}”主机。请确保计算机上已安装“{0}”且位于 PATH 环境变量中。
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.zh-Hant.xlf b/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.zh-Hant.xlf
index a05be5b634..fb461c7a25 100644
--- a/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.zh-Hant.xlf
+++ b/src/Microsoft.TestPlatform.CoreUtilities/Resources/xlf/Resources.zh-Hant.xlf
@@ -1,87 +1,87 @@
-
-
-
-
-
- The parameter cannot be null or empty.
- 參數不可為 null 或空白。
-
-
-
- Error: {0}
- 錯誤: {0}
-
-
-
- Information: {0}
- 資訊: {0}
-
-
-
- Warning: {0}
- 警告: {0}
-
-
-
- The specified argument cannot be empty.
- 指定的引數不可為空白。
-
-
-
- The specified argument cannot be negative.
- 指定的引數不可為負數。
-
-
-
- The specified argument must have the following type: {0}.
- 指定的引數必須具備下列類型: {0}。
-
-
-
- The specified argument has the following property, which cannot be an empty string: {0}.
- 指定的引數具有下列屬性,且不可為空字串: {0}。
-
-
-
- The specified argument has the following property, which cannot be negative: {0}.
- 指定的引數具有下列屬性,且不可為負數: {0}。
-
-
-
- The specified argument has the following property, which cannot be null: {0}.
- 指定的引數具有下列屬性,且不可為 null: {0}。
-
-
-
- The specified argument has the following property: {0}. This property must have the following type: {1}.
- 指定的引數具有下列屬性: {0}。此屬性必須具有下列類型: {1}。
-
-
-
- Unhandled exception occurred while processing a job from the '{0}' queue: {1}
- 從 '{0}' 佇列處理工作時,發生未處理的例外狀況: {1}
-
-
-
- The {0} queue has already been disposed.
- 已處置 {0} 佇列。
-
-
-
- The {0} queue cannot be disposed while paused.
- 暫停時無法處置 {0} 佇列。
-
-
-
- Error getting process name.
- 取得處理序名稱時發生錯誤。
-
-
-
- Could not find '{0}' host. Make sure that '{0}' is installed on the machine and is available in PATH environment variable.
- 找不到 '{0}' 主機。請確認 '{0}' 已安裝在機器上,而且可在 PATH 環境變數中使用。
-
-
-
-
-
+
+
+
+
+
+ The parameter cannot be null or empty.
+ 參數不可為 null 或空白。
+
+
+
+ Error: {0}
+ 錯誤: {0}
+
+
+
+ Information: {0}
+ 資訊: {0}
+
+
+
+ Warning: {0}
+ 警告: {0}
+
+
+
+ The specified argument cannot be empty.
+ 指定的引數不可為空白。
+
+
+
+ The specified argument cannot be negative.
+ 指定的引數不可為負數。
+
+
+
+ The specified argument must have the following type: {0}.
+ 指定的引數必須具備下列類型: {0}。
+
+
+
+ The specified argument has the following property, which cannot be an empty string: {0}.
+ 指定的引數具有下列屬性,且不可為空字串: {0}。
+
+
+
+ The specified argument has the following property, which cannot be negative: {0}.
+ 指定的引數具有下列屬性,且不可為負數: {0}。
+
+
+
+ The specified argument has the following property, which cannot be null: {0}.
+ 指定的引數具有下列屬性,且不可為 null: {0}。
+
+
+
+ The specified argument has the following property: {0}. This property must have the following type: {1}.
+ 指定的引數具有下列屬性: {0}。此屬性必須具有下列類型: {1}。
+
+
+
+ Unhandled exception occurred while processing a job from the '{0}' queue: {1}
+ 從 '{0}' 佇列處理工作時,發生未處理的例外狀況: {1}
+
+
+
+ The {0} queue has already been disposed.
+ 已處置 {0} 佇列。
+
+
+
+ The {0} queue cannot be disposed while paused.
+ 暫停時無法處置 {0} 佇列。
+
+
+
+ Error getting process name.
+ 取得處理序名稱時發生錯誤。
+
+
+
+ Could not find '{0}' host. Make sure that '{0}' is installed on the machine and is available in PATH environment variable.
+ 找不到 '{0}' 主機。請確認 '{0}' 已安裝在機器上,而且可在 PATH 環境變數中使用。
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CrossPlatEngine/Client/Parallel/ParallelOperationManager.cs b/src/Microsoft.TestPlatform.CrossPlatEngine/Client/Parallel/ParallelOperationManager.cs
index ff8e1058a7..2dde2f813d 100644
--- a/src/Microsoft.TestPlatform.CrossPlatEngine/Client/Parallel/ParallelOperationManager.cs
+++ b/src/Microsoft.TestPlatform.CrossPlatEngine/Client/Parallel/ParallelOperationManager.cs
@@ -24,7 +24,7 @@ internal sealed class ParallelOperationManager _createNewManager;
+ private readonly Func _createNewManager;
///
/// Default number of Processes
@@ -50,7 +50,7 @@ internal sealed class ParallelOperationManagerCreates a new manager that is responsible for running a single part of the overall workload.
/// A manager is typically a testhost, and the part of workload is discovering or running a single test dll.
/// Determines the maximum amount of parallel managers that can be active at the same time.
- public ParallelOperationManager(Func createNewManager, int parallelLevel)
+ public ParallelOperationManager(Func createNewManager, int parallelLevel)
{
_createNewManager = createNewManager;
MaxParallelLevel = parallelLevel;
@@ -144,7 +144,7 @@ private bool RunWorkInParallel()
var workload = workloadsToAdd[i];
slot.ShouldPreStart = occupiedSlots + i + 1 > MaxParallelLevel;
- var manager = _createNewManager(workload.Provider);
+ var manager = _createNewManager(workload.Provider, workload.Work);
var eventHandler = _getEventHandler(_eventHandler, manager);
slot.EventHandler = eventHandler;
slot.Manager = manager;
diff --git a/src/Microsoft.TestPlatform.CrossPlatEngine/Client/Parallel/ParallelProxyDiscoveryManager.cs b/src/Microsoft.TestPlatform.CrossPlatEngine/Client/Parallel/ParallelProxyDiscoveryManager.cs
index bb8d1ac0f2..bb2179e792 100644
--- a/src/Microsoft.TestPlatform.CrossPlatEngine/Client/Parallel/ParallelProxyDiscoveryManager.cs
+++ b/src/Microsoft.TestPlatform.CrossPlatEngine/Client/Parallel/ParallelProxyDiscoveryManager.cs
@@ -43,7 +43,7 @@ internal sealed class ParallelProxyDiscoveryManager : IParallelProxyDiscoveryMan
public ParallelProxyDiscoveryManager(
IRequestData requestData,
- Func actualProxyManagerCreator,
+ Func actualProxyManagerCreator,
DiscoveryDataAggregator dataAggregator,
int parallelLevel,
List testHostProviders)
@@ -53,7 +53,7 @@ public ParallelProxyDiscoveryManager(
internal ParallelProxyDiscoveryManager(
IRequestData requestData,
- Func actualProxyManagerCreator,
+ Func actualProxyManagerCreator,
DiscoveryDataAggregator dataAggregator,
IDataSerializer dataSerializer,
int parallelLevel,
@@ -99,7 +99,17 @@ public void DiscoverTests(DiscoveryCriteria discoveryCriteria, ITestDiscoveryEve
// marked as NotDiscovered.
_dataAggregator.MarkSourcesWithStatus(discoveryCriteria.Sources, DiscoveryStatus.NotDiscovered);
- _parallelOperationManager.StartWork(workloads, eventHandler, GetParallelEventHandler, InitializeDiscoverTestsOnConcurrentManager, DiscoverTestsOnConcurrentManager);
+ if (nonRunnableWorkloads.Count > 0)
+ {
+ // We found some sources that don't associate to any runtime provider and so they cannot run.
+ // Mark the sources as skipped.
+
+ _dataAggregator.MarkSourcesWithStatus(nonRunnableWorkloads.SelectMany(w => w.Work.Sources), DiscoveryStatus.SkippedDiscovery);
+ // TODO: in strict mode keep them as non-discovered, and mark the run as aborted.
+ // _dataAggregator.MarkAsAborted();
+ }
+
+ _parallelOperationManager.StartWork(runnableWorkloads, eventHandler, GetParallelEventHandler, InitializeDiscoverTestsOnConcurrentManager, DiscoverTestsOnConcurrentManager);
}
private ITestDiscoveryEventsHandler2 GetParallelEventHandler(ITestDiscoveryEventsHandler2 eventHandler, IProxyDiscoveryManager concurrentManager)
diff --git a/src/Microsoft.TestPlatform.CrossPlatEngine/Client/Parallel/ParallelProxyExecutionManager.cs b/src/Microsoft.TestPlatform.CrossPlatEngine/Client/Parallel/ParallelProxyExecutionManager.cs
index 792ddef3ce..ba99581863 100644
--- a/src/Microsoft.TestPlatform.CrossPlatEngine/Client/Parallel/ParallelProxyExecutionManager.cs
+++ b/src/Microsoft.TestPlatform.CrossPlatEngine/Client/Parallel/ParallelProxyExecutionManager.cs
@@ -64,7 +64,7 @@ internal sealed class ParallelProxyExecutionManager : IParallelProxyExecutionMan
public ParallelProxyExecutionManager(
IRequestData requestData,
- Func actualProxyManagerCreator,
+ Func actualProxyManagerCreator,
int parallelLevel,
List testHostProviders)
: this(requestData, actualProxyManagerCreator, JsonDataSerializer.Instance, parallelLevel, testHostProviders)
@@ -73,7 +73,7 @@ public ParallelProxyExecutionManager(
internal ParallelProxyExecutionManager(
IRequestData requestData,
- Func actualProxyManagerCreator,
+ Func actualProxyManagerCreator,
IDataSerializer dataSerializer,
int parallelLevel,
List testHostProviders)
@@ -115,7 +115,7 @@ public int StartTestRun(TestRunCriteria testRunCriteria, IInternalTestRunEventsH
// _currentRunDataAggregator.MarkAsAborted();
}
- _parallelOperationManager.StartWork(workloads, eventHandler, GetParallelEventHandler, PrepareTestRunOnConcurrentManager, StartTestRunOnConcurrentManager);
+ _parallelOperationManager.StartWork(runnableWorkloads, eventHandler, GetParallelEventHandler, PrepareTestRunOnConcurrentManager, StartTestRunOnConcurrentManager);
// Why 1? Because this is supposed to be a processId, and that is just the default that was chosen by someone before me,
// and maybe is checked somewhere, but I don't see it checked in our codebase.
diff --git a/src/Microsoft.TestPlatform.CrossPlatEngine/Client/TestLoggerManager.cs b/src/Microsoft.TestPlatform.CrossPlatEngine/Client/TestLoggerManager.cs
index 4a926b137c..947c1bad04 100644
--- a/src/Microsoft.TestPlatform.CrossPlatEngine/Client/TestLoggerManager.cs
+++ b/src/Microsoft.TestPlatform.CrossPlatEngine/Client/TestLoggerManager.cs
@@ -3,6 +3,7 @@
using System;
using System.Collections.Generic;
+using System.Diagnostics.CodeAnalysis;
using System.Globalization;
using System.Linq;
using System.Reflection;
@@ -387,7 +388,7 @@ internal bool InitializeLoggerByUri(Uri uri, Dictionary? parame
/// The friendly Name.
/// The logger Uri.
///
- internal bool TryGetUriFromFriendlyName(string? friendlyName, out Uri? loggerUri)
+ internal bool TryGetUriFromFriendlyName(string? friendlyName, [NotNullWhen(true)] out Uri? loggerUri)
{
var extensionManager = TestLoggerExtensionManager;
foreach (var extension in extensionManager.TestExtensions)
diff --git a/src/Microsoft.TestPlatform.CrossPlatEngine/DataCollection/DefaultDataCollectionLauncher.cs b/src/Microsoft.TestPlatform.CrossPlatEngine/DataCollection/DefaultDataCollectionLauncher.cs
index 866cdc612e..721d618432 100644
--- a/src/Microsoft.TestPlatform.CrossPlatEngine/DataCollection/DefaultDataCollectionLauncher.cs
+++ b/src/Microsoft.TestPlatform.CrossPlatEngine/DataCollection/DefaultDataCollectionLauncher.cs
@@ -4,7 +4,6 @@
using System;
using System.Collections.Generic;
using System.IO;
-using System.Reflection;
using Microsoft.VisualStudio.TestPlatform.Common.Logging;
using Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging;
@@ -53,7 +52,7 @@ internal DefaultDataCollectionLauncher(IProcessHelper processHelper, IMessageLog
/// ProcessId of launched Process. 0 means not launched.
public override int LaunchDataCollector(IDictionary? environmentVariables, IList commandLineArguments)
{
- var dataCollectorDirectory = Path.GetDirectoryName(typeof(DefaultDataCollectionLauncher).GetTypeInfo().Assembly.GetAssemblyLocation());
+ var dataCollectorDirectory = Path.GetDirectoryName(typeof(DefaultDataCollectionLauncher).Assembly.GetAssemblyLocation());
TPDebug.Assert(dataCollectorDirectory is not null, "dataCollectorDirectory is not null");
var currentProcessPath = _processHelper.GetCurrentProcessFileName();
diff --git a/src/Microsoft.TestPlatform.CrossPlatEngine/DataCollection/DotnetDataCollectionLauncher.cs b/src/Microsoft.TestPlatform.CrossPlatEngine/DataCollection/DotnetDataCollectionLauncher.cs
index 6bfab43138..b1d2c674eb 100644
--- a/src/Microsoft.TestPlatform.CrossPlatEngine/DataCollection/DotnetDataCollectionLauncher.cs
+++ b/src/Microsoft.TestPlatform.CrossPlatEngine/DataCollection/DotnetDataCollectionLauncher.cs
@@ -4,7 +4,6 @@
using System.Collections.Generic;
using System.Globalization;
using System.IO;
-using System.Reflection;
using Microsoft.VisualStudio.TestPlatform.Common.Logging;
using Microsoft.VisualStudio.TestPlatform.CoreUtilities.Extensions;
@@ -62,7 +61,7 @@ internal DotnetDataCollectionLauncher(IProcessHelper processHelper, IFileHelper
/// ProcessId of launched Process. 0 means not launched.
public override int LaunchDataCollector(IDictionary? environmentVariables, IList commandLineArguments)
{
- var dataCollectorDirectory = Path.GetDirectoryName(typeof(DefaultDataCollectionLauncher).GetTypeInfo().Assembly.GetAssemblyLocation());
+ var dataCollectorDirectory = Path.GetDirectoryName(typeof(DefaultDataCollectionLauncher).Assembly.GetAssemblyLocation());
TPDebug.Assert(dataCollectorDirectory is not null, "dataCollectorDirectory is null");
var dataCollectorAssemblyPath = Path.Combine(dataCollectorDirectory, DataCollectorProcessName);
diff --git a/src/Microsoft.TestPlatform.CrossPlatEngine/DataCollection/InProcDataCollectionExtensionManager.cs b/src/Microsoft.TestPlatform.CrossPlatEngine/DataCollection/InProcDataCollectionExtensionManager.cs
index 9f7c321dfd..89917eaa08 100644
--- a/src/Microsoft.TestPlatform.CrossPlatEngine/DataCollection/InProcDataCollectionExtensionManager.cs
+++ b/src/Microsoft.TestPlatform.CrossPlatEngine/DataCollection/InProcDataCollectionExtensionManager.cs
@@ -5,7 +5,6 @@
using System.Collections.Generic;
using System.IO;
using System.Linq;
-using System.Reflection;
using System.Xml;
using Microsoft.VisualStudio.TestPlatform.Common.ExtensionFramework;
@@ -100,12 +99,12 @@ protected InProcDataCollectionExtensionManager(string? runSettings, ITestEventsP
///
/// The .
///
- protected virtual IInProcDataCollector CreateDataCollector(string assemblyQualifiedName, string codebase, XmlElement configuration, TypeInfo interfaceTypeInfo)
+ protected virtual IInProcDataCollector CreateDataCollector(string assemblyQualifiedName, string codebase, XmlElement configuration, Type interfaceType)
{
var inProcDataCollector = new InProcDataCollector(
codebase,
assemblyQualifiedName,
- interfaceTypeInfo,
+ interfaceType,
configuration?.OuterXml);
inProcDataCollector.LoadDataCollector(_inProcDataCollectionSink);
@@ -215,7 +214,7 @@ private void InitializeInProcDataCollectors(string? runSettings)
_inProcDataCollectorSettingsCollection = inProcDataCollectionRunSettings!.DataCollectorSettingsList;
- var interfaceTypeInfo = typeof(InProcDataCollection).GetTypeInfo();
+ var interfaceTypeInfo = typeof(InProcDataCollection);
foreach (var inProcDc in _inProcDataCollectorSettingsCollection)
{
var codeBase = GetCodebase(inProcDc.CodeBase!);
diff --git a/src/Microsoft.TestPlatform.CrossPlatEngine/DataCollection/InProcDataCollector.cs b/src/Microsoft.TestPlatform.CrossPlatEngine/DataCollection/InProcDataCollector.cs
index c3d1684291..f8cdcf9837 100644
--- a/src/Microsoft.TestPlatform.CrossPlatEngine/DataCollection/InProcDataCollector.cs
+++ b/src/Microsoft.TestPlatform.CrossPlatEngine/DataCollection/InProcDataCollector.cs
@@ -44,9 +44,9 @@ internal class InProcDataCollector : IInProcDataCollector
public InProcDataCollector(
string codeBase,
string assemblyQualifiedName,
- TypeInfo interfaceTypeInfo,
+ Type interfaceType,
string? configXml)
- : this(codeBase, assemblyQualifiedName, interfaceTypeInfo, configXml, new PlatformAssemblyLoadContext(), TestPluginCache.Instance)
+ : this(codeBase, assemblyQualifiedName, interfaceType, configXml, new PlatformAssemblyLoadContext(), TestPluginCache.Instance)
{
}
@@ -63,7 +63,7 @@ public InProcDataCollector(
///
///
///
- internal InProcDataCollector(string codeBase, string assemblyQualifiedName, TypeInfo interfaceTypeInfo, string? configXml, IAssemblyLoadContext assemblyLoadContext, TestPluginCache testPluginCache)
+ internal InProcDataCollector(string codeBase, string assemblyQualifiedName, Type interfaceType, string? configXml, IAssemblyLoadContext assemblyLoadContext, TestPluginCache testPluginCache)
{
_configXml = configXml;
_assemblyLoadContext = assemblyLoadContext;
@@ -75,7 +75,7 @@ internal InProcDataCollector(string codeBase, string assemblyQualifiedName, Type
{
// If we're loading coverlet collector we skip to check the version of assembly
// to allow upgrade through nuget package
- filterPredicate = x => Constants.CoverletDataCollectorTypeName.Equals(x.FullName) && interfaceTypeInfo.IsAssignableFrom(x.GetTypeInfo());
+ filterPredicate = x => Constants.CoverletDataCollectorTypeName.Equals(x.FullName) && interfaceType.IsAssignableFrom(x);
// Coverlet collector is consumed as nuget package we need to add assemblies directory to resolver to correctly load references.
TPDebug.Assert(Path.IsPathRooted(codeBase), "Absolute path expected");
@@ -83,7 +83,7 @@ internal InProcDataCollector(string codeBase, string assemblyQualifiedName, Type
}
else
{
- filterPredicate = x => string.Equals(x.AssemblyQualifiedName, assemblyQualifiedName) && interfaceTypeInfo.IsAssignableFrom(x.GetTypeInfo());
+ filterPredicate = x => string.Equals(x.AssemblyQualifiedName, assemblyQualifiedName) && interfaceType.IsAssignableFrom(x);
}
_dataCollectorType = assembly?.GetTypes().FirstOrDefault(filterPredicate);
diff --git a/src/Microsoft.TestPlatform.CrossPlatEngine/DataCollection/ProxyDataCollectionManager.cs b/src/Microsoft.TestPlatform.CrossPlatEngine/DataCollection/ProxyDataCollectionManager.cs
index 1cb86f1268..216c29c155 100644
--- a/src/Microsoft.TestPlatform.CrossPlatEngine/DataCollection/ProxyDataCollectionManager.cs
+++ b/src/Microsoft.TestPlatform.CrossPlatEngine/DataCollection/ProxyDataCollectionManager.cs
@@ -6,7 +6,6 @@
using System.Globalization;
using System.IO;
using System.Linq;
-using System.Reflection;
using System.Xml;
using Microsoft.VisualStudio.TestPlatform.Common.DataCollection;
@@ -348,7 +347,7 @@ private static string GetTimestampedLogFile(string logFile)
return settingsXml;
}
- var extensionsFolder = Path.Combine(Path.GetDirectoryName(typeof(ITestPlatform).GetTypeInfo().Assembly.GetAssemblyLocation())!, "Extensions");
+ var extensionsFolder = Path.Combine(Path.GetDirectoryName(typeof(ITestPlatform).Assembly.GetAssemblyLocation())!, "Extensions");
using var stream = new StringReader(settingsXml);
using var reader = XmlReader.Create(stream, XmlRunSettingsUtilities.ReaderSettings);
diff --git a/src/Microsoft.TestPlatform.CrossPlatEngine/Discovery/DiscovererEnumerator.cs b/src/Microsoft.TestPlatform.CrossPlatEngine/Discovery/DiscovererEnumerator.cs
index aafa907ef8..418d5a32d4 100644
--- a/src/Microsoft.TestPlatform.CrossPlatEngine/Discovery/DiscovererEnumerator.cs
+++ b/src/Microsoft.TestPlatform.CrossPlatEngine/Discovery/DiscovererEnumerator.cs
@@ -7,7 +7,6 @@
using System.Globalization;
using System.IO;
using System.Linq;
-using System.Reflection;
using System.Threading;
using Microsoft.VisualStudio.TestPlatform.Common.ExtensionFramework;
@@ -296,7 +295,7 @@ private static bool IsDiscovererFromDeprecatedLocations(
return false;
}
- var discovererLocation = discoverer.Value.GetType().GetTypeInfo().Assembly.GetAssemblyLocation();
+ var discovererLocation = discoverer.Value.GetType().Assembly.GetAssemblyLocation();
return Path.GetDirectoryName(discovererLocation)!
.Equals(Constants.DefaultAdapterLocation, StringComparison.OrdinalIgnoreCase);
diff --git a/src/Microsoft.TestPlatform.CrossPlatEngine/Execution/BaseRunTests.cs b/src/Microsoft.TestPlatform.CrossPlatEngine/Execution/BaseRunTests.cs
index 0d5e6dacae..4600200c39 100644
--- a/src/Microsoft.TestPlatform.CrossPlatEngine/Execution/BaseRunTests.cs
+++ b/src/Microsoft.TestPlatform.CrossPlatEngine/Execution/BaseRunTests.cs
@@ -9,7 +9,6 @@
using System.Globalization;
using System.IO;
using System.Linq;
-using System.Reflection;
using System.Threading.Tasks;
using Microsoft.VisualStudio.TestPlatform.Common.ExtensionDecorators;
@@ -494,12 +493,12 @@ private bool RunTestInternalWithExecutors(IEnumerable> execut
if (!CrossPlatEngine.Constants.DefaultAdapters.Contains(executor.Metadata.ExtensionUri, StringComparer.OrdinalIgnoreCase))
{
// If real executor is wrapped by a decorator we get the real decorated type
- TypeInfo executorTypeInfo =
+ Type executorType =
(executor.Value is SerialTestRunDecorator serialTestRunDecorator)
- ? serialTestRunDecorator.OriginalTestExecutor.GetType().GetTypeInfo()
- : executor.Value.GetType().GetTypeInfo();
+ ? serialTestRunDecorator.OriginalTestExecutor.GetType()
+ : executor.Value.GetType();
- var executorLocation = executorTypeInfo.Assembly.GetAssemblyLocation();
+ var executorLocation = executorType.Assembly.GetAssemblyLocation();
executorsFromDeprecatedLocations |= Path.GetDirectoryName(executorLocation)!.Equals(CrossPlatEngine.Constants.DefaultAdapterLocation);
}
diff --git a/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.cs.xlf b/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.cs.xlf
index 6092e0fa55..6bfe73ae1c 100644
--- a/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.cs.xlf
+++ b/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.cs.xlf
@@ -1,192 +1,192 @@
-
-
-
-
-
- Exception occurred while instantiating discoverer : {0}
- Při vytváření instance nástroje zjišťování došlo k výjimce: {0}
-
-
-
- Multiple test adapters with the same uri '{0}' were found. Ignoring adapter '{1}'. Please uninstall the conflicting adapter(s) to avoid this warning.
- Našlo se více adaptérů testů se stejným identifikátorem URI {0}. Ignoruje se adaptér {1}. Pokud se chcete tomuto upozornění vyhnout, odinstalujte prosím konfliktní adaptéry.
- {0} is the unique identifier of test adapter. {1} is the name of the test adapter that shares a unique identifier with a previously loaded adapter.
-
-
- Ignoring the specified duplicate source '{0}'.
- Ignoruje se zadaný duplicitní zdroj {0}.
-
-
-
- An exception occurred while test discoverer '{0}' was loading tests. Exception: {1}
- V době, kdy nástroj zjišťování testů {0} načítal testy, došlo k výjimce. Výjimka: {1}
-
-
-
- An exception occurred while invoking executor '{0}': {1}
- Při volání prováděcího modulu {0} došlo k výjimce: {1}
-
-
-
- Could not find file {0}.
- Nepovedlo se najít soubor {0}.
-
-
-
- Host debugging is enabled. Please attach debugger to testhost process to continue.
- Je povolené ladění hostitele. Pokud chcete pokračovat, připojte prosím ladicí program k procesu testhost.
- Host, testhost are key words, it should not be localized
-
-
- Ignoring the test executor corresponding to test discoverer {0} because the discoverer does not have the DefaultExecutorUri attribute . You might need to re-install the test adapter add-in.
- Ignoruje se prováděcí modul testování, který odpovídá nástroji zjišťování testů {0}, protože nástroj zjišťování nemá atribut DefaultExecutorUri. Možná bude nutné přeinstalovat doplněk adaptéru testu.
-
-
-
- Failed to initialize client proxy: could not connect to test process.
- Nepovedlo se inicializovat proxy klienta: nešlo se připojit k procesu testu.
-
-
-
- This operation is not allowed in the context of a non-debug run.
- Tato operace se v kontextu běhu bez ladění nepovoluje.
-
-
-
- Could not find test executor with URI '{0}'. Make sure that the test executor is installed and supports .net runtime version {1}.
- Nepovedlo se najít prováděcí modul testování s identifikátorem URI {0}. Ujistěte se, že je prováděcí modul testování nainstalovaný a že podporuje .NET runtime verze {1}.
- {0} - Executor uri String {1}- Version - .net Version Eg:-2.0.50727.00
-
-
- None of the specified source(s) '{0}' is valid. Fix the above errors/warnings and then try again.
- Žádný ze zadaných zdrojů {0} není platný. Opravte chyby/upozornění výše a zkuste to znovu.
-
-
-
- ,
- ,
-
-
-
- No tests matched the filter because it contains one or more properties that are not valid ({0}). Specify filter expression containing valid properties ({1}).
- Filtru neodpovídá žádný test, protože obsahuje nejméně jednu vlastnost, která není platná ({0}). Zadejte výraz filtru, který obsahuje platné vlastnosti ({1}).
-
-
-
- Could not find {0}. Make sure that the dotnet is installed on the machine.
- Nejde najít {0}. Ujistěte se, že na počítači je nainstalovaný dotnet.
-
-
-
- Testhost process for source(s) '{0}' exited with error: {1}. Please check the diagnostic logs for more information.
- Proces testhost pro zdroj(e) {0} se ukončil s chybou: {1}. Další informace najdete v diagnostických protokolech.
- {0} a source, or very rarely list of sources, {1} the output error.
-
-
- DataCollector debugging is enabled. Please attach debugger to datacollector process to continue.
- Je povolené ladění kolekce dat. Pokud chcete pokračovat, připojte prosím ladicí program k procesu kolekce dat.
-
-
-
- No test is available in {0}. Make sure that test discoverer & executors are registered and platform & framework version settings are appropriate and try again.
- V {0} nejsou dostupné žádné testy. Ujistěte se, že nástroje pro zjišťování a provádění testů jsou zaregistrované a že jsou vhodně zvolená nastavení verzí platformy a architektury, a zkuste to znovu.
-
-
-
- Logging TestHost Diagnostics in file: {0}
- Protokolování diagnostiky TestHost v souboru: {0}
-
-
-
- Failed to launch testhost with error: {0}
- Nepovedlo se spustit hostitele testu kvůli této chybě: {0}
-
-
-
- ExecutionThreadApartmentState option not supported for framework: {0}.
- Možnost ExecutionThreadApartmentState se pro rozhraní nepodporuje: {0}.
-
-
-
- You are using an older version of Microsoft.NET.Test.Sdk. Kindly move to a version equal or greater than 15.3.0.
- Používáte starší verzi sady Microsoft.NET.Test.Sdk. Přejděte prosím na verzi 15.3.0 nebo vyšší.
-
-
-
- Could not find extensions: {0}
- Nepovedlo se najít rozšíření: {0}
-
-
-
- Adapter lookup is being changed, please follow https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap for more details.
- Mění se vyhledávání adaptéru. Pro další informace se podívejte sem: https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap.
-
-
-
- No test matches the given testcase filter `{0}` in {1}
- Žádný test neodpovídá danému filtru testovacích případů {0} v: {1}
-
-
-
- Discovery of tests cancelled.
- Zjišťování testů bylo zrušeno.
-
-
-
- Cannot attach the debugger to the default test host with process ID: {0}.
- Ladicí program se nedá připojit k výchozímu hostiteli testů s ID procesu {0}.
-
-
-
- {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges.
- {0} Při pokusu o vytvoření složky TestResults v uvedeném umístění došlo k odepření přístupu. Tato výjimka se vyvolala, protože spouštíte vstest.console.exe ze složky, která vyžaduje, abyste měli přístup pro zápis. Pokud chcete problém vyřešit, spusťte prosím vstest.console.exe ze složky, ve které máte oprávnění k zápisu.
-
-
-
- Could not find an available proxy to deque.
- Nepovedlo se najít dostupný proxy server, který se má odebrat z fronty.
-
-
-
- Proxy with id {0} is not managed by the current session manager.
- Aktuální správce relace nespravuje proxy s ID {0}.
-
-
-
- Proxy with id {0} is already available and cannot be re-enqueued.
- Proxy s ID {0} je už k dispozici a nedá se znovu zařadit do fronty.
-
-
-
- No suitable test runtime provider was found for any source in this run.
- V tomto běhu se nenašel žádný vhodný zprostředkovatel testovacího modulu runtime pro žádný zdroj.
-
-
-
- The runsettings changed between the time when the test session was established and the time of the current run/discovery request.
- Soubor runsettings se změnil mezi časem, kdy byla relace testu vytvořena, a časem aktuálního požadavku spuštění nebo zjišťování.
-
-
-
- {0}
- {0}
-
-
-
- Attachments:
- Přílohy:
-
-
-
- No suitable test runtime provider was found:
- Nenašel se žádný vhodný zprostředkovatel testovacího modulu runtime:
-
-
-
- Skipping source:
- Přeskočení zdroje:
-
-
-
-
-
+
+
+
+
+
+ Exception occurred while instantiating discoverer : {0}
+ Při vytváření instance nástroje zjišťování došlo k výjimce: {0}
+
+
+
+ Multiple test adapters with the same uri '{0}' were found. Ignoring adapter '{1}'. Please uninstall the conflicting adapter(s) to avoid this warning.
+ Našlo se více adaptérů testů se stejným identifikátorem URI {0}. Ignoruje se adaptér {1}. Pokud se chcete tomuto upozornění vyhnout, odinstalujte prosím konfliktní adaptéry.
+ {0} is the unique identifier of test adapter. {1} is the name of the test adapter that shares a unique identifier with a previously loaded adapter.
+
+
+ Ignoring the specified duplicate source '{0}'.
+ Ignoruje se zadaný duplicitní zdroj {0}.
+
+
+
+ An exception occurred while test discoverer '{0}' was loading tests. Exception: {1}
+ V době, kdy nástroj zjišťování testů {0} načítal testy, došlo k výjimce. Výjimka: {1}
+
+
+
+ An exception occurred while invoking executor '{0}': {1}
+ Při volání prováděcího modulu {0} došlo k výjimce: {1}
+
+
+
+ Could not find file {0}.
+ Nepovedlo se najít soubor {0}.
+
+
+
+ Host debugging is enabled. Please attach debugger to testhost process to continue.
+ Je povolené ladění hostitele. Pokud chcete pokračovat, připojte prosím ladicí program k procesu testhost.
+ Host, testhost are key words, it should not be localized
+
+
+ Ignoring the test executor corresponding to test discoverer {0} because the discoverer does not have the DefaultExecutorUri attribute . You might need to re-install the test adapter add-in.
+ Ignoruje se prováděcí modul testování, který odpovídá nástroji zjišťování testů {0}, protože nástroj zjišťování nemá atribut DefaultExecutorUri. Možná bude nutné přeinstalovat doplněk adaptéru testu.
+
+
+
+ Failed to initialize client proxy: could not connect to test process.
+ Nepovedlo se inicializovat proxy klienta: nešlo se připojit k procesu testu.
+
+
+
+ This operation is not allowed in the context of a non-debug run.
+ Tato operace se v kontextu běhu bez ladění nepovoluje.
+
+
+
+ Could not find test executor with URI '{0}'. Make sure that the test executor is installed and supports .net runtime version {1}.
+ Nepovedlo se najít prováděcí modul testování s identifikátorem URI {0}. Ujistěte se, že je prováděcí modul testování nainstalovaný a že podporuje .NET runtime verze {1}.
+ {0} - Executor uri String {1}- Version - .net Version Eg:-2.0.50727.00
+
+
+ None of the specified source(s) '{0}' is valid. Fix the above errors/warnings and then try again.
+ Žádný ze zadaných zdrojů {0} není platný. Opravte chyby/upozornění výše a zkuste to znovu.
+
+
+
+ ,
+ ,
+
+
+
+ No tests matched the filter because it contains one or more properties that are not valid ({0}). Specify filter expression containing valid properties ({1}).
+ Filtru neodpovídá žádný test, protože obsahuje nejméně jednu vlastnost, která není platná ({0}). Zadejte výraz filtru, který obsahuje platné vlastnosti ({1}).
+
+
+
+ Could not find {0}. Make sure that the dotnet is installed on the machine.
+ Nejde najít {0}. Ujistěte se, že na počítači je nainstalovaný dotnet.
+
+
+
+ Testhost process for source(s) '{0}' exited with error: {1}. Please check the diagnostic logs for more information.
+ Proces testhost pro zdroj(e) {0} se ukončil s chybou: {1}. Další informace najdete v diagnostických protokolech.
+ {0} a source, or very rarely list of sources, {1} the output error.
+
+
+ DataCollector debugging is enabled. Please attach debugger to datacollector process to continue.
+ Je povolené ladění kolekce dat. Pokud chcete pokračovat, připojte prosím ladicí program k procesu kolekce dat.
+
+
+
+ No test is available in {0}. Make sure that test discoverer & executors are registered and platform & framework version settings are appropriate and try again.
+ V {0} nejsou dostupné žádné testy. Ujistěte se, že nástroje pro zjišťování a provádění testů jsou zaregistrované a že jsou vhodně zvolená nastavení verzí platformy a architektury, a zkuste to znovu.
+
+
+
+ Logging TestHost Diagnostics in file: {0}
+ Protokolování diagnostiky TestHost v souboru: {0}
+
+
+
+ Failed to launch testhost with error: {0}
+ Nepovedlo se spustit hostitele testu kvůli této chybě: {0}
+
+
+
+ ExecutionThreadApartmentState option not supported for framework: {0}.
+ Možnost ExecutionThreadApartmentState se pro rozhraní nepodporuje: {0}.
+
+
+
+ You are using an older version of Microsoft.NET.Test.Sdk. Kindly move to a version equal or greater than 15.3.0.
+ Používáte starší verzi sady Microsoft.NET.Test.Sdk. Přejděte prosím na verzi 15.3.0 nebo vyšší.
+
+
+
+ Could not find extensions: {0}
+ Nepovedlo se najít rozšíření: {0}
+
+
+
+ Adapter lookup is being changed, please follow https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap for more details.
+ Mění se vyhledávání adaptéru. Pro další informace se podívejte sem: https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap.
+
+
+
+ No test matches the given testcase filter `{0}` in {1}
+ Žádný test neodpovídá danému filtru testovacích případů {0} v: {1}
+
+
+
+ Discovery of tests cancelled.
+ Zjišťování testů bylo zrušeno.
+
+
+
+ Cannot attach the debugger to the default test host with process ID: {0}.
+ Ladicí program se nedá připojit k výchozímu hostiteli testů s ID procesu {0}.
+
+
+
+ {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges.
+ {0} Při pokusu o vytvoření složky TestResults v uvedeném umístění došlo k odepření přístupu. Tato výjimka se vyvolala, protože spouštíte vstest.console.exe ze složky, která vyžaduje, abyste měli přístup pro zápis. Pokud chcete problém vyřešit, spusťte prosím vstest.console.exe ze složky, ve které máte oprávnění k zápisu.
+
+
+
+ Could not find an available proxy to deque.
+ Nepovedlo se najít dostupný proxy server, který se má odebrat z fronty.
+
+
+
+ Proxy with id {0} is not managed by the current session manager.
+ Aktuální správce relace nespravuje proxy s ID {0}.
+
+
+
+ Proxy with id {0} is already available and cannot be re-enqueued.
+ Proxy s ID {0} je už k dispozici a nedá se znovu zařadit do fronty.
+
+
+
+ No suitable test runtime provider was found for any source in this run.
+ V tomto běhu se nenašel žádný vhodný zprostředkovatel testovacího modulu runtime pro žádný zdroj.
+
+
+
+ The runsettings changed between the time when the test session was established and the time of the current run/discovery request.
+ Soubor runsettings se změnil mezi časem, kdy byla relace testu vytvořena, a časem aktuálního požadavku spuštění nebo zjišťování.
+
+
+
+ {0}
+ {0}
+
+
+
+ Attachments:
+ Přílohy:
+
+
+
+ No suitable test runtime provider was found:
+ Nenašel se žádný vhodný zprostředkovatel testovacího modulu runtime:
+
+
+
+ Skipping source:
+ Přeskočení zdroje:
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.de.xlf b/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.de.xlf
index 782aeacc84..a1b4810b3a 100644
--- a/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.de.xlf
+++ b/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.de.xlf
@@ -1,192 +1,192 @@
-
-
-
-
-
- Exception occurred while instantiating discoverer : {0}
- Ausnahme beim Instanziieren des Discoverers: {0}
-
-
-
- Multiple test adapters with the same uri '{0}' were found. Ignoring adapter '{1}'. Please uninstall the conflicting adapter(s) to avoid this warning.
- Mehrere Testadapter mit dem gleichen URI "{0}" wurden gefunden. Der Adapter "{1}" wird ignoriert. Deinstallieren Sie die in Konflikt stehenden Adapter, um diese Warnung zu vermeiden.
- {0} is the unique identifier of test adapter. {1} is the name of the test adapter that shares a unique identifier with a previously loaded adapter.
-
-
- Ignoring the specified duplicate source '{0}'.
- Die angegebene doppelte Quelle "{0}" wird ignoriert.
-
-
-
- An exception occurred while test discoverer '{0}' was loading tests. Exception: {1}
- Ausnahme beim Laden von Tests durch den Testdiscoverer "{0}". Ausnahme: {1}
-
-
-
- An exception occurred while invoking executor '{0}': {1}
- Ausnahme beim Aufrufen von Executor "{0}": {1}
-
-
-
- Could not find file {0}.
- Die Datei "{0}" wurde nicht gefunden.
-
-
-
- Host debugging is enabled. Please attach debugger to testhost process to continue.
- Hostdebuggen ist aktiviert. Fügen Sie den Debugger an den Testhostprozess an, um den Vorgang fortzusetzen.
- Host, testhost are key words, it should not be localized
-
-
- Ignoring the test executor corresponding to test discoverer {0} because the discoverer does not have the DefaultExecutorUri attribute . You might need to re-install the test adapter add-in.
- Der Testexecutor, der dem Testdiscoverer "{0}" entspricht, wird ignoriert, weil der Discoverer nicht das DefaultExecutorUri-Attribut aufweist. Sie müssen ggf. das Testadapter-Add-In erneut installieren.
-
-
-
- Failed to initialize client proxy: could not connect to test process.
- Fehler beim Initialisieren des Clientproxys: Es konnte keine Verbindung mit dem Testprozess hergestellt werden.
-
-
-
- This operation is not allowed in the context of a non-debug run.
- Dieser Vorgang ist im Kontext einer Nichtdebugausführung unzulässig.
-
-
-
- Could not find test executor with URI '{0}'. Make sure that the test executor is installed and supports .net runtime version {1}.
- Der Testexecutor mit dem URI "{0}" wurde nicht gefunden. Stellen Sie sicher, dass der Testexecutor installiert ist und .NET Runtime-Version {1} unterstützt.
- {0} - Executor uri String {1}- Version - .net Version Eg:-2.0.50727.00
-
-
- None of the specified source(s) '{0}' is valid. Fix the above errors/warnings and then try again.
- Keine der angegebenen Quellen "{0}" ist gültig. Beheben Sie die oben aufgeführten Fehler/Warnungen, und versuchen Sie es erneut.
-
-
-
- ,
- ,
-
-
-
- No tests matched the filter because it contains one or more properties that are not valid ({0}). Specify filter expression containing valid properties ({1}).
- Es stimmten keine Tests mit dem Filter überein, weil er mindestens eine ungültige Eigenschaft enthält ({0}). Geben Sie einen Filterausdruck mit gültigen Eigenschaften an ({1}).
-
-
-
- Could not find {0}. Make sure that the dotnet is installed on the machine.
- {0} wurde nicht gefunden. Stellen Sie sicher, dass das dotnet auf dem Computer installiert ist.
-
-
-
- Testhost process for source(s) '{0}' exited with error: {1}. Please check the diagnostic logs for more information.
- Der TestHost-Prozess für die Quelle(n) {0} wurde mit folgendem Fehler beendet: {1}. Weitere Informationen finden Sie in den Diagnoseprotokollen.
- {0} a source, or very rarely list of sources, {1} the output error.
-
-
- DataCollector debugging is enabled. Please attach debugger to datacollector process to continue.
- DataCollector-Debugging ist aktiviert. Fügen Sie den Debugger an den Datensammlerprozess an, um den Vorgang fortzusetzen.
-
-
-
- No test is available in {0}. Make sure that test discoverer & executors are registered and platform & framework version settings are appropriate and try again.
- In "{0}" ist kein Test verfügbar. Stellen Sie sicher, dass die Testdiscoverer und -executors registriert und die Versionseinstellungen für Plattform und Framework richtig sind, und wiederholen Sie den Vorgang.
-
-
-
- Logging TestHost Diagnostics in file: {0}
- Die TestHost-Diagnose wird in der Datei {0} protokolliert.
-
-
-
- Failed to launch testhost with error: {0}
- Fehler beim Starten von Testhost: {0}
-
-
-
- ExecutionThreadApartmentState option not supported for framework: {0}.
- Die ExecutionThreadApartmentState-Option wird für das Framework nicht unterstützt: {0}.
-
-
-
- You are using an older version of Microsoft.NET.Test.Sdk. Kindly move to a version equal or greater than 15.3.0.
- Sie verwenden eine ältere Version von Microsoft.NET.Test.Sdk. Wechseln Sie zu Version 15.3.0 oder höher.
-
-
-
- Could not find extensions: {0}
- Erweiterungen nicht gefunden: {0}
-
-
-
- Adapter lookup is being changed, please follow https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap for more details.
- Die Adaptersuche wird geändert. Weitere Informationen finden Sie unter „https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap“.
-
-
-
- No test matches the given testcase filter `{0}` in {1}
- Kein Test entspricht dem angegebenen Testfallfilter "{0}" in "{1}".
-
-
-
- Discovery of tests cancelled.
- Die Ermittlung von Tests wurde abgebrochen.
-
-
-
- Cannot attach the debugger to the default test host with process ID: {0}.
- Der Debugger kann nicht an den Standardtesthost mit der Prozess-ID {0} angefügt werden.
-
-
-
- {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges.
- {0} Beim Erstellen des Ordners "TestResults" am angegebenen Speicherort wurde der Zugriff verweigert. Sie erhalten diese Ausnahme, weil Sie "vstest.console.exe" in einem Ordner ausführen, für den Schreibzugriff erforderlich ist. So beheben Sie das Problem: Führen Sie "vstest.console.exe" in einem Ordner aus, für den Sie Schreibberechtigungen besitzen.
-
-
-
- Could not find an available proxy to deque.
- Es wurde kein verfügbarer Proxy für die Deque gefunden.
-
-
-
- Proxy with id {0} is not managed by the current session manager.
- Der Proxy mit der ID {0} wird nicht vom aktuellen Sitzungs-Manager verwaltet.
-
-
-
- Proxy with id {0} is already available and cannot be re-enqueued.
- Der Proxy mit der ID {0} ist bereits verfügbar und kann nicht erneut in die Warteschlange eingereiht werden.
-
-
-
- No suitable test runtime provider was found for any source in this run.
- Für eine Quelle in dieser Ausführung wurde kein geeigneter Testruntimeanbieter gefunden.
-
-
-
- The runsettings changed between the time when the test session was established and the time of the current run/discovery request.
- Die Ausführungseinstellungen wurden zwischen dem Zeitpunkt, zu dem die Testsitzung eingerichtet wurde, und dem Zeitpunkt der aktuellen Ausführungs-/Ermittlungsanforderung geändert.
-
-
-
- {0}
- {0}
-
-
-
- Attachments:
- Anlagen:
-
-
-
- No suitable test runtime provider was found:
- Es wurde kein geeigneter Testruntimeanbieter gefunden:
-
-
-
- Skipping source:
- Quelle wird übersprungen:
-
-
-
-
-
+
+
+
+
+
+ Exception occurred while instantiating discoverer : {0}
+ Ausnahme beim Instanziieren des Discoverers: {0}
+
+
+
+ Multiple test adapters with the same uri '{0}' were found. Ignoring adapter '{1}'. Please uninstall the conflicting adapter(s) to avoid this warning.
+ Mehrere Testadapter mit dem gleichen URI "{0}" wurden gefunden. Der Adapter "{1}" wird ignoriert. Deinstallieren Sie die in Konflikt stehenden Adapter, um diese Warnung zu vermeiden.
+ {0} is the unique identifier of test adapter. {1} is the name of the test adapter that shares a unique identifier with a previously loaded adapter.
+
+
+ Ignoring the specified duplicate source '{0}'.
+ Die angegebene doppelte Quelle "{0}" wird ignoriert.
+
+
+
+ An exception occurred while test discoverer '{0}' was loading tests. Exception: {1}
+ Ausnahme beim Laden von Tests durch den Testdiscoverer "{0}". Ausnahme: {1}
+
+
+
+ An exception occurred while invoking executor '{0}': {1}
+ Ausnahme beim Aufrufen von Executor "{0}": {1}
+
+
+
+ Could not find file {0}.
+ Die Datei "{0}" wurde nicht gefunden.
+
+
+
+ Host debugging is enabled. Please attach debugger to testhost process to continue.
+ Hostdebuggen ist aktiviert. Fügen Sie den Debugger an den Testhostprozess an, um den Vorgang fortzusetzen.
+ Host, testhost are key words, it should not be localized
+
+
+ Ignoring the test executor corresponding to test discoverer {0} because the discoverer does not have the DefaultExecutorUri attribute . You might need to re-install the test adapter add-in.
+ Der Testexecutor, der dem Testdiscoverer "{0}" entspricht, wird ignoriert, weil der Discoverer nicht das DefaultExecutorUri-Attribut aufweist. Sie müssen ggf. das Testadapter-Add-In erneut installieren.
+
+
+
+ Failed to initialize client proxy: could not connect to test process.
+ Fehler beim Initialisieren des Clientproxys: Es konnte keine Verbindung mit dem Testprozess hergestellt werden.
+
+
+
+ This operation is not allowed in the context of a non-debug run.
+ Dieser Vorgang ist im Kontext einer Nichtdebugausführung unzulässig.
+
+
+
+ Could not find test executor with URI '{0}'. Make sure that the test executor is installed and supports .net runtime version {1}.
+ Der Testexecutor mit dem URI "{0}" wurde nicht gefunden. Stellen Sie sicher, dass der Testexecutor installiert ist und .NET Runtime-Version {1} unterstützt.
+ {0} - Executor uri String {1}- Version - .net Version Eg:-2.0.50727.00
+
+
+ None of the specified source(s) '{0}' is valid. Fix the above errors/warnings and then try again.
+ Keine der angegebenen Quellen "{0}" ist gültig. Beheben Sie die oben aufgeführten Fehler/Warnungen, und versuchen Sie es erneut.
+
+
+
+ ,
+ ,
+
+
+
+ No tests matched the filter because it contains one or more properties that are not valid ({0}). Specify filter expression containing valid properties ({1}).
+ Es stimmten keine Tests mit dem Filter überein, weil er mindestens eine ungültige Eigenschaft enthält ({0}). Geben Sie einen Filterausdruck mit gültigen Eigenschaften an ({1}).
+
+
+
+ Could not find {0}. Make sure that the dotnet is installed on the machine.
+ {0} wurde nicht gefunden. Stellen Sie sicher, dass das dotnet auf dem Computer installiert ist.
+
+
+
+ Testhost process for source(s) '{0}' exited with error: {1}. Please check the diagnostic logs for more information.
+ Der TestHost-Prozess für die Quelle(n) {0} wurde mit folgendem Fehler beendet: {1}. Weitere Informationen finden Sie in den Diagnoseprotokollen.
+ {0} a source, or very rarely list of sources, {1} the output error.
+
+
+ DataCollector debugging is enabled. Please attach debugger to datacollector process to continue.
+ DataCollector-Debugging ist aktiviert. Fügen Sie den Debugger an den Datensammlerprozess an, um den Vorgang fortzusetzen.
+
+
+
+ No test is available in {0}. Make sure that test discoverer & executors are registered and platform & framework version settings are appropriate and try again.
+ In "{0}" ist kein Test verfügbar. Stellen Sie sicher, dass die Testdiscoverer und -executors registriert und die Versionseinstellungen für Plattform und Framework richtig sind, und wiederholen Sie den Vorgang.
+
+
+
+ Logging TestHost Diagnostics in file: {0}
+ Die TestHost-Diagnose wird in der Datei {0} protokolliert.
+
+
+
+ Failed to launch testhost with error: {0}
+ Fehler beim Starten von Testhost: {0}
+
+
+
+ ExecutionThreadApartmentState option not supported for framework: {0}.
+ Die ExecutionThreadApartmentState-Option wird für das Framework nicht unterstützt: {0}.
+
+
+
+ You are using an older version of Microsoft.NET.Test.Sdk. Kindly move to a version equal or greater than 15.3.0.
+ Sie verwenden eine ältere Version von Microsoft.NET.Test.Sdk. Wechseln Sie zu Version 15.3.0 oder höher.
+
+
+
+ Could not find extensions: {0}
+ Erweiterungen nicht gefunden: {0}
+
+
+
+ Adapter lookup is being changed, please follow https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap for more details.
+ Die Adaptersuche wird geändert. Weitere Informationen finden Sie unter „https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap“.
+
+
+
+ No test matches the given testcase filter `{0}` in {1}
+ Kein Test entspricht dem angegebenen Testfallfilter "{0}" in "{1}".
+
+
+
+ Discovery of tests cancelled.
+ Die Ermittlung von Tests wurde abgebrochen.
+
+
+
+ Cannot attach the debugger to the default test host with process ID: {0}.
+ Der Debugger kann nicht an den Standardtesthost mit der Prozess-ID {0} angefügt werden.
+
+
+
+ {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges.
+ {0} Beim Erstellen des Ordners "TestResults" am angegebenen Speicherort wurde der Zugriff verweigert. Sie erhalten diese Ausnahme, weil Sie "vstest.console.exe" in einem Ordner ausführen, für den Schreibzugriff erforderlich ist. So beheben Sie das Problem: Führen Sie "vstest.console.exe" in einem Ordner aus, für den Sie Schreibberechtigungen besitzen.
+
+
+
+ Could not find an available proxy to deque.
+ Es wurde kein verfügbarer Proxy für die Deque gefunden.
+
+
+
+ Proxy with id {0} is not managed by the current session manager.
+ Der Proxy mit der ID {0} wird nicht vom aktuellen Sitzungs-Manager verwaltet.
+
+
+
+ Proxy with id {0} is already available and cannot be re-enqueued.
+ Der Proxy mit der ID {0} ist bereits verfügbar und kann nicht erneut in die Warteschlange eingereiht werden.
+
+
+
+ No suitable test runtime provider was found for any source in this run.
+ Für eine Quelle in dieser Ausführung wurde kein geeigneter Testruntimeanbieter gefunden.
+
+
+
+ The runsettings changed between the time when the test session was established and the time of the current run/discovery request.
+ Die Ausführungseinstellungen wurden zwischen dem Zeitpunkt, zu dem die Testsitzung eingerichtet wurde, und dem Zeitpunkt der aktuellen Ausführungs-/Ermittlungsanforderung geändert.
+
+
+
+ {0}
+ {0}
+
+
+
+ Attachments:
+ Anlagen:
+
+
+
+ No suitable test runtime provider was found:
+ Es wurde kein geeigneter Testruntimeanbieter gefunden:
+
+
+
+ Skipping source:
+ Quelle wird übersprungen:
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.es.xlf b/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.es.xlf
index 181027c2ef..4f88016d94 100644
--- a/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.es.xlf
+++ b/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.es.xlf
@@ -1,192 +1,192 @@
-
-
-
-
-
- Exception occurred while instantiating discoverer : {0}
- Se produjo una excepción al crear una instancia del programa de detección: {0}
-
-
-
- Multiple test adapters with the same uri '{0}' were found. Ignoring adapter '{1}'. Please uninstall the conflicting adapter(s) to avoid this warning.
- Se han encontrado varios adaptadores de prueba con el mismo URI ({0}). Se omitirá el adaptador '{1}'. Desinstale los adaptadores que están en conflicto para evitar esta advertencia.
- {0} is the unique identifier of test adapter. {1} is the name of the test adapter that shares a unique identifier with a previously loaded adapter.
-
-
- Ignoring the specified duplicate source '{0}'.
- Se omitirá el origen duplicado especificado ({0}).
-
-
-
- An exception occurred while test discoverer '{0}' was loading tests. Exception: {1}
- Se produjo una excepción cuando el programa de detección de pruebas '{0}' estaba cargando pruebas. Excepción: {1}
-
-
-
- An exception occurred while invoking executor '{0}': {1}
- Se produjo una excepción al invocar al ejecutor '{0}': {1}
-
-
-
- Could not find file {0}.
- No se encuentra el archivo {0}.
-
-
-
- Host debugging is enabled. Please attach debugger to testhost process to continue.
- La depuración host está habilitada. Asocie el depurador al proceso de host de prueba para continuar.
- Host, testhost are key words, it should not be localized
-
-
- Ignoring the test executor corresponding to test discoverer {0} because the discoverer does not have the DefaultExecutorUri attribute . You might need to re-install the test adapter add-in.
- Se omitirá el ejecutor de pruebas correspondiente al programa de detección de pruebas {0}, porque este último no tiene el atributo DefaultExecutorUri. Puede ser necesario reinstalar el complemento del adaptador de prueba.
-
-
-
- Failed to initialize client proxy: could not connect to test process.
- No se pudo inicializar el proxy de cliente: no se puede conectar al proceso de prueba.
-
-
-
- This operation is not allowed in the context of a non-debug run.
- Esta operación no se permite en el contexto de una ejecución que no sea de depuración.
-
-
-
- Could not find test executor with URI '{0}'. Make sure that the test executor is installed and supports .net runtime version {1}.
- No se encuentra el ejecutor de pruebas con el URI '{0}'. Asegúrese de que el ejecutor de pruebas está instalado y admite el entorno de ejecución .NET, versión {1}.
- {0} - Executor uri String {1}- Version - .net Version Eg:-2.0.50727.00
-
-
- None of the specified source(s) '{0}' is valid. Fix the above errors/warnings and then try again.
- Ninguno de los orígenes especificados ({0}) es válido. Corrija los errores o advertencias y vuelva a intentarlo.
-
-
-
- ,
- ,
-
-
-
- No tests matched the filter because it contains one or more properties that are not valid ({0}). Specify filter expression containing valid properties ({1}).
- Ninguna prueba coincide con el filtro porque contiene una o varias propiedades no válidas ({0}). Especifique una expresión de filtro que contenga propiedades válidas ({1}).
-
-
-
- Could not find {0}. Make sure that the dotnet is installed on the machine.
- No se pudo encontrar {0}. Asegúrese de que dotnet esté instalado en la máquina.
-
-
-
- Testhost process for source(s) '{0}' exited with error: {1}. Please check the diagnostic logs for more information.
- El proceso del host de prueba para fuentes "{0}" finalizó con el siguiente error: {1}. Consulte los registros de diagnóstico para obtener más información.
- {0} a source, or very rarely list of sources, {1} the output error.
-
-
- DataCollector debugging is enabled. Please attach debugger to datacollector process to continue.
- La depuración del recopilador de datos está habilitada. Asocie el depurador al proceso del recopilador de datos para continuar.
-
-
-
- No test is available in {0}. Make sure that test discoverer & executors are registered and platform & framework version settings are appropriate and try again.
- No hay ninguna prueba disponible en {0}. Asegúrese de que los detectores y ejecutores de pruebas están registrados y de que la configuración de versión de la plataforma y de Framework es correcta y vuelva a intentarlo.
-
-
-
- Logging TestHost Diagnostics in file: {0}
- Registrando diagnóstico de TestHost en el archivo: {0}
-
-
-
- Failed to launch testhost with error: {0}
- No se pudo iniciar el host de prueba con el error: {0}
-
-
-
- ExecutionThreadApartmentState option not supported for framework: {0}.
- Opción ExecutionThreadApartmentState de ejecución no admitida para el marco: {0}.
-
-
-
- You are using an older version of Microsoft.NET.Test.Sdk. Kindly move to a version equal or greater than 15.3.0.
- Está utilizando una versión anterior de Microsoft.NET.Test.Sdk. Cámbiese a una versión igual o superior a 15.3.0.
-
-
-
- Could not find extensions: {0}
- No se pudieron encontrar las extensiones {0}.
-
-
-
- Adapter lookup is being changed, please follow https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap for more details.
- Se está cambiando la búsqueda de adaptador. Siga https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap para obtener más detalles.
-
-
-
- No test matches the given testcase filter `{0}` in {1}
- Ninguna prueba coincide con el filtro de casos de prueba proporcionado "{0}" en {1}
-
-
-
- Discovery of tests cancelled.
- Se ha cancelado la detección de las pruebas.
-
-
-
- Cannot attach the debugger to the default test host with process ID: {0}.
- No se puede asociar el depurador al host de prueba predeterminado con el id. de proceso: {0}.
-
-
-
- {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges.
- {0} Se denegó el acceso al intentar crear la carpeta "TestResults" en la ubicación mencionada. Está recibiendo esta excepción porque está ejecutando vstest.console.exe desde una carpeta que requiere acceso de escritura. Para solucionar la incidencia: ejecute vstest.console.exe desde una carpeta en la que tenga privilegios de escritura.
-
-
-
- Could not find an available proxy to deque.
- No se encontró ningún proxy disponible para quitar de la cola.
-
-
-
- Proxy with id {0} is not managed by the current session manager.
- El administrador de la sesión actual no administra el proxy con el identificador {0}.
-
-
-
- Proxy with id {0} is already available and cannot be re-enqueued.
- El proxy con el identificador {0} ya está disponible y no se puede volver a poner en cola.
-
-
-
- No suitable test runtime provider was found for any source in this run.
- No se encontró ningún proveedor de tiempo de ejecución de pruebas adecuado para ningún origen en esta ejecución.
-
-
-
- The runsettings changed between the time when the test session was established and the time of the current run/discovery request.
- Los ajustes de ejecución cambiaron entre el momento en que se estableció la sesión de prueba y el momento de la solicitud de ejecución/detección actual.
-
-
-
- {0}
- {0}
-
-
-
- Attachments:
- Datos adjuntos:
-
-
-
- No suitable test runtime provider was found:
- No se encontró ningún proveedor de tiempo de ejecución de prueba adecuado:
-
-
-
- Skipping source:
- Omitiendo origen:
-
-
-
-
-
+
+
+
+
+
+ Exception occurred while instantiating discoverer : {0}
+ Se produjo una excepción al crear una instancia del programa de detección: {0}
+
+
+
+ Multiple test adapters with the same uri '{0}' were found. Ignoring adapter '{1}'. Please uninstall the conflicting adapter(s) to avoid this warning.
+ Se han encontrado varios adaptadores de prueba con el mismo URI ({0}). Se omitirá el adaptador '{1}'. Desinstale los adaptadores que están en conflicto para evitar esta advertencia.
+ {0} is the unique identifier of test adapter. {1} is the name of the test adapter that shares a unique identifier with a previously loaded adapter.
+
+
+ Ignoring the specified duplicate source '{0}'.
+ Se omitirá el origen duplicado especificado ({0}).
+
+
+
+ An exception occurred while test discoverer '{0}' was loading tests. Exception: {1}
+ Se produjo una excepción cuando el programa de detección de pruebas '{0}' estaba cargando pruebas. Excepción: {1}
+
+
+
+ An exception occurred while invoking executor '{0}': {1}
+ Se produjo una excepción al invocar al ejecutor '{0}': {1}
+
+
+
+ Could not find file {0}.
+ No se encuentra el archivo {0}.
+
+
+
+ Host debugging is enabled. Please attach debugger to testhost process to continue.
+ La depuración host está habilitada. Asocie el depurador al proceso de host de prueba para continuar.
+ Host, testhost are key words, it should not be localized
+
+
+ Ignoring the test executor corresponding to test discoverer {0} because the discoverer does not have the DefaultExecutorUri attribute . You might need to re-install the test adapter add-in.
+ Se omitirá el ejecutor de pruebas correspondiente al programa de detección de pruebas {0}, porque este último no tiene el atributo DefaultExecutorUri. Puede ser necesario reinstalar el complemento del adaptador de prueba.
+
+
+
+ Failed to initialize client proxy: could not connect to test process.
+ No se pudo inicializar el proxy de cliente: no se puede conectar al proceso de prueba.
+
+
+
+ This operation is not allowed in the context of a non-debug run.
+ Esta operación no se permite en el contexto de una ejecución que no sea de depuración.
+
+
+
+ Could not find test executor with URI '{0}'. Make sure that the test executor is installed and supports .net runtime version {1}.
+ No se encuentra el ejecutor de pruebas con el URI '{0}'. Asegúrese de que el ejecutor de pruebas está instalado y admite el entorno de ejecución .NET, versión {1}.
+ {0} - Executor uri String {1}- Version - .net Version Eg:-2.0.50727.00
+
+
+ None of the specified source(s) '{0}' is valid. Fix the above errors/warnings and then try again.
+ Ninguno de los orígenes especificados ({0}) es válido. Corrija los errores o advertencias y vuelva a intentarlo.
+
+
+
+ ,
+ ,
+
+
+
+ No tests matched the filter because it contains one or more properties that are not valid ({0}). Specify filter expression containing valid properties ({1}).
+ Ninguna prueba coincide con el filtro porque contiene una o varias propiedades no válidas ({0}). Especifique una expresión de filtro que contenga propiedades válidas ({1}).
+
+
+
+ Could not find {0}. Make sure that the dotnet is installed on the machine.
+ No se pudo encontrar {0}. Asegúrese de que dotnet esté instalado en la máquina.
+
+
+
+ Testhost process for source(s) '{0}' exited with error: {1}. Please check the diagnostic logs for more information.
+ El proceso del host de prueba para fuentes "{0}" finalizó con el siguiente error: {1}. Consulte los registros de diagnóstico para obtener más información.
+ {0} a source, or very rarely list of sources, {1} the output error.
+
+
+ DataCollector debugging is enabled. Please attach debugger to datacollector process to continue.
+ La depuración del recopilador de datos está habilitada. Asocie el depurador al proceso del recopilador de datos para continuar.
+
+
+
+ No test is available in {0}. Make sure that test discoverer & executors are registered and platform & framework version settings are appropriate and try again.
+ No hay ninguna prueba disponible en {0}. Asegúrese de que los detectores y ejecutores de pruebas están registrados y de que la configuración de versión de la plataforma y de Framework es correcta y vuelva a intentarlo.
+
+
+
+ Logging TestHost Diagnostics in file: {0}
+ Registrando diagnóstico de TestHost en el archivo: {0}
+
+
+
+ Failed to launch testhost with error: {0}
+ No se pudo iniciar el host de prueba con el error: {0}
+
+
+
+ ExecutionThreadApartmentState option not supported for framework: {0}.
+ Opción ExecutionThreadApartmentState de ejecución no admitida para el marco: {0}.
+
+
+
+ You are using an older version of Microsoft.NET.Test.Sdk. Kindly move to a version equal or greater than 15.3.0.
+ Está utilizando una versión anterior de Microsoft.NET.Test.Sdk. Cámbiese a una versión igual o superior a 15.3.0.
+
+
+
+ Could not find extensions: {0}
+ No se pudieron encontrar las extensiones {0}.
+
+
+
+ Adapter lookup is being changed, please follow https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap for more details.
+ Se está cambiando la búsqueda de adaptador. Siga https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap para obtener más detalles.
+
+
+
+ No test matches the given testcase filter `{0}` in {1}
+ Ninguna prueba coincide con el filtro de casos de prueba proporcionado "{0}" en {1}
+
+
+
+ Discovery of tests cancelled.
+ Se ha cancelado la detección de las pruebas.
+
+
+
+ Cannot attach the debugger to the default test host with process ID: {0}.
+ No se puede asociar el depurador al host de prueba predeterminado con el id. de proceso: {0}.
+
+
+
+ {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges.
+ {0} Se denegó el acceso al intentar crear la carpeta "TestResults" en la ubicación mencionada. Está recibiendo esta excepción porque está ejecutando vstest.console.exe desde una carpeta que requiere acceso de escritura. Para solucionar la incidencia: ejecute vstest.console.exe desde una carpeta en la que tenga privilegios de escritura.
+
+
+
+ Could not find an available proxy to deque.
+ No se encontró ningún proxy disponible para quitar de la cola.
+
+
+
+ Proxy with id {0} is not managed by the current session manager.
+ El administrador de la sesión actual no administra el proxy con el identificador {0}.
+
+
+
+ Proxy with id {0} is already available and cannot be re-enqueued.
+ El proxy con el identificador {0} ya está disponible y no se puede volver a poner en cola.
+
+
+
+ No suitable test runtime provider was found for any source in this run.
+ No se encontró ningún proveedor de tiempo de ejecución de pruebas adecuado para ningún origen en esta ejecución.
+
+
+
+ The runsettings changed between the time when the test session was established and the time of the current run/discovery request.
+ Los ajustes de ejecución cambiaron entre el momento en que se estableció la sesión de prueba y el momento de la solicitud de ejecución/detección actual.
+
+
+
+ {0}
+ {0}
+
+
+
+ Attachments:
+ Datos adjuntos:
+
+
+
+ No suitable test runtime provider was found:
+ No se encontró ningún proveedor de tiempo de ejecución de prueba adecuado:
+
+
+
+ Skipping source:
+ Omitiendo origen:
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.fr.xlf b/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.fr.xlf
index b27c537e1a..2e6e8fd03d 100644
--- a/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.fr.xlf
+++ b/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.fr.xlf
@@ -1,192 +1,192 @@
-
-
-
-
-
- Exception occurred while instantiating discoverer : {0}
- Une exception s'est produite durant l'instanciation du découvreur : {0}
-
-
-
- Multiple test adapters with the same uri '{0}' were found. Ignoring adapter '{1}'. Please uninstall the conflicting adapter(s) to avoid this warning.
- Plusieurs adaptateurs de tests ayant le même URI '{0}' ont été trouvés. Adaptateur '{1}' ignoré. Désinstallez les adaptateurs en conflit pour éviter cet avertissement.
- {0} is the unique identifier of test adapter. {1} is the name of the test adapter that shares a unique identifier with a previously loaded adapter.
-
-
- Ignoring the specified duplicate source '{0}'.
- La source dupliquée spécifiée '{0}' est ignorée.
-
-
-
- An exception occurred while test discoverer '{0}' was loading tests. Exception: {1}
- Une exception s'est produite durant le chargement des tests par le découvreur de tests '{0}'. Exception : {1}
-
-
-
- An exception occurred while invoking executor '{0}': {1}
- Une exception s'est produite durant l'appel de l'exécuteur '{0}' : {1}
-
-
-
- Could not find file {0}.
- Fichier {0} introuvable.
-
-
-
- Host debugging is enabled. Please attach debugger to testhost process to continue.
- Le débogage de l'hôte est activé. Attachez le débogueur au processus testhost pour continuer.
- Host, testhost are key words, it should not be localized
-
-
- Ignoring the test executor corresponding to test discoverer {0} because the discoverer does not have the DefaultExecutorUri attribute . You might need to re-install the test adapter add-in.
- L'exécuteur de tests correspondant au découvreur de tests {0} est ignoré, car le découvreur n'a pas l'attribut DefaultExecutorUri. Vous devrez peut-être réinstaller le complément d'adaptateur de test.
-
-
-
- Failed to initialize client proxy: could not connect to test process.
- Échec d'initialisation du proxy client : connexion impossible au processus de test.
-
-
-
- This operation is not allowed in the context of a non-debug run.
- Cette opération n'est pas autorisée dans le contexte d'une exécution qui ne sert pas au débogage.
-
-
-
- Could not find test executor with URI '{0}'. Make sure that the test executor is installed and supports .net runtime version {1}.
- L'exécuteur de tests ayant l'URI '{0}' est introuvable. Vérifiez que l'exécuteur de tests est installé et qu'il prend en charge le runtime .NET version {1}.
- {0} - Executor uri String {1}- Version - .net Version Eg:-2.0.50727.00
-
-
- None of the specified source(s) '{0}' is valid. Fix the above errors/warnings and then try again.
- Aucune des sources spécifiées '{0}' n'est valide. Corrigez les erreurs/avertissements ci-dessus, puis réessayez.
-
-
-
- ,
- ,
-
-
-
- No tests matched the filter because it contains one or more properties that are not valid ({0}). Specify filter expression containing valid properties ({1}).
- Aucun test ne correspond au filtre, car il contient une ou plusieurs propriétés non valides ({0}). Spécifiez une expression de filtre contenant des propriétés valides ({1}).
-
-
-
- Could not find {0}. Make sure that the dotnet is installed on the machine.
- {0} est introuvable. Vérifiez que le dotnet est installé sur la machine.
-
-
-
- Testhost process for source(s) '{0}' exited with error: {1}. Please check the diagnostic logs for more information.
- Le processus Testhost pour la ou les sources '{0}' s’est arrêté. Erreur : {1}. Pour plus d’informations, consultez les journaux de diagnostic.
- {0} a source, or very rarely list of sources, {1} the output error.
-
-
- DataCollector debugging is enabled. Please attach debugger to datacollector process to continue.
- Le débogage de collecteur de données est activé. Attachez le débogueur au processus datacollector pour continuer.
-
-
-
- No test is available in {0}. Make sure that test discoverer & executors are registered and platform & framework version settings are appropriate and try again.
- Aucun test n'est disponible dans {0}. Vérifiez que les découvreurs et exécuteurs de tests sont inscrits. Vérifiez également que les paramètres de version de plateforme et de framework sont appropriés, puis réessayez.
-
-
-
- Logging TestHost Diagnostics in file: {0}
- Journalisation des diagnostics TestHost dans le fichier : {0}
-
-
-
- Failed to launch testhost with error: {0}
- Échec du lancement de l'hôte de test. Erreur : {0}
-
-
-
- ExecutionThreadApartmentState option not supported for framework: {0}.
- L'option ExecutionThreadApartmentState n'est pas prise en charge pour le framework : {0}.
-
-
-
- You are using an older version of Microsoft.NET.Test.Sdk. Kindly move to a version equal or greater than 15.3.0.
- Vous utilisez une ancienne version de Microsoft.NET.Test.Sdk. Passez à une version égale ou supérieure à la version 15.3.0.
-
-
-
- Could not find extensions: {0}
- Extensions introuvables : {0}
-
-
-
- Adapter lookup is being changed, please follow https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap for more details.
- La fonctionnalité de recherche d’adaptateur fait actuellement l’objet de modifications. Pour plus d’informations, veuillez consulter https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap.
-
-
-
- No test matches the given testcase filter `{0}` in {1}
- Aucun test ne correspond au filtre testcase donné `{0}` dans {1}
-
-
-
- Discovery of tests cancelled.
- Découverte de tests annulée.
-
-
-
- Cannot attach the debugger to the default test host with process ID: {0}.
- Impossible d'attacher le débogueur à l'hôte de test par défaut ayant l'ID de processus : {0}.
-
-
-
- {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges.
- {0} Accès refusé durant la tentative de création du dossier "TestResults" à l'emplacement indiqué. Vous obtenez cette exception, car vous exécutez vstest.console.exe à partir d'un dossier qui nécessite un accès en écriture. Pour résoudre le problème, exécutez vstest.console.exe à partir d'un dossier sur lequel vous disposez de privilèges d'accès en écriture.
-
-
-
- Could not find an available proxy to deque.
- Impossible de localiser un proxy disponible à dépiler.
-
-
-
- Proxy with id {0} is not managed by the current session manager.
- Le proxy ayant l'ID {0} n'est pas géré par le gestionnaire de session actuel.
-
-
-
- Proxy with id {0} is already available and cannot be re-enqueued.
- Le proxy ayant l'ID {0} est déjà disponible et ne peut pas être empilé à nouveau.
-
-
-
- No suitable test runtime provider was found for any source in this run.
- Aucun fournisseur de runtime de test approprié n’a été trouvé pour n’importe quelle source dans cette exécution.
-
-
-
- The runsettings changed between the time when the test session was established and the time of the current run/discovery request.
- Les paramètres d'exécution ont changé entre le moment où la session de test a été établie et le moment de la demande d'exécution/découverte actuelle.
-
-
-
- {0}
- {0}
-
-
-
- Attachments:
- Pièces jointes :
-
-
-
- No suitable test runtime provider was found:
- Aucun fournisseur de runtime de test approprié n’a été trouvé :
-
-
-
- Skipping source:
- Source ignorée :
-
-
-
-
-
+
+
+
+
+
+ Exception occurred while instantiating discoverer : {0}
+ Une exception s'est produite durant l'instanciation du découvreur : {0}
+
+
+
+ Multiple test adapters with the same uri '{0}' were found. Ignoring adapter '{1}'. Please uninstall the conflicting adapter(s) to avoid this warning.
+ Plusieurs adaptateurs de tests ayant le même URI '{0}' ont été trouvés. Adaptateur '{1}' ignoré. Désinstallez les adaptateurs en conflit pour éviter cet avertissement.
+ {0} is the unique identifier of test adapter. {1} is the name of the test adapter that shares a unique identifier with a previously loaded adapter.
+
+
+ Ignoring the specified duplicate source '{0}'.
+ La source dupliquée spécifiée '{0}' est ignorée.
+
+
+
+ An exception occurred while test discoverer '{0}' was loading tests. Exception: {1}
+ Une exception s'est produite durant le chargement des tests par le découvreur de tests '{0}'. Exception : {1}
+
+
+
+ An exception occurred while invoking executor '{0}': {1}
+ Une exception s'est produite durant l'appel de l'exécuteur '{0}' : {1}
+
+
+
+ Could not find file {0}.
+ Fichier {0} introuvable.
+
+
+
+ Host debugging is enabled. Please attach debugger to testhost process to continue.
+ Le débogage de l'hôte est activé. Attachez le débogueur au processus testhost pour continuer.
+ Host, testhost are key words, it should not be localized
+
+
+ Ignoring the test executor corresponding to test discoverer {0} because the discoverer does not have the DefaultExecutorUri attribute . You might need to re-install the test adapter add-in.
+ L'exécuteur de tests correspondant au découvreur de tests {0} est ignoré, car le découvreur n'a pas l'attribut DefaultExecutorUri. Vous devrez peut-être réinstaller le complément d'adaptateur de test.
+
+
+
+ Failed to initialize client proxy: could not connect to test process.
+ Échec d'initialisation du proxy client : connexion impossible au processus de test.
+
+
+
+ This operation is not allowed in the context of a non-debug run.
+ Cette opération n'est pas autorisée dans le contexte d'une exécution qui ne sert pas au débogage.
+
+
+
+ Could not find test executor with URI '{0}'. Make sure that the test executor is installed and supports .net runtime version {1}.
+ L'exécuteur de tests ayant l'URI '{0}' est introuvable. Vérifiez que l'exécuteur de tests est installé et qu'il prend en charge le runtime .NET version {1}.
+ {0} - Executor uri String {1}- Version - .net Version Eg:-2.0.50727.00
+
+
+ None of the specified source(s) '{0}' is valid. Fix the above errors/warnings and then try again.
+ Aucune des sources spécifiées '{0}' n'est valide. Corrigez les erreurs/avertissements ci-dessus, puis réessayez.
+
+
+
+ ,
+ ,
+
+
+
+ No tests matched the filter because it contains one or more properties that are not valid ({0}). Specify filter expression containing valid properties ({1}).
+ Aucun test ne correspond au filtre, car il contient une ou plusieurs propriétés non valides ({0}). Spécifiez une expression de filtre contenant des propriétés valides ({1}).
+
+
+
+ Could not find {0}. Make sure that the dotnet is installed on the machine.
+ {0} est introuvable. Vérifiez que le dotnet est installé sur la machine.
+
+
+
+ Testhost process for source(s) '{0}' exited with error: {1}. Please check the diagnostic logs for more information.
+ Le processus Testhost pour la ou les sources '{0}' s’est arrêté. Erreur : {1}. Pour plus d’informations, consultez les journaux de diagnostic.
+ {0} a source, or very rarely list of sources, {1} the output error.
+
+
+ DataCollector debugging is enabled. Please attach debugger to datacollector process to continue.
+ Le débogage de collecteur de données est activé. Attachez le débogueur au processus datacollector pour continuer.
+
+
+
+ No test is available in {0}. Make sure that test discoverer & executors are registered and platform & framework version settings are appropriate and try again.
+ Aucun test n'est disponible dans {0}. Vérifiez que les découvreurs et exécuteurs de tests sont inscrits. Vérifiez également que les paramètres de version de plateforme et de framework sont appropriés, puis réessayez.
+
+
+
+ Logging TestHost Diagnostics in file: {0}
+ Journalisation des diagnostics TestHost dans le fichier : {0}
+
+
+
+ Failed to launch testhost with error: {0}
+ Échec du lancement de l'hôte de test. Erreur : {0}
+
+
+
+ ExecutionThreadApartmentState option not supported for framework: {0}.
+ L'option ExecutionThreadApartmentState n'est pas prise en charge pour le framework : {0}.
+
+
+
+ You are using an older version of Microsoft.NET.Test.Sdk. Kindly move to a version equal or greater than 15.3.0.
+ Vous utilisez une ancienne version de Microsoft.NET.Test.Sdk. Passez à une version égale ou supérieure à la version 15.3.0.
+
+
+
+ Could not find extensions: {0}
+ Extensions introuvables : {0}
+
+
+
+ Adapter lookup is being changed, please follow https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap for more details.
+ La fonctionnalité de recherche d’adaptateur fait actuellement l’objet de modifications. Pour plus d’informations, veuillez consulter https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap.
+
+
+
+ No test matches the given testcase filter `{0}` in {1}
+ Aucun test ne correspond au filtre testcase donné `{0}` dans {1}
+
+
+
+ Discovery of tests cancelled.
+ Découverte de tests annulée.
+
+
+
+ Cannot attach the debugger to the default test host with process ID: {0}.
+ Impossible d'attacher le débogueur à l'hôte de test par défaut ayant l'ID de processus : {0}.
+
+
+
+ {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges.
+ {0} Accès refusé durant la tentative de création du dossier "TestResults" à l'emplacement indiqué. Vous obtenez cette exception, car vous exécutez vstest.console.exe à partir d'un dossier qui nécessite un accès en écriture. Pour résoudre le problème, exécutez vstest.console.exe à partir d'un dossier sur lequel vous disposez de privilèges d'accès en écriture.
+
+
+
+ Could not find an available proxy to deque.
+ Impossible de localiser un proxy disponible à dépiler.
+
+
+
+ Proxy with id {0} is not managed by the current session manager.
+ Le proxy ayant l'ID {0} n'est pas géré par le gestionnaire de session actuel.
+
+
+
+ Proxy with id {0} is already available and cannot be re-enqueued.
+ Le proxy ayant l'ID {0} est déjà disponible et ne peut pas être empilé à nouveau.
+
+
+
+ No suitable test runtime provider was found for any source in this run.
+ Aucun fournisseur de runtime de test approprié n’a été trouvé pour n’importe quelle source dans cette exécution.
+
+
+
+ The runsettings changed between the time when the test session was established and the time of the current run/discovery request.
+ Les paramètres d'exécution ont changé entre le moment où la session de test a été établie et le moment de la demande d'exécution/découverte actuelle.
+
+
+
+ {0}
+ {0}
+
+
+
+ Attachments:
+ Pièces jointes :
+
+
+
+ No suitable test runtime provider was found:
+ Aucun fournisseur de runtime de test approprié n’a été trouvé :
+
+
+
+ Skipping source:
+ Source ignorée :
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.it.xlf b/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.it.xlf
index a42be829ed..c6c78eb407 100644
--- a/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.it.xlf
+++ b/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.it.xlf
@@ -1,192 +1,192 @@
-
-
-
-
-
- Exception occurred while instantiating discoverer : {0}
- Si è verificata un'eccezione durante la creazione dell'istanza dell'agente di individuazione: {0}
-
-
-
- Multiple test adapters with the same uri '{0}' were found. Ignoring adapter '{1}'. Please uninstall the conflicting adapter(s) to avoid this warning.
- Sono stati trovati più adattatori di test con lo stesso URI '{0}'. L'adattatore '{1}' verrà ignorato. Per evitare che venga visualizzato questo avviso, disinstallare gli adattatori in conflitto.
- {0} is the unique identifier of test adapter. {1} is the name of the test adapter that shares a unique identifier with a previously loaded adapter.
-
-
- Ignoring the specified duplicate source '{0}'.
- L'origine duplicata specificata verrà ignorata: '{0}'.
-
-
-
- An exception occurred while test discoverer '{0}' was loading tests. Exception: {1}
- Si è verificata un'eccezione durante il caricamento dei test da parte dell'agente di individuazione test '{0}'. Eccezione: {1}
-
-
-
- An exception occurred while invoking executor '{0}': {1}
- Si è verificata un'eccezione durante la chiamata dell'executor '{0}': {1}
-
-
-
- Could not find file {0}.
- Il file {0} non è stato trovato.
-
-
-
- Host debugging is enabled. Please attach debugger to testhost process to continue.
- Il debug dell'host è abilitato. Per continuare, collegare il debugger al processo testhost.
- Host, testhost are key words, it should not be localized
-
-
- Ignoring the test executor corresponding to test discoverer {0} because the discoverer does not have the DefaultExecutorUri attribute . You might need to re-install the test adapter add-in.
- L'executor di test corrispondente all'agente di individuazione del test {0} verrà ignorato perché manca l'attributo DefaultExecutorUri dell'agente di individuazione. Potrebbe essere necessario reinstallare il componente aggiuntivo dell'adattatore di test.
-
-
-
- Failed to initialize client proxy: could not connect to test process.
- Inizializzazione del proxy client non riuscita: non è stato possibile connettersi al processo di test.
-
-
-
- This operation is not allowed in the context of a non-debug run.
- Questa operazione non è consentita nel contesto di un'esecuzione non di debug.
-
-
-
- Could not find test executor with URI '{0}'. Make sure that the test executor is installed and supports .net runtime version {1}.
- Non è stato trovato alcun executor di test con URI '{0}'. Verificare che l'executor di test sia installato e supporti la versione {1} di .NET Runtime.
- {0} - Executor uri String {1}- Version - .net Version Eg:-2.0.50727.00
-
-
- None of the specified source(s) '{0}' is valid. Fix the above errors/warnings and then try again.
- Nessuna delle origini specificate '{0}' è valida. Correggere gli errori/avvisi precedenti e riprovare.
-
-
-
- ,
- ,
-
-
-
- No tests matched the filter because it contains one or more properties that are not valid ({0}). Specify filter expression containing valid properties ({1}).
- Nessun test corrisponde al filtro perché contiene una o più proprietà non valide ({0}). Specificare un'espressione di filtro contenente proprietà valide ({1}).
-
-
-
- Could not find {0}. Make sure that the dotnet is installed on the machine.
- {0} non è stato trovato. Assicurarsi che dotnet sia installato nel computer.
-
-
-
- Testhost process for source(s) '{0}' exited with error: {1}. Please check the diagnostic logs for more information.
- Il processo Testhost per le origini '{0}' è terminato con errore: {1}. Per altre informazioni, controllare i log di diagnostica.
- {0} a source, or very rarely list of sources, {1} the output error.
-
-
- DataCollector debugging is enabled. Please attach debugger to datacollector process to continue.
- Il debug dell'agente di raccolta dati è abilitato. Per continuare, collegare il debugger al processo dell'agente di raccolta dati.
-
-
-
- No test is available in {0}. Make sure that test discoverer & executors are registered and platform & framework version settings are appropriate and try again.
- Non ci sono test disponibili in {0}. Assicurarsi che l'agente di individuazione test e gli executor di test siano registrati e che le impostazioni delle versioni di piattaforma e framework siano appropriate, quindi riprovare.
-
-
-
- Logging TestHost Diagnostics in file: {0}
- Registrazione della diagnostica di TestHost nel file: {0}
-
-
-
- Failed to launch testhost with error: {0}
- Non è stato possibile avviare testhost. Errore: {0}
-
-
-
- ExecutionThreadApartmentState option not supported for framework: {0}.
- L'opzione ExecutionThreadApartmentState non è supportata per il framework: {0}.
-
-
-
- You are using an older version of Microsoft.NET.Test.Sdk. Kindly move to a version equal or greater than 15.3.0.
- La versione di Microsoft.NET.Test.Sdk è obsoleta. Passare alla versione 15.3.0 o a una versione successiva.
-
-
-
- Could not find extensions: {0}
- Non è stato possibile trovare le estensioni: {0}
-
-
-
- Adapter lookup is being changed, please follow https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap for more details.
- La ricerca degli adattatori verrà modificata a breve. Per maggiori dettagli, vedere https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap.
-
-
-
- No test matches the given testcase filter `{0}` in {1}
- Nessun test corrisponde al filtro di test case specificato `{0}` in {1}
-
-
-
- Discovery of tests cancelled.
- Individuazione dei test annullata.
-
-
-
- Cannot attach the debugger to the default test host with process ID: {0}.
- Non è possibile collegare il debugger all'host di test predefinito con ID processo {0}.
-
-
-
- {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges.
- {0} Accesso negato durante il tentativo di creare la cartella "TestResults" nel percorso indicato. Si riceve questa eccezione perché si esegue vstest.console.exe da una cartella per cui è necessario l'accesso in scrittura. Per risolvere il problema, eseguire vstest.console.exe da una cartella per cui si hanno privilegi di scrittura.
-
-
-
- Could not find an available proxy to deque.
- Non è stato possibile trovare un proxy disponibile da rimuovere dalla coda.
-
-
-
- Proxy with id {0} is not managed by the current session manager.
- Il proxy con ID {0} non è gestito dallo strumento di gestione sessioni corrente.
-
-
-
- Proxy with id {0} is already available and cannot be re-enqueued.
- Il proxy con ID {0} è già disponibile e non può essere riaccodato.
-
-
-
- No suitable test runtime provider was found for any source in this run.
- Non è stato trovato alcun provider di runtime di test appropriato per qualsiasi origine in questa esecuzione.
-
-
-
- The runsettings changed between the time when the test session was established and the time of the current run/discovery request.
- Le impostazioni di esecuzione sono cambiate tra l'ora in cui è stata stabilita la sessione di test e l'ora della richiesta di esecuzione/individuazione corrente.
-
-
-
- {0}
- {0}
-
-
-
- Attachments:
- Allegati:
-
-
-
- No suitable test runtime provider was found:
- Non è stato trovato alcun provider di runtime di test appropriato:
-
-
-
- Skipping source:
- L'origine verrà ignorata:
-
-
-
-
-
+
+
+
+
+
+ Exception occurred while instantiating discoverer : {0}
+ Si è verificata un'eccezione durante la creazione dell'istanza dell'agente di individuazione: {0}
+
+
+
+ Multiple test adapters with the same uri '{0}' were found. Ignoring adapter '{1}'. Please uninstall the conflicting adapter(s) to avoid this warning.
+ Sono stati trovati più adattatori di test con lo stesso URI '{0}'. L'adattatore '{1}' verrà ignorato. Per evitare che venga visualizzato questo avviso, disinstallare gli adattatori in conflitto.
+ {0} is the unique identifier of test adapter. {1} is the name of the test adapter that shares a unique identifier with a previously loaded adapter.
+
+
+ Ignoring the specified duplicate source '{0}'.
+ L'origine duplicata specificata verrà ignorata: '{0}'.
+
+
+
+ An exception occurred while test discoverer '{0}' was loading tests. Exception: {1}
+ Si è verificata un'eccezione durante il caricamento dei test da parte dell'agente di individuazione test '{0}'. Eccezione: {1}
+
+
+
+ An exception occurred while invoking executor '{0}': {1}
+ Si è verificata un'eccezione durante la chiamata dell'executor '{0}': {1}
+
+
+
+ Could not find file {0}.
+ Il file {0} non è stato trovato.
+
+
+
+ Host debugging is enabled. Please attach debugger to testhost process to continue.
+ Il debug dell'host è abilitato. Per continuare, collegare il debugger al processo testhost.
+ Host, testhost are key words, it should not be localized
+
+
+ Ignoring the test executor corresponding to test discoverer {0} because the discoverer does not have the DefaultExecutorUri attribute . You might need to re-install the test adapter add-in.
+ L'executor di test corrispondente all'agente di individuazione del test {0} verrà ignorato perché manca l'attributo DefaultExecutorUri dell'agente di individuazione. Potrebbe essere necessario reinstallare il componente aggiuntivo dell'adattatore di test.
+
+
+
+ Failed to initialize client proxy: could not connect to test process.
+ Inizializzazione del proxy client non riuscita: non è stato possibile connettersi al processo di test.
+
+
+
+ This operation is not allowed in the context of a non-debug run.
+ Questa operazione non è consentita nel contesto di un'esecuzione non di debug.
+
+
+
+ Could not find test executor with URI '{0}'. Make sure that the test executor is installed and supports .net runtime version {1}.
+ Non è stato trovato alcun executor di test con URI '{0}'. Verificare che l'executor di test sia installato e supporti la versione {1} di .NET Runtime.
+ {0} - Executor uri String {1}- Version - .net Version Eg:-2.0.50727.00
+
+
+ None of the specified source(s) '{0}' is valid. Fix the above errors/warnings and then try again.
+ Nessuna delle origini specificate '{0}' è valida. Correggere gli errori/avvisi precedenti e riprovare.
+
+
+
+ ,
+ ,
+
+
+
+ No tests matched the filter because it contains one or more properties that are not valid ({0}). Specify filter expression containing valid properties ({1}).
+ Nessun test corrisponde al filtro perché contiene una o più proprietà non valide ({0}). Specificare un'espressione di filtro contenente proprietà valide ({1}).
+
+
+
+ Could not find {0}. Make sure that the dotnet is installed on the machine.
+ {0} non è stato trovato. Assicurarsi che dotnet sia installato nel computer.
+
+
+
+ Testhost process for source(s) '{0}' exited with error: {1}. Please check the diagnostic logs for more information.
+ Il processo Testhost per le origini '{0}' è terminato con errore: {1}. Per altre informazioni, controllare i log di diagnostica.
+ {0} a source, or very rarely list of sources, {1} the output error.
+
+
+ DataCollector debugging is enabled. Please attach debugger to datacollector process to continue.
+ Il debug dell'agente di raccolta dati è abilitato. Per continuare, collegare il debugger al processo dell'agente di raccolta dati.
+
+
+
+ No test is available in {0}. Make sure that test discoverer & executors are registered and platform & framework version settings are appropriate and try again.
+ Non ci sono test disponibili in {0}. Assicurarsi che l'agente di individuazione test e gli executor di test siano registrati e che le impostazioni delle versioni di piattaforma e framework siano appropriate, quindi riprovare.
+
+
+
+ Logging TestHost Diagnostics in file: {0}
+ Registrazione della diagnostica di TestHost nel file: {0}
+
+
+
+ Failed to launch testhost with error: {0}
+ Non è stato possibile avviare testhost. Errore: {0}
+
+
+
+ ExecutionThreadApartmentState option not supported for framework: {0}.
+ L'opzione ExecutionThreadApartmentState non è supportata per il framework: {0}.
+
+
+
+ You are using an older version of Microsoft.NET.Test.Sdk. Kindly move to a version equal or greater than 15.3.0.
+ La versione di Microsoft.NET.Test.Sdk è obsoleta. Passare alla versione 15.3.0 o a una versione successiva.
+
+
+
+ Could not find extensions: {0}
+ Non è stato possibile trovare le estensioni: {0}
+
+
+
+ Adapter lookup is being changed, please follow https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap for more details.
+ La ricerca degli adattatori verrà modificata a breve. Per maggiori dettagli, vedere https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap.
+
+
+
+ No test matches the given testcase filter `{0}` in {1}
+ Nessun test corrisponde al filtro di test case specificato `{0}` in {1}
+
+
+
+ Discovery of tests cancelled.
+ Individuazione dei test annullata.
+
+
+
+ Cannot attach the debugger to the default test host with process ID: {0}.
+ Non è possibile collegare il debugger all'host di test predefinito con ID processo {0}.
+
+
+
+ {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges.
+ {0} Accesso negato durante il tentativo di creare la cartella "TestResults" nel percorso indicato. Si riceve questa eccezione perché si esegue vstest.console.exe da una cartella per cui è necessario l'accesso in scrittura. Per risolvere il problema, eseguire vstest.console.exe da una cartella per cui si hanno privilegi di scrittura.
+
+
+
+ Could not find an available proxy to deque.
+ Non è stato possibile trovare un proxy disponibile da rimuovere dalla coda.
+
+
+
+ Proxy with id {0} is not managed by the current session manager.
+ Il proxy con ID {0} non è gestito dallo strumento di gestione sessioni corrente.
+
+
+
+ Proxy with id {0} is already available and cannot be re-enqueued.
+ Il proxy con ID {0} è già disponibile e non può essere riaccodato.
+
+
+
+ No suitable test runtime provider was found for any source in this run.
+ Non è stato trovato alcun provider di runtime di test appropriato per qualsiasi origine in questa esecuzione.
+
+
+
+ The runsettings changed between the time when the test session was established and the time of the current run/discovery request.
+ Le impostazioni di esecuzione sono cambiate tra l'ora in cui è stata stabilita la sessione di test e l'ora della richiesta di esecuzione/individuazione corrente.
+
+
+
+ {0}
+ {0}
+
+
+
+ Attachments:
+ Allegati:
+
+
+
+ No suitable test runtime provider was found:
+ Non è stato trovato alcun provider di runtime di test appropriato:
+
+
+
+ Skipping source:
+ L'origine verrà ignorata:
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.ja.xlf b/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.ja.xlf
index 9b12443614..aba3c1288b 100644
--- a/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.ja.xlf
+++ b/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.ja.xlf
@@ -1,192 +1,192 @@
-
-
-
-
-
- Exception occurred while instantiating discoverer : {0}
- 探索プログラムのインスタンス化中に例外が発生しました: {0}
-
-
-
- Multiple test adapters with the same uri '{0}' were found. Ignoring adapter '{1}'. Please uninstall the conflicting adapter(s) to avoid this warning.
- 同じ URI '{0}' を持つ複数のテスト アダプターが見つかりました。アダプター '{1}' を無視します。この警告が表示されないようにするには、競合するアダプターをアンインストールしてください。
- {0} is the unique identifier of test adapter. {1} is the name of the test adapter that shares a unique identifier with a previously loaded adapter.
-
-
- Ignoring the specified duplicate source '{0}'.
- 指定された重複データ ソース '{0}' を無視します。
-
-
-
- An exception occurred while test discoverer '{0}' was loading tests. Exception: {1}
- テスト探索プログラム '{0}' がテストを読み込んでいるときに例外が発生しました。例外: {1}
-
-
-
- An exception occurred while invoking executor '{0}': {1}
- 実行プログラム '{0}' の呼び出し中に例外が発生しました: {1}
-
-
-
- Could not find file {0}.
- ファイル {0} は見つかりませんでした。
-
-
-
- Host debugging is enabled. Please attach debugger to testhost process to continue.
- ホスト デバッグが有効です。続行するにはデバッガーをテスト ホスト プロセスにアタッチしてください。
- Host, testhost are key words, it should not be localized
-
-
- Ignoring the test executor corresponding to test discoverer {0} because the discoverer does not have the DefaultExecutorUri attribute . You might need to re-install the test adapter add-in.
- テスト探索プログラム {0} には DefaultExecutorUri 属性が含まれていないため、このテスト探索プログラムに対応するテスト実行プログラムを無視しています。テスト アダプター アドインの再インストールが必要になる場合があります。
-
-
-
- Failed to initialize client proxy: could not connect to test process.
- クライアント プロキシを初期化できませんでした。テスト プロセスに接続できませんでした。
-
-
-
- This operation is not allowed in the context of a non-debug run.
- この操作は、非デバッグ実行のコンテキストでは許可されていません。
-
-
-
- Could not find test executor with URI '{0}'. Make sure that the test executor is installed and supports .net runtime version {1}.
- URI が '{0}' のテスト実行プログラムが見つかりませんでした。テスト実行プログラムがインストールされ、.net ランタイム バージョン {1} をサポートしていることをご確認ください。
- {0} - Executor uri String {1}- Version - .net Version Eg:-2.0.50727.00
-
-
- None of the specified source(s) '{0}' is valid. Fix the above errors/warnings and then try again.
- 指定されたソース '{0}' がいずれも有効ではありません。上記のエラーおよび警告を修正してから、もう一度お試しください。
-
-
-
- ,
- ,
-
-
-
- No tests matched the filter because it contains one or more properties that are not valid ({0}). Specify filter expression containing valid properties ({1}).
- フィルターに一致するテストがありません。フィルターに無効なプロパティが 1 つ以上含まれています ({0})。有効なプロパティを含むフィルター式 ({1}) を指定してください。
-
-
-
- Could not find {0}. Make sure that the dotnet is installed on the machine.
- {0} が見つかりませんでした。dotnet がマシンにインストールされていることを確認してください。
-
-
-
- Testhost process for source(s) '{0}' exited with error: {1}. Please check the diagnostic logs for more information.
- ソース `{0}` の Testhost プロセスがエラーで終了しました: {1}。詳細については、診断ログを確認してください。
- {0} a source, or very rarely list of sources, {1} the output error.
-
-
- DataCollector debugging is enabled. Please attach debugger to datacollector process to continue.
- DataCollector のデバッグが有効です。続行するにはデバッガーを datacollector プロセスにアタッチしてください。
-
-
-
- No test is available in {0}. Make sure that test discoverer & executors are registered and platform & framework version settings are appropriate and try again.
- {0} で使用できるテストはありません。テスト探索プログラムおよび実行プログラムが登録されており、プラットフォームおよびフレームワークのバージョン設定が適切であることを確認してから、もう一度お試しください。
-
-
-
- Logging TestHost Diagnostics in file: {0}
- 次のファイルで TestHost 診断をログ記録しています: {0}
-
-
-
- Failed to launch testhost with error: {0}
- エラーが発生したため、TestHost を起動できませんでした: {0}
-
-
-
- ExecutionThreadApartmentState option not supported for framework: {0}.
- フレームワークでの ThreadApartmentState オプションの実行はサポートされていません: {0}。
-
-
-
- You are using an older version of Microsoft.NET.Test.Sdk. Kindly move to a version equal or greater than 15.3.0.
- Microsoft.NET.Test.Sdk の古いバージョンを使用しています。15.3.0 以降のバージョンに移行することをお勧めします。
-
-
-
- Could not find extensions: {0}
- 拡張機能が見つかりませんでした: {0}
-
-
-
- Adapter lookup is being changed, please follow https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap for more details.
- アダプター検索は変更中です。詳細については、https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap をご覧ください。
-
-
-
- No test matches the given testcase filter `{0}` in {1}
- 指定のテストケース フィルター `{0}` に一致するテストは {1} にありません
-
-
-
- Discovery of tests cancelled.
- テストの検出が取り消されました。
-
-
-
- Cannot attach the debugger to the default test host with process ID: {0}.
- デバッガーをプロセス ID: {0} の既定のテスト ホストにアタッチできません。
-
-
-
- {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges.
- {0} 記載した場所に "TestResults" フォルダーを作成しようとしたときにアクセスが拒否されました。書き込みアクセスを必要とするフォルダーから vstest.console.exe を実行しているため、この例外が発生しています。この問題を解決するには、書き込み特権のあるフォルダーから vstest.console.exe を実行してください。
-
-
-
- Could not find an available proxy to deque.
- デキューするために使用できるプロキシが見つかりませんでした。
-
-
-
- Proxy with id {0} is not managed by the current session manager.
- ID が {0} のプロキシは、現在のセッション マネージャーで管理されません。
-
-
-
- Proxy with id {0} is already available and cannot be re-enqueued.
- ID が {0} のプロキシは、既に使用可能になっているため、再度エンキューすることはできません。
-
-
-
- No suitable test runtime provider was found for any source in this run.
- この実行のどのソースにも適切なテスト ランタイム プロバイダーが見つかりませんでした。
-
-
-
- The runsettings changed between the time when the test session was established and the time of the current run/discovery request.
- テスト セッションが確立された時刻と現在の実行/検出要求の時刻の間で、実行設定が変更されました。
-
-
-
- {0}
- {0}
-
-
-
- Attachments:
- 添付ファイル:
-
-
-
- No suitable test runtime provider was found:
- 適切なテスト ランタイム プロバイダーが見つかりませんでした。
-
-
-
- Skipping source:
- ソースをスキップしています:
-
-
-
-
-
+
+
+
+
+
+ Exception occurred while instantiating discoverer : {0}
+ 探索プログラムのインスタンス化中に例外が発生しました: {0}
+
+
+
+ Multiple test adapters with the same uri '{0}' were found. Ignoring adapter '{1}'. Please uninstall the conflicting adapter(s) to avoid this warning.
+ 同じ URI '{0}' を持つ複数のテスト アダプターが見つかりました。アダプター '{1}' を無視します。この警告が表示されないようにするには、競合するアダプターをアンインストールしてください。
+ {0} is the unique identifier of test adapter. {1} is the name of the test adapter that shares a unique identifier with a previously loaded adapter.
+
+
+ Ignoring the specified duplicate source '{0}'.
+ 指定された重複データ ソース '{0}' を無視します。
+
+
+
+ An exception occurred while test discoverer '{0}' was loading tests. Exception: {1}
+ テスト探索プログラム '{0}' がテストを読み込んでいるときに例外が発生しました。例外: {1}
+
+
+
+ An exception occurred while invoking executor '{0}': {1}
+ 実行プログラム '{0}' の呼び出し中に例外が発生しました: {1}
+
+
+
+ Could not find file {0}.
+ ファイル {0} は見つかりませんでした。
+
+
+
+ Host debugging is enabled. Please attach debugger to testhost process to continue.
+ ホスト デバッグが有効です。続行するにはデバッガーをテスト ホスト プロセスにアタッチしてください。
+ Host, testhost are key words, it should not be localized
+
+
+ Ignoring the test executor corresponding to test discoverer {0} because the discoverer does not have the DefaultExecutorUri attribute . You might need to re-install the test adapter add-in.
+ テスト探索プログラム {0} には DefaultExecutorUri 属性が含まれていないため、このテスト探索プログラムに対応するテスト実行プログラムを無視しています。テスト アダプター アドインの再インストールが必要になる場合があります。
+
+
+
+ Failed to initialize client proxy: could not connect to test process.
+ クライアント プロキシを初期化できませんでした。テスト プロセスに接続できませんでした。
+
+
+
+ This operation is not allowed in the context of a non-debug run.
+ この操作は、非デバッグ実行のコンテキストでは許可されていません。
+
+
+
+ Could not find test executor with URI '{0}'. Make sure that the test executor is installed and supports .net runtime version {1}.
+ URI が '{0}' のテスト実行プログラムが見つかりませんでした。テスト実行プログラムがインストールされ、.net ランタイム バージョン {1} をサポートしていることをご確認ください。
+ {0} - Executor uri String {1}- Version - .net Version Eg:-2.0.50727.00
+
+
+ None of the specified source(s) '{0}' is valid. Fix the above errors/warnings and then try again.
+ 指定されたソース '{0}' がいずれも有効ではありません。上記のエラーおよび警告を修正してから、もう一度お試しください。
+
+
+
+ ,
+ ,
+
+
+
+ No tests matched the filter because it contains one or more properties that are not valid ({0}). Specify filter expression containing valid properties ({1}).
+ フィルターに一致するテストがありません。フィルターに無効なプロパティが 1 つ以上含まれています ({0})。有効なプロパティを含むフィルター式 ({1}) を指定してください。
+
+
+
+ Could not find {0}. Make sure that the dotnet is installed on the machine.
+ {0} が見つかりませんでした。dotnet がマシンにインストールされていることを確認してください。
+
+
+
+ Testhost process for source(s) '{0}' exited with error: {1}. Please check the diagnostic logs for more information.
+ ソース `{0}` の Testhost プロセスがエラーで終了しました: {1}。詳細については、診断ログを確認してください。
+ {0} a source, or very rarely list of sources, {1} the output error.
+
+
+ DataCollector debugging is enabled. Please attach debugger to datacollector process to continue.
+ DataCollector のデバッグが有効です。続行するにはデバッガーを datacollector プロセスにアタッチしてください。
+
+
+
+ No test is available in {0}. Make sure that test discoverer & executors are registered and platform & framework version settings are appropriate and try again.
+ {0} で使用できるテストはありません。テスト探索プログラムおよび実行プログラムが登録されており、プラットフォームおよびフレームワークのバージョン設定が適切であることを確認してから、もう一度お試しください。
+
+
+
+ Logging TestHost Diagnostics in file: {0}
+ 次のファイルで TestHost 診断をログ記録しています: {0}
+
+
+
+ Failed to launch testhost with error: {0}
+ エラーが発生したため、TestHost を起動できませんでした: {0}
+
+
+
+ ExecutionThreadApartmentState option not supported for framework: {0}.
+ フレームワークでの ThreadApartmentState オプションの実行はサポートされていません: {0}。
+
+
+
+ You are using an older version of Microsoft.NET.Test.Sdk. Kindly move to a version equal or greater than 15.3.0.
+ Microsoft.NET.Test.Sdk の古いバージョンを使用しています。15.3.0 以降のバージョンに移行することをお勧めします。
+
+
+
+ Could not find extensions: {0}
+ 拡張機能が見つかりませんでした: {0}
+
+
+
+ Adapter lookup is being changed, please follow https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap for more details.
+ アダプター検索は変更中です。詳細については、https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap をご覧ください。
+
+
+
+ No test matches the given testcase filter `{0}` in {1}
+ 指定のテストケース フィルター `{0}` に一致するテストは {1} にありません
+
+
+
+ Discovery of tests cancelled.
+ テストの検出が取り消されました。
+
+
+
+ Cannot attach the debugger to the default test host with process ID: {0}.
+ デバッガーをプロセス ID: {0} の既定のテスト ホストにアタッチできません。
+
+
+
+ {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges.
+ {0} 記載した場所に "TestResults" フォルダーを作成しようとしたときにアクセスが拒否されました。書き込みアクセスを必要とするフォルダーから vstest.console.exe を実行しているため、この例外が発生しています。この問題を解決するには、書き込み特権のあるフォルダーから vstest.console.exe を実行してください。
+
+
+
+ Could not find an available proxy to deque.
+ デキューするために使用できるプロキシが見つかりませんでした。
+
+
+
+ Proxy with id {0} is not managed by the current session manager.
+ ID が {0} のプロキシは、現在のセッション マネージャーで管理されません。
+
+
+
+ Proxy with id {0} is already available and cannot be re-enqueued.
+ ID が {0} のプロキシは、既に使用可能になっているため、再度エンキューすることはできません。
+
+
+
+ No suitable test runtime provider was found for any source in this run.
+ この実行のどのソースにも適切なテスト ランタイム プロバイダーが見つかりませんでした。
+
+
+
+ The runsettings changed between the time when the test session was established and the time of the current run/discovery request.
+ テスト セッションが確立された時刻と現在の実行/検出要求の時刻の間で、実行設定が変更されました。
+
+
+
+ {0}
+ {0}
+
+
+
+ Attachments:
+ 添付ファイル:
+
+
+
+ No suitable test runtime provider was found:
+ 適切なテスト ランタイム プロバイダーが見つかりませんでした。
+
+
+
+ Skipping source:
+ ソースをスキップしています:
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.ko.xlf b/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.ko.xlf
index c0512a65b5..e8e5edff47 100644
--- a/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.ko.xlf
+++ b/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.ko.xlf
@@ -1,192 +1,192 @@
-
-
-
-
-
- Exception occurred while instantiating discoverer : {0}
- {0} Discoverer를 인스턴스화하는 중 예외가 발생했습니다.
-
-
-
- Multiple test adapters with the same uri '{0}' were found. Ignoring adapter '{1}'. Please uninstall the conflicting adapter(s) to avoid this warning.
- 동일한 URI '{0}'을(를) 가진 테스트 어댑터가 여러 개 있습니다. '{1}' 어댑터를 무시합니다. 이 경고가 발생하지 않게 하려면 충돌하는 어댑터를 제거하세요.
- {0} is the unique identifier of test adapter. {1} is the name of the test adapter that shares a unique identifier with a previously loaded adapter.
-
-
- Ignoring the specified duplicate source '{0}'.
- 지정한 중복되는 '{0}' 소스를 무시합니다.
-
-
-
- An exception occurred while test discoverer '{0}' was loading tests. Exception: {1}
- 테스트 Discoverer '{0}'에서 테스트를 로드하는 동안 예외가 발생했습니다. 예외: {1}
-
-
-
- An exception occurred while invoking executor '{0}': {1}
- '{0}' Executor를 호출하는 동안 예외가 발생했습니다. {1}
-
-
-
- Could not find file {0}.
- {0} 파일을 찾을 수 없습니다.
-
-
-
- Host debugging is enabled. Please attach debugger to testhost process to continue.
- 호스트 디버깅을 사용하도록 설정했습니다. testhost 프로세스를 계속하려면 디버거를 연결하세요.
- Host, testhost are key words, it should not be localized
-
-
- Ignoring the test executor corresponding to test discoverer {0} because the discoverer does not have the DefaultExecutorUri attribute . You might need to re-install the test adapter add-in.
- Discoverer에 DefaultExecutorUri 특성이 없으므로 테스트 Discoverer {0}에 해당하는 테스트 Executor를 무시합니다. 테스트 어댑터 추가 기능을 다시 설치해야 할 수 있습니다.
-
-
-
- Failed to initialize client proxy: could not connect to test process.
- 클라이언트 프록시를 초기화하지 못했습니다. 테스트 프로세스에 연결할 수 없습니다.
-
-
-
- This operation is not allowed in the context of a non-debug run.
- 디버그가 아닌 실행의 컨텍스트에서는 이 작업을 수행할 수 없습니다.
-
-
-
- Could not find test executor with URI '{0}'. Make sure that the test executor is installed and supports .net runtime version {1}.
- URI가 '{0}'인 테스트 Executor를 찾을 수 없습니다. 테스트 Executor가 설치되어 있고 .NET 런타임 버전 {1}을(를) 지원하는지 확인하세요.
- {0} - Executor uri String {1}- Version - .net Version Eg:-2.0.50727.00
-
-
- None of the specified source(s) '{0}' is valid. Fix the above errors/warnings and then try again.
- 지정한 '{0}' 소스가 올바르지 않습니다. 위의 오류/경고를 해결한 후 다시 시도하세요.
-
-
-
- ,
- ,
-
-
-
- No tests matched the filter because it contains one or more properties that are not valid ({0}). Specify filter expression containing valid properties ({1}).
- 필터에 잘못된 속성({0})이 하나 이상 포함되어 있으므로 해당 필터와 일치하는 테스트가 없습니다. 유효한 속성({1})을 포함하는 필터 식을 지정하세요.
-
-
-
- Could not find {0}. Make sure that the dotnet is installed on the machine.
- {0}을(를) 찾을 수 없습니다. 컴퓨터에 dotnet이 설치되어 있는지 확인하세요.
-
-
-
- Testhost process for source(s) '{0}' exited with error: {1}. Please check the diagnostic logs for more information.
- 원본 '{0}'에 대한 Testhost 프로세스가 오류 {1}과(와) 함께 종료되었습니다. 자세한 내용은 진단 로그를 확인하세요.
- {0} a source, or very rarely list of sources, {1} the output error.
-
-
- DataCollector debugging is enabled. Please attach debugger to datacollector process to continue.
- DataCollector 디버깅을 사용하도록 설정했습니다. datacollector 프로세스를 계속하려면 디버거를 연결하세요.
-
-
-
- No test is available in {0}. Make sure that test discoverer & executors are registered and platform & framework version settings are appropriate and try again.
- {0}에서 테스트를 사용할 수 없습니다. 테스트 Discoverer 및 Executor가 등록되고 플랫폼 및 프레임워크 버전 설정이 적절한지 확인하고 다시 시도하세요.
-
-
-
- Logging TestHost Diagnostics in file: {0}
- {0} 파일에 TestHost Diagnostics 로깅 중
-
-
-
- Failed to launch testhost with error: {0}
- Testhost를 시작하지 못했습니다(오류: {0}).
-
-
-
- ExecutionThreadApartmentState option not supported for framework: {0}.
- 프레임워크 {0}에 대해 ExecutionThreadApartmentState 옵션이 지원되지 않습니다.
-
-
-
- You are using an older version of Microsoft.NET.Test.Sdk. Kindly move to a version equal or greater than 15.3.0.
- 이전 버전의 Microsoft.NET.Test.Sdk를 사용하고 있습니다. 15.3.0 이상 버전으로 이동하세요.
-
-
-
- Could not find extensions: {0}
- 확장을 찾을 수 없음: {0}
-
-
-
- Adapter lookup is being changed, please follow https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap for more details.
- 어댑터 조회를 변경하는 중입니다. 자세한 내용은 https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap을 팔로우하세요.
-
-
-
- No test matches the given testcase filter `{0}` in {1}
- {1}에 지정된 테스트 사례 필터 `{0}`과(와) 일치하는 테스트가 없습니다.
-
-
-
- Discovery of tests cancelled.
- 테스트 검색이 취소되었습니다.
-
-
-
- Cannot attach the debugger to the default test host with process ID: {0}.
- 프로세스 ID가 {0}인 기본 테스트 호스트에 디버거를 연결할 수 없습니다.
-
-
-
- {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges.
- {0} "TestResults" 폴더를 언급된 위치에 만드는 동안 액세스가 거부되었습니다. 쓰기 권한이 필요한 폴더에서 vstest.console.exe를 실행하고 있으므로 이 예외가 발생했습니다. 이 문제를 해결하려면 쓰기 권한이 있는 폴더에서 vstest.console.exe를 실행하세요.
-
-
-
- Could not find an available proxy to deque.
- 큐에서 제거하기 위해 사용할 수 있는 프록시를 찾을 수 없습니다.
-
-
-
- Proxy with id {0} is not managed by the current session manager.
- ID가 {0}인 프록시가 현재 세션 관리자에서 관리되지 않습니다.
-
-
-
- Proxy with id {0} is already available and cannot be re-enqueued.
- ID가 {0}인 프록시를 이미 사용할 수 있으며 큐에 다시 넣을 수 없습니다.
-
-
-
- No suitable test runtime provider was found for any source in this run.
- 이 실행에서 원본에 적합한 테스트 런타임 공급자를 찾을 수 없습니다.
-
-
-
- The runsettings changed between the time when the test session was established and the time of the current run/discovery request.
- 테스트 세션이 설정된 시간과 현재 실행/검색 요청의 시간 사이에 runsettings가 변경되었습니다.
-
-
-
- {0}
- {0}
-
-
-
- Attachments:
- 첨부 파일:
-
-
-
- No suitable test runtime provider was found:
- 적합한 테스트 런타임 공급자를 찾을 수 없습니다.
-
-
-
- Skipping source:
- 원본을 건너뛰는 중:
-
-
-
-
-
+
+
+
+
+
+ Exception occurred while instantiating discoverer : {0}
+ {0} Discoverer를 인스턴스화하는 중 예외가 발생했습니다.
+
+
+
+ Multiple test adapters with the same uri '{0}' were found. Ignoring adapter '{1}'. Please uninstall the conflicting adapter(s) to avoid this warning.
+ 동일한 URI '{0}'을(를) 가진 테스트 어댑터가 여러 개 있습니다. '{1}' 어댑터를 무시합니다. 이 경고가 발생하지 않게 하려면 충돌하는 어댑터를 제거하세요.
+ {0} is the unique identifier of test adapter. {1} is the name of the test adapter that shares a unique identifier with a previously loaded adapter.
+
+
+ Ignoring the specified duplicate source '{0}'.
+ 지정한 중복되는 '{0}' 소스를 무시합니다.
+
+
+
+ An exception occurred while test discoverer '{0}' was loading tests. Exception: {1}
+ 테스트 Discoverer '{0}'에서 테스트를 로드하는 동안 예외가 발생했습니다. 예외: {1}
+
+
+
+ An exception occurred while invoking executor '{0}': {1}
+ '{0}' Executor를 호출하는 동안 예외가 발생했습니다. {1}
+
+
+
+ Could not find file {0}.
+ {0} 파일을 찾을 수 없습니다.
+
+
+
+ Host debugging is enabled. Please attach debugger to testhost process to continue.
+ 호스트 디버깅을 사용하도록 설정했습니다. testhost 프로세스를 계속하려면 디버거를 연결하세요.
+ Host, testhost are key words, it should not be localized
+
+
+ Ignoring the test executor corresponding to test discoverer {0} because the discoverer does not have the DefaultExecutorUri attribute . You might need to re-install the test adapter add-in.
+ Discoverer에 DefaultExecutorUri 특성이 없으므로 테스트 Discoverer {0}에 해당하는 테스트 Executor를 무시합니다. 테스트 어댑터 추가 기능을 다시 설치해야 할 수 있습니다.
+
+
+
+ Failed to initialize client proxy: could not connect to test process.
+ 클라이언트 프록시를 초기화하지 못했습니다. 테스트 프로세스에 연결할 수 없습니다.
+
+
+
+ This operation is not allowed in the context of a non-debug run.
+ 디버그가 아닌 실행의 컨텍스트에서는 이 작업을 수행할 수 없습니다.
+
+
+
+ Could not find test executor with URI '{0}'. Make sure that the test executor is installed and supports .net runtime version {1}.
+ URI가 '{0}'인 테스트 Executor를 찾을 수 없습니다. 테스트 Executor가 설치되어 있고 .NET 런타임 버전 {1}을(를) 지원하는지 확인하세요.
+ {0} - Executor uri String {1}- Version - .net Version Eg:-2.0.50727.00
+
+
+ None of the specified source(s) '{0}' is valid. Fix the above errors/warnings and then try again.
+ 지정한 '{0}' 소스가 올바르지 않습니다. 위의 오류/경고를 해결한 후 다시 시도하세요.
+
+
+
+ ,
+ ,
+
+
+
+ No tests matched the filter because it contains one or more properties that are not valid ({0}). Specify filter expression containing valid properties ({1}).
+ 필터에 잘못된 속성({0})이 하나 이상 포함되어 있으므로 해당 필터와 일치하는 테스트가 없습니다. 유효한 속성({1})을 포함하는 필터 식을 지정하세요.
+
+
+
+ Could not find {0}. Make sure that the dotnet is installed on the machine.
+ {0}을(를) 찾을 수 없습니다. 컴퓨터에 dotnet이 설치되어 있는지 확인하세요.
+
+
+
+ Testhost process for source(s) '{0}' exited with error: {1}. Please check the diagnostic logs for more information.
+ 원본 '{0}'에 대한 Testhost 프로세스가 오류 {1}과(와) 함께 종료되었습니다. 자세한 내용은 진단 로그를 확인하세요.
+ {0} a source, or very rarely list of sources, {1} the output error.
+
+
+ DataCollector debugging is enabled. Please attach debugger to datacollector process to continue.
+ DataCollector 디버깅을 사용하도록 설정했습니다. datacollector 프로세스를 계속하려면 디버거를 연결하세요.
+
+
+
+ No test is available in {0}. Make sure that test discoverer & executors are registered and platform & framework version settings are appropriate and try again.
+ {0}에서 테스트를 사용할 수 없습니다. 테스트 Discoverer 및 Executor가 등록되고 플랫폼 및 프레임워크 버전 설정이 적절한지 확인하고 다시 시도하세요.
+
+
+
+ Logging TestHost Diagnostics in file: {0}
+ {0} 파일에 TestHost Diagnostics 로깅 중
+
+
+
+ Failed to launch testhost with error: {0}
+ Testhost를 시작하지 못했습니다(오류: {0}).
+
+
+
+ ExecutionThreadApartmentState option not supported for framework: {0}.
+ 프레임워크 {0}에 대해 ExecutionThreadApartmentState 옵션이 지원되지 않습니다.
+
+
+
+ You are using an older version of Microsoft.NET.Test.Sdk. Kindly move to a version equal or greater than 15.3.0.
+ 이전 버전의 Microsoft.NET.Test.Sdk를 사용하고 있습니다. 15.3.0 이상 버전으로 이동하세요.
+
+
+
+ Could not find extensions: {0}
+ 확장을 찾을 수 없음: {0}
+
+
+
+ Adapter lookup is being changed, please follow https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap for more details.
+ 어댑터 조회를 변경하는 중입니다. 자세한 내용은 https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap을 팔로우하세요.
+
+
+
+ No test matches the given testcase filter `{0}` in {1}
+ {1}에 지정된 테스트 사례 필터 `{0}`과(와) 일치하는 테스트가 없습니다.
+
+
+
+ Discovery of tests cancelled.
+ 테스트 검색이 취소되었습니다.
+
+
+
+ Cannot attach the debugger to the default test host with process ID: {0}.
+ 프로세스 ID가 {0}인 기본 테스트 호스트에 디버거를 연결할 수 없습니다.
+
+
+
+ {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges.
+ {0} "TestResults" 폴더를 언급된 위치에 만드는 동안 액세스가 거부되었습니다. 쓰기 권한이 필요한 폴더에서 vstest.console.exe를 실행하고 있으므로 이 예외가 발생했습니다. 이 문제를 해결하려면 쓰기 권한이 있는 폴더에서 vstest.console.exe를 실행하세요.
+
+
+
+ Could not find an available proxy to deque.
+ 큐에서 제거하기 위해 사용할 수 있는 프록시를 찾을 수 없습니다.
+
+
+
+ Proxy with id {0} is not managed by the current session manager.
+ ID가 {0}인 프록시가 현재 세션 관리자에서 관리되지 않습니다.
+
+
+
+ Proxy with id {0} is already available and cannot be re-enqueued.
+ ID가 {0}인 프록시를 이미 사용할 수 있으며 큐에 다시 넣을 수 없습니다.
+
+
+
+ No suitable test runtime provider was found for any source in this run.
+ 이 실행에서 원본에 적합한 테스트 런타임 공급자를 찾을 수 없습니다.
+
+
+
+ The runsettings changed between the time when the test session was established and the time of the current run/discovery request.
+ 테스트 세션이 설정된 시간과 현재 실행/검색 요청의 시간 사이에 runsettings가 변경되었습니다.
+
+
+
+ {0}
+ {0}
+
+
+
+ Attachments:
+ 첨부 파일:
+
+
+
+ No suitable test runtime provider was found:
+ 적합한 테스트 런타임 공급자를 찾을 수 없습니다.
+
+
+
+ Skipping source:
+ 원본을 건너뛰는 중:
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.pl.xlf b/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.pl.xlf
index 775a76f6a5..7254f8c97e 100644
--- a/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.pl.xlf
+++ b/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.pl.xlf
@@ -1,192 +1,192 @@
-
-
-
-
-
- Exception occurred while instantiating discoverer : {0}
- Wystąpił wyjątek podczas tworzenia wystąpienia wykrywacza: {0}
-
-
-
- Multiple test adapters with the same uri '{0}' were found. Ignoring adapter '{1}'. Please uninstall the conflicting adapter(s) to avoid this warning.
- Znaleziono wiele adapterów testowych z takim samym identyfikatorem URI „{0}”. Adapter „{1}” zostanie zignorowany. Aby uniknąć tego ostrzeżenia, odinstaluj adaptery powodujące konflikt.
- {0} is the unique identifier of test adapter. {1} is the name of the test adapter that shares a unique identifier with a previously loaded adapter.
-
-
- Ignoring the specified duplicate source '{0}'.
- Określone zduplikowane źródło „{0}” zostanie zignorowane.
-
-
-
- An exception occurred while test discoverer '{0}' was loading tests. Exception: {1}
- Wystąpił wyjątek podczas ładowania testów przez wykrywacz testów „{0}”. Wyjątek: {1}
-
-
-
- An exception occurred while invoking executor '{0}': {1}
- Wystąpił wyjątek podczas wywoływania modułu wykonywania „{0}”: {1}
-
-
-
- Could not find file {0}.
- Nie można odnaleźć pliku {0}.
-
-
-
- Host debugging is enabled. Please attach debugger to testhost process to continue.
- Debugowanie hosta zostało włączone. Dołącz debuger do procesu testhost, aby kontynuować.
- Host, testhost are key words, it should not be localized
-
-
- Ignoring the test executor corresponding to test discoverer {0} because the discoverer does not have the DefaultExecutorUri attribute . You might need to re-install the test adapter add-in.
- Moduł wykonywania testów odpowiadający wykrywaczowi testów {0} zostanie zignorowany, ponieważ wykrywacz nie ma atrybutu DefaultExecutorUri. Konieczna może być ponowna instalacja dodatku adaptera testowego.
-
-
-
- Failed to initialize client proxy: could not connect to test process.
- Zainicjowanie serwera proxy klienta nie powiodło się: nie można nawiązać połączenia z procesem testowania.
-
-
-
- This operation is not allowed in the context of a non-debug run.
- Ta operacja jest niedozwolona w kontekście uruchamiania bez debugowania.
-
-
-
- Could not find test executor with URI '{0}'. Make sure that the test executor is installed and supports .net runtime version {1}.
- Nie można odnaleźć modułu wykonywania testów o identyfikatorze URI „{0}”. Upewnij się, że moduł wykonywania testów został zainstalowany i obsługuje środowisko uruchomieniowe platformy .NET w wersji {1}.
- {0} - Executor uri String {1}- Version - .net Version Eg:-2.0.50727.00
-
-
- None of the specified source(s) '{0}' is valid. Fix the above errors/warnings and then try again.
- Wszystkie określone źródła „{0}” są nieprawidłowe. Napraw powyższe błędy/ostrzeżenia i spróbuj ponownie.
-
-
-
- ,
- ,
-
-
-
- No tests matched the filter because it contains one or more properties that are not valid ({0}). Specify filter expression containing valid properties ({1}).
- Brak testów zgodnych z filtrem, ponieważ zawiera on co najmniej jedną nieprawidłową właściwość ({0}). Określ wyrażenie filtru zawierające prawidłowe właściwości ({1}).
-
-
-
- Could not find {0}. Make sure that the dotnet is installed on the machine.
- Nie znaleziono elementu {0}. Upewnij się, że program dotnet jest zainstalowany na maszynie.
-
-
-
- Testhost process for source(s) '{0}' exited with error: {1}. Please check the diagnostic logs for more information.
- Zakończono proces hosta testowego dla źródła „{0}” z powodu błędu: {1}. Sprawdź dzienniki diagnostyczne, aby uzyskać więcej informacji.
- {0} a source, or very rarely list of sources, {1} the output error.
-
-
- DataCollector debugging is enabled. Please attach debugger to datacollector process to continue.
- Debugowanie modułu zbierającego dane zostało włączone. Dołącz debuger do procesu datacollector, aby kontynuować.
-
-
-
- No test is available in {0}. Make sure that test discoverer & executors are registered and platform & framework version settings are appropriate and try again.
- W elemencie {0} nie są dostępne żadne testy. Upewnij się, że wykrywacze i moduły wykonywania testów są zarejestrowane oraz że ustawienia wersji platformy i struktury są odpowiednie, a następnie spróbuj ponownie.
-
-
-
- Logging TestHost Diagnostics in file: {0}
- Rejestrowanie diagnostyki TestHost w pliku: {0}
-
-
-
- Failed to launch testhost with error: {0}
- Nie można uruchomić hosta testów. Błąd: {0}
-
-
-
- ExecutionThreadApartmentState option not supported for framework: {0}.
- Opcja ExecutionThreadApartmentState nie jest obsługiwana dla platformy: {0}.
-
-
-
- You are using an older version of Microsoft.NET.Test.Sdk. Kindly move to a version equal or greater than 15.3.0.
- Używamy starszej wersji zestawu Microsoft.NET.Test.Sdk. Przejdź na wersję 15.3.0 lub nowszą.
-
-
-
- Could not find extensions: {0}
- Nie można znaleźć rozszerzeń: {0}
-
-
-
- Adapter lookup is being changed, please follow https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap for more details.
- Wyszukiwanie adaptera jest zmieniane. Aby uzyskać więcej szczegółów, przejdź do strony https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap.
-
-
-
- No test matches the given testcase filter `{0}` in {1}
- Żaden test nie jest zgodny z podanym filtrem przypadku testowego „{0}” w elemencie {1}
-
-
-
- Discovery of tests cancelled.
- Odnajdywanie testów zostało anulowane.
-
-
-
- Cannot attach the debugger to the default test host with process ID: {0}.
- Nie można dołączyć debugera do domyślnego hosta testowego z identyfikatorem procesu: {0}.
-
-
-
- {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges.
- {0} Odmowa dostępu podczas próby utworzenia folderu „TestResults” w określonej lokalizacji. Widzisz ten wyjątek, ponieważ program vstest.console.exe został uruchomiony z folderu wymagającego dostępu do zapisu. Aby rozwiązać ten problem: uruchom program vstest.console.exe z folderu, w którym masz uprawnienia do zapisu.
-
-
-
- Could not find an available proxy to deque.
- Nie można było znaleźć dostępnego serwera proxy do umieszczenia w kolejce dwukierunkowej.
-
-
-
- Proxy with id {0} is not managed by the current session manager.
- Serwer proxy o identyfikatorze {0} nie jest zarządzany przez bieżącego menedżera sesji.
-
-
-
- Proxy with id {0} is already available and cannot be re-enqueued.
- Serwer proxy o identyfikatorze {0} jest już dostępny i nie można go ponownie umieścić w kolejce.
-
-
-
- No suitable test runtime provider was found for any source in this run.
- Nie znaleziono odpowiedniego dostawcy środowiska uruchomieniowego testu dla żadnego źródła w tym przebiegu.
-
-
-
- The runsettings changed between the time when the test session was established and the time of the current run/discovery request.
- Ustawienia runsettings uległy zmianie między czasem ustanowienia sesji testowej a czasem bieżącego żądania uruchomienia/odnajdywania.
-
-
-
- {0}
- {0}
-
-
-
- Attachments:
- Załączniki:
-
-
-
- No suitable test runtime provider was found:
- Nie znaleziono odpowiedniego dostawcy środowiska uruchomieniowego testu:
-
-
-
- Skipping source:
- Pomijanie źródła:
-
-
-
-
-
+
+
+
+
+
+ Exception occurred while instantiating discoverer : {0}
+ Wystąpił wyjątek podczas tworzenia wystąpienia wykrywacza: {0}
+
+
+
+ Multiple test adapters with the same uri '{0}' were found. Ignoring adapter '{1}'. Please uninstall the conflicting adapter(s) to avoid this warning.
+ Znaleziono wiele adapterów testowych z takim samym identyfikatorem URI „{0}”. Adapter „{1}” zostanie zignorowany. Aby uniknąć tego ostrzeżenia, odinstaluj adaptery powodujące konflikt.
+ {0} is the unique identifier of test adapter. {1} is the name of the test adapter that shares a unique identifier with a previously loaded adapter.
+
+
+ Ignoring the specified duplicate source '{0}'.
+ Określone zduplikowane źródło „{0}” zostanie zignorowane.
+
+
+
+ An exception occurred while test discoverer '{0}' was loading tests. Exception: {1}
+ Wystąpił wyjątek podczas ładowania testów przez wykrywacz testów „{0}”. Wyjątek: {1}
+
+
+
+ An exception occurred while invoking executor '{0}': {1}
+ Wystąpił wyjątek podczas wywoływania modułu wykonywania „{0}”: {1}
+
+
+
+ Could not find file {0}.
+ Nie można odnaleźć pliku {0}.
+
+
+
+ Host debugging is enabled. Please attach debugger to testhost process to continue.
+ Debugowanie hosta zostało włączone. Dołącz debuger do procesu testhost, aby kontynuować.
+ Host, testhost are key words, it should not be localized
+
+
+ Ignoring the test executor corresponding to test discoverer {0} because the discoverer does not have the DefaultExecutorUri attribute . You might need to re-install the test adapter add-in.
+ Moduł wykonywania testów odpowiadający wykrywaczowi testów {0} zostanie zignorowany, ponieważ wykrywacz nie ma atrybutu DefaultExecutorUri. Konieczna może być ponowna instalacja dodatku adaptera testowego.
+
+
+
+ Failed to initialize client proxy: could not connect to test process.
+ Zainicjowanie serwera proxy klienta nie powiodło się: nie można nawiązać połączenia z procesem testowania.
+
+
+
+ This operation is not allowed in the context of a non-debug run.
+ Ta operacja jest niedozwolona w kontekście uruchamiania bez debugowania.
+
+
+
+ Could not find test executor with URI '{0}'. Make sure that the test executor is installed and supports .net runtime version {1}.
+ Nie można odnaleźć modułu wykonywania testów o identyfikatorze URI „{0}”. Upewnij się, że moduł wykonywania testów został zainstalowany i obsługuje środowisko uruchomieniowe platformy .NET w wersji {1}.
+ {0} - Executor uri String {1}- Version - .net Version Eg:-2.0.50727.00
+
+
+ None of the specified source(s) '{0}' is valid. Fix the above errors/warnings and then try again.
+ Wszystkie określone źródła „{0}” są nieprawidłowe. Napraw powyższe błędy/ostrzeżenia i spróbuj ponownie.
+
+
+
+ ,
+ ,
+
+
+
+ No tests matched the filter because it contains one or more properties that are not valid ({0}). Specify filter expression containing valid properties ({1}).
+ Brak testów zgodnych z filtrem, ponieważ zawiera on co najmniej jedną nieprawidłową właściwość ({0}). Określ wyrażenie filtru zawierające prawidłowe właściwości ({1}).
+
+
+
+ Could not find {0}. Make sure that the dotnet is installed on the machine.
+ Nie znaleziono elementu {0}. Upewnij się, że program dotnet jest zainstalowany na maszynie.
+
+
+
+ Testhost process for source(s) '{0}' exited with error: {1}. Please check the diagnostic logs for more information.
+ Zakończono proces hosta testowego dla źródła „{0}” z powodu błędu: {1}. Sprawdź dzienniki diagnostyczne, aby uzyskać więcej informacji.
+ {0} a source, or very rarely list of sources, {1} the output error.
+
+
+ DataCollector debugging is enabled. Please attach debugger to datacollector process to continue.
+ Debugowanie modułu zbierającego dane zostało włączone. Dołącz debuger do procesu datacollector, aby kontynuować.
+
+
+
+ No test is available in {0}. Make sure that test discoverer & executors are registered and platform & framework version settings are appropriate and try again.
+ W elemencie {0} nie są dostępne żadne testy. Upewnij się, że wykrywacze i moduły wykonywania testów są zarejestrowane oraz że ustawienia wersji platformy i struktury są odpowiednie, a następnie spróbuj ponownie.
+
+
+
+ Logging TestHost Diagnostics in file: {0}
+ Rejestrowanie diagnostyki TestHost w pliku: {0}
+
+
+
+ Failed to launch testhost with error: {0}
+ Nie można uruchomić hosta testów. Błąd: {0}
+
+
+
+ ExecutionThreadApartmentState option not supported for framework: {0}.
+ Opcja ExecutionThreadApartmentState nie jest obsługiwana dla platformy: {0}.
+
+
+
+ You are using an older version of Microsoft.NET.Test.Sdk. Kindly move to a version equal or greater than 15.3.0.
+ Używamy starszej wersji zestawu Microsoft.NET.Test.Sdk. Przejdź na wersję 15.3.0 lub nowszą.
+
+
+
+ Could not find extensions: {0}
+ Nie można znaleźć rozszerzeń: {0}
+
+
+
+ Adapter lookup is being changed, please follow https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap for more details.
+ Wyszukiwanie adaptera jest zmieniane. Aby uzyskać więcej szczegółów, przejdź do strony https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap.
+
+
+
+ No test matches the given testcase filter `{0}` in {1}
+ Żaden test nie jest zgodny z podanym filtrem przypadku testowego „{0}” w elemencie {1}
+
+
+
+ Discovery of tests cancelled.
+ Odnajdywanie testów zostało anulowane.
+
+
+
+ Cannot attach the debugger to the default test host with process ID: {0}.
+ Nie można dołączyć debugera do domyślnego hosta testowego z identyfikatorem procesu: {0}.
+
+
+
+ {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges.
+ {0} Odmowa dostępu podczas próby utworzenia folderu „TestResults” w określonej lokalizacji. Widzisz ten wyjątek, ponieważ program vstest.console.exe został uruchomiony z folderu wymagającego dostępu do zapisu. Aby rozwiązać ten problem: uruchom program vstest.console.exe z folderu, w którym masz uprawnienia do zapisu.
+
+
+
+ Could not find an available proxy to deque.
+ Nie można było znaleźć dostępnego serwera proxy do umieszczenia w kolejce dwukierunkowej.
+
+
+
+ Proxy with id {0} is not managed by the current session manager.
+ Serwer proxy o identyfikatorze {0} nie jest zarządzany przez bieżącego menedżera sesji.
+
+
+
+ Proxy with id {0} is already available and cannot be re-enqueued.
+ Serwer proxy o identyfikatorze {0} jest już dostępny i nie można go ponownie umieścić w kolejce.
+
+
+
+ No suitable test runtime provider was found for any source in this run.
+ Nie znaleziono odpowiedniego dostawcy środowiska uruchomieniowego testu dla żadnego źródła w tym przebiegu.
+
+
+
+ The runsettings changed between the time when the test session was established and the time of the current run/discovery request.
+ Ustawienia runsettings uległy zmianie między czasem ustanowienia sesji testowej a czasem bieżącego żądania uruchomienia/odnajdywania.
+
+
+
+ {0}
+ {0}
+
+
+
+ Attachments:
+ Załączniki:
+
+
+
+ No suitable test runtime provider was found:
+ Nie znaleziono odpowiedniego dostawcy środowiska uruchomieniowego testu:
+
+
+
+ Skipping source:
+ Pomijanie źródła:
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.pt-BR.xlf b/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.pt-BR.xlf
index 0579d2241b..248a5a7248 100644
--- a/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.pt-BR.xlf
+++ b/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.pt-BR.xlf
@@ -1,192 +1,192 @@
-
-
-
-
-
- Exception occurred while instantiating discoverer : {0}
- Ocorreu uma exceção ao criar uma instância do discoverer: {0}
-
-
-
- Multiple test adapters with the same uri '{0}' were found. Ignoring adapter '{1}'. Please uninstall the conflicting adapter(s) to avoid this warning.
- Foram encontrados vários adaptadores de teste com o mesmo URI '{0}'. Ignorando o adaptador '{1}'. Desinstale os adaptadores conflitantes para evitar este aviso.
- {0} is the unique identifier of test adapter. {1} is the name of the test adapter that shares a unique identifier with a previously loaded adapter.
-
-
- Ignoring the specified duplicate source '{0}'.
- Ignorando a fonte duplicada especificada '{0}'.
-
-
-
- An exception occurred while test discoverer '{0}' was loading tests. Exception: {1}
- Ocorreu uma exceção enquanto o discoverer de testes '{0}' estava carregando testes. Exceção: {1}
-
-
-
- An exception occurred while invoking executor '{0}': {1}
- Ocorreu uma exceção ao chamar o executor '{0}': {1}
-
-
-
- Could not find file {0}.
- Não foi possível localizar o arquivo {0}.
-
-
-
- Host debugging is enabled. Please attach debugger to testhost process to continue.
- O host de depuração está habilitado. Anexe o depurador ao processo de testhost para continuar.
- Host, testhost are key words, it should not be localized
-
-
- Ignoring the test executor corresponding to test discoverer {0} because the discoverer does not have the DefaultExecutorUri attribute . You might need to re-install the test adapter add-in.
- Ignorando o executor de teste correspondente ao discoverer de teste {0} porque o discoverer não tem o atributo DefaultExecutorUri. Talvez seja necessário instalar novamente o suplemento do adaptador de teste.
-
-
-
- Failed to initialize client proxy: could not connect to test process.
- Falha ao inicializar o proxy do cliente: não foi possível se conectar ao processo de teste.
-
-
-
- This operation is not allowed in the context of a non-debug run.
- Esta operação não é permitida no contexto de uma execução sem depuração.
-
-
-
- Could not find test executor with URI '{0}'. Make sure that the test executor is installed and supports .net runtime version {1}.
- Não foi possível localizar o executor de teste com o URI '{0}'. Verifique se o executor de teste está instalado e oferece suporte à versão de runtime do .net {1}.
- {0} - Executor uri String {1}- Version - .net Version Eg:-2.0.50727.00
-
-
- None of the specified source(s) '{0}' is valid. Fix the above errors/warnings and then try again.
- Nenhuma das fontes especificadas '{0}' é válida. Corrija os erros/avisos acima e tente novamente.
-
-
-
- ,
- ,
-
-
-
- No tests matched the filter because it contains one or more properties that are not valid ({0}). Specify filter expression containing valid properties ({1}).
- Nenhum teste correspondeu ao filtro porque ele contém uma ou mais propriedades que não são válidas ({0}). Especifique a expressão de filtro contendo as propriedades válidas ({1}).
-
-
-
- Could not find {0}. Make sure that the dotnet is installed on the machine.
- Não foi possível localizar {0}. Certifique-se de que o dotnet esteja instalado no computador.
-
-
-
- Testhost process for source(s) '{0}' exited with error: {1}. Please check the diagnostic logs for more information.
- Processo testhost para fonte(s) '{0}' encerrado com erro: {1}. Verifique os logs de diagnóstico para mais informações.
- {0} a source, or very rarely list of sources, {1} the output error.
-
-
- DataCollector debugging is enabled. Please attach debugger to datacollector process to continue.
- A depuração do DataCollector está habilitada. Anexe o depurador ao processo datacollector para continuar.
-
-
-
- No test is available in {0}. Make sure that test discoverer & executors are registered and platform & framework version settings are appropriate and try again.
- Não há nenhum teste disponível em {0}. Verifique se o detector e os executores de teste estão registrados e se as configurações de versão da estrutura da plataforma & são apropriadas e tente novamente.
-
-
-
- Logging TestHost Diagnostics in file: {0}
- Registro em log do diagnóstico TestHost no arquivo: {0}
-
-
-
- Failed to launch testhost with error: {0}
- Falha ao iniciar o host de teste com o erro: {0}
-
-
-
- ExecutionThreadApartmentState option not supported for framework: {0}.
- A opção ExecutionThreadApartmentState não tem suporte para a estrutura: {0}.
-
-
-
- You are using an older version of Microsoft.NET.Test.Sdk. Kindly move to a version equal or greater than 15.3.0.
- Você está usando uma versão mais antiga do Microsoft.NET.Test.Sdk. Mude para uma versão igual ou maior que 15.3.0.
-
-
-
- Could not find extensions: {0}
- Não foi possível encontrar as extensões: {0}
-
-
-
- Adapter lookup is being changed, please follow https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap for more details.
- A pesquisa do adaptador está sendo alterada, acesse https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap para obter mais detalhes.
-
-
-
- No test matches the given testcase filter `{0}` in {1}
- Nenhum teste corresponde ao filtro de testcase `{0}` determinado no {1}
-
-
-
- Discovery of tests cancelled.
- Descoberta de testes cancelada.
-
-
-
- Cannot attach the debugger to the default test host with process ID: {0}.
- Não é possível anexar o depurador ao host de teste padrão com a ID de processo: {0}.
-
-
-
- {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges.
- {0} Acesso negado ao tentar criar a pasta "TestResults" no local mencionado. Você está recebendo esta exceção porque está executando o vstest.console.exe em uma pasta que requer acesso para gravação. Para resolver o problema: execute vstest.console.exe em uma pasta na qual você tenha privilégios de gravação.
-
-
-
- Could not find an available proxy to deque.
- Não foi possível encontrar um proxy disponível para deque.
-
-
-
- Proxy with id {0} is not managed by the current session manager.
- O proxy com a ID {0} não é gerenciado pelo gerenciador de sessão atual.
-
-
-
- Proxy with id {0} is already available and cannot be re-enqueued.
- O proxy com a ID {0} já está disponível e não pode ser enfileirado novamente.
-
-
-
- No suitable test runtime provider was found for any source in this run.
- Nenhum provedor de runtime de teste encontrado para esta execução.
-
-
-
- The runsettings changed between the time when the test session was established and the time of the current run/discovery request.
- As runsettings foram alteradas entre a hora em que a sessão de teste foi estabelecida e a hora da solicitação de execução/descoberta atual.
-
-
-
- {0}
- {0}
-
-
-
- Attachments:
- Anexos:
-
-
-
- No suitable test runtime provider was found:
- Nenhum provedor de runtime de teste encontrado:
-
-
-
- Skipping source:
- Ignorando origem:
-
-
-
-
-
+
+
+
+
+
+ Exception occurred while instantiating discoverer : {0}
+ Ocorreu uma exceção ao criar uma instância do discoverer: {0}
+
+
+
+ Multiple test adapters with the same uri '{0}' were found. Ignoring adapter '{1}'. Please uninstall the conflicting adapter(s) to avoid this warning.
+ Foram encontrados vários adaptadores de teste com o mesmo URI '{0}'. Ignorando o adaptador '{1}'. Desinstale os adaptadores conflitantes para evitar este aviso.
+ {0} is the unique identifier of test adapter. {1} is the name of the test adapter that shares a unique identifier with a previously loaded adapter.
+
+
+ Ignoring the specified duplicate source '{0}'.
+ Ignorando a fonte duplicada especificada '{0}'.
+
+
+
+ An exception occurred while test discoverer '{0}' was loading tests. Exception: {1}
+ Ocorreu uma exceção enquanto o discoverer de testes '{0}' estava carregando testes. Exceção: {1}
+
+
+
+ An exception occurred while invoking executor '{0}': {1}
+ Ocorreu uma exceção ao chamar o executor '{0}': {1}
+
+
+
+ Could not find file {0}.
+ Não foi possível localizar o arquivo {0}.
+
+
+
+ Host debugging is enabled. Please attach debugger to testhost process to continue.
+ O host de depuração está habilitado. Anexe o depurador ao processo de testhost para continuar.
+ Host, testhost are key words, it should not be localized
+
+
+ Ignoring the test executor corresponding to test discoverer {0} because the discoverer does not have the DefaultExecutorUri attribute . You might need to re-install the test adapter add-in.
+ Ignorando o executor de teste correspondente ao discoverer de teste {0} porque o discoverer não tem o atributo DefaultExecutorUri. Talvez seja necessário instalar novamente o suplemento do adaptador de teste.
+
+
+
+ Failed to initialize client proxy: could not connect to test process.
+ Falha ao inicializar o proxy do cliente: não foi possível se conectar ao processo de teste.
+
+
+
+ This operation is not allowed in the context of a non-debug run.
+ Esta operação não é permitida no contexto de uma execução sem depuração.
+
+
+
+ Could not find test executor with URI '{0}'. Make sure that the test executor is installed and supports .net runtime version {1}.
+ Não foi possível localizar o executor de teste com o URI '{0}'. Verifique se o executor de teste está instalado e oferece suporte à versão de runtime do .net {1}.
+ {0} - Executor uri String {1}- Version - .net Version Eg:-2.0.50727.00
+
+
+ None of the specified source(s) '{0}' is valid. Fix the above errors/warnings and then try again.
+ Nenhuma das fontes especificadas '{0}' é válida. Corrija os erros/avisos acima e tente novamente.
+
+
+
+ ,
+ ,
+
+
+
+ No tests matched the filter because it contains one or more properties that are not valid ({0}). Specify filter expression containing valid properties ({1}).
+ Nenhum teste correspondeu ao filtro porque ele contém uma ou mais propriedades que não são válidas ({0}). Especifique a expressão de filtro contendo as propriedades válidas ({1}).
+
+
+
+ Could not find {0}. Make sure that the dotnet is installed on the machine.
+ Não foi possível localizar {0}. Certifique-se de que o dotnet esteja instalado no computador.
+
+
+
+ Testhost process for source(s) '{0}' exited with error: {1}. Please check the diagnostic logs for more information.
+ Processo testhost para fonte(s) '{0}' encerrado com erro: {1}. Verifique os logs de diagnóstico para mais informações.
+ {0} a source, or very rarely list of sources, {1} the output error.
+
+
+ DataCollector debugging is enabled. Please attach debugger to datacollector process to continue.
+ A depuração do DataCollector está habilitada. Anexe o depurador ao processo datacollector para continuar.
+
+
+
+ No test is available in {0}. Make sure that test discoverer & executors are registered and platform & framework version settings are appropriate and try again.
+ Não há nenhum teste disponível em {0}. Verifique se o detector e os executores de teste estão registrados e se as configurações de versão da estrutura da plataforma & são apropriadas e tente novamente.
+
+
+
+ Logging TestHost Diagnostics in file: {0}
+ Registro em log do diagnóstico TestHost no arquivo: {0}
+
+
+
+ Failed to launch testhost with error: {0}
+ Falha ao iniciar o host de teste com o erro: {0}
+
+
+
+ ExecutionThreadApartmentState option not supported for framework: {0}.
+ A opção ExecutionThreadApartmentState não tem suporte para a estrutura: {0}.
+
+
+
+ You are using an older version of Microsoft.NET.Test.Sdk. Kindly move to a version equal or greater than 15.3.0.
+ Você está usando uma versão mais antiga do Microsoft.NET.Test.Sdk. Mude para uma versão igual ou maior que 15.3.0.
+
+
+
+ Could not find extensions: {0}
+ Não foi possível encontrar as extensões: {0}
+
+
+
+ Adapter lookup is being changed, please follow https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap for more details.
+ A pesquisa do adaptador está sendo alterada, acesse https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap para obter mais detalhes.
+
+
+
+ No test matches the given testcase filter `{0}` in {1}
+ Nenhum teste corresponde ao filtro de testcase `{0}` determinado no {1}
+
+
+
+ Discovery of tests cancelled.
+ Descoberta de testes cancelada.
+
+
+
+ Cannot attach the debugger to the default test host with process ID: {0}.
+ Não é possível anexar o depurador ao host de teste padrão com a ID de processo: {0}.
+
+
+
+ {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges.
+ {0} Acesso negado ao tentar criar a pasta "TestResults" no local mencionado. Você está recebendo esta exceção porque está executando o vstest.console.exe em uma pasta que requer acesso para gravação. Para resolver o problema: execute vstest.console.exe em uma pasta na qual você tenha privilégios de gravação.
+
+
+
+ Could not find an available proxy to deque.
+ Não foi possível encontrar um proxy disponível para deque.
+
+
+
+ Proxy with id {0} is not managed by the current session manager.
+ O proxy com a ID {0} não é gerenciado pelo gerenciador de sessão atual.
+
+
+
+ Proxy with id {0} is already available and cannot be re-enqueued.
+ O proxy com a ID {0} já está disponível e não pode ser enfileirado novamente.
+
+
+
+ No suitable test runtime provider was found for any source in this run.
+ Nenhum provedor de runtime de teste encontrado para esta execução.
+
+
+
+ The runsettings changed between the time when the test session was established and the time of the current run/discovery request.
+ As runsettings foram alteradas entre a hora em que a sessão de teste foi estabelecida e a hora da solicitação de execução/descoberta atual.
+
+
+
+ {0}
+ {0}
+
+
+
+ Attachments:
+ Anexos:
+
+
+
+ No suitable test runtime provider was found:
+ Nenhum provedor de runtime de teste encontrado:
+
+
+
+ Skipping source:
+ Ignorando origem:
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.ru.xlf b/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.ru.xlf
index 4739308549..3392873c33 100644
--- a/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.ru.xlf
+++ b/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.ru.xlf
@@ -1,192 +1,192 @@
-
-
-
-
-
- Exception occurred while instantiating discoverer : {0}
- При создании экземпляра средства обнаружения возникло исключение: {0}
-
-
-
- Multiple test adapters with the same uri '{0}' were found. Ignoring adapter '{1}'. Please uninstall the conflicting adapter(s) to avoid this warning.
- Найдено несколько адаптеров тестов с одинаковым URI "{0}". Адаптер "{1}" пропускается. Чтобы избежать этого предупреждения, удалите все конфликтующие адаптеры.
- {0} is the unique identifier of test adapter. {1} is the name of the test adapter that shares a unique identifier with a previously loaded adapter.
-
-
- Ignoring the specified duplicate source '{0}'.
- Указанный повторяющийся источник "{0}" игнорируется.
-
-
-
- An exception occurred while test discoverer '{0}' was loading tests. Exception: {1}
- При загрузке тестов средством обнаружения тестов "{0}" возникло исключение. Исключение: {1}
-
-
-
- An exception occurred while invoking executor '{0}': {1}
- При вызове исполнителя "{0}" возникло исключение: {1}
-
-
-
- Could not find file {0}.
- Не удалось найти файл {0}.
-
-
-
- Host debugging is enabled. Please attach debugger to testhost process to continue.
- Включена отладка узла. Для продолжения подключите отладчик к процессу testhost.
- Host, testhost are key words, it should not be localized
-
-
- Ignoring the test executor corresponding to test discoverer {0} because the discoverer does not have the DefaultExecutorUri attribute . You might need to re-install the test adapter add-in.
- Исполнитель теста, соответствующий средству обнаружения тестов {0}, пропускается, так как у средства обнаружения нет атрибута DefaultExecutorUri. Возможно, необходимо переустановить надстройку адаптера теста.
-
-
-
- Failed to initialize client proxy: could not connect to test process.
- Не удалось инициализировать прокси клиента: не удалось подключиться к процессу теста.
-
-
-
- This operation is not allowed in the context of a non-debug run.
- Эта операция запрещена в контексте неотладочного запуска.
-
-
-
- Could not find test executor with URI '{0}'. Make sure that the test executor is installed and supports .net runtime version {1}.
- Не удалось найти исполнитель тестов с URI "{0}". Убедитесь, что исполнитель тестов установлен и поддерживает версию среды выполнения .NET {1}.
- {0} - Executor uri String {1}- Version - .net Version Eg:-2.0.50727.00
-
-
- None of the specified source(s) '{0}' is valid. Fix the above errors/warnings and then try again.
- Ни один из указанных источников "{0}" не является допустимым. Исправьте эти ошибки и предупреждения и повторите попытку.
-
-
-
- ,
- ,
-
-
-
- No tests matched the filter because it contains one or more properties that are not valid ({0}). Specify filter expression containing valid properties ({1}).
- Соответствующих фильтру тестов нет, так как фильтр содержит одно недопустимое свойство или несколько ({0}). Укажите выражение фильтра, содержащее допустимые свойства ({1}).
-
-
-
- Could not find {0}. Make sure that the dotnet is installed on the machine.
- Не удалось найти {0}. Убедитесь, что dotnet установлен на компьютере.
-
-
-
- Testhost process for source(s) '{0}' exited with error: {1}. Please check the diagnostic logs for more information.
- Процесс testhost для источника (-ов) {0} завершился с ошибкой. {1}Дополнительные сведения см. в журналах диагностики.
- {0} a source, or very rarely list of sources, {1} the output error.
-
-
- DataCollector debugging is enabled. Please attach debugger to datacollector process to continue.
- Включена отладка datacollector. Для продолжения подключите отладчик к процессу datacollector.
-
-
-
- No test is available in {0}. Make sure that test discoverer & executors are registered and platform & framework version settings are appropriate and try again.
- В {0} нет доступных тестов. Убедитесь, что средства обнаружения и выполнения тестов зарегистрированы, а также проверьте правильность параметров платформы и версии платформы, после чего повторите попытку.
-
-
-
- Logging TestHost Diagnostics in file: {0}
- Ведение журналов диагностики TestHost в файле: {0}
-
-
-
- Failed to launch testhost with error: {0}
- Не удалось запустить хост для тестов с ошибкой: {0}
-
-
-
- ExecutionThreadApartmentState option not supported for framework: {0}.
- Параметр ExecutionThreadApartmentState не поддерживается для платформы: {0}.
-
-
-
- You are using an older version of Microsoft.NET.Test.Sdk. Kindly move to a version equal or greater than 15.3.0.
- Вы используете более старую версию Microsoft.NET.Test.Sdk. Перейдите на версию 15.3.0 или более позднюю.
-
-
-
- Could not find extensions: {0}
- Не удалось найти расширения: {0}
-
-
-
- Adapter lookup is being changed, please follow https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap for more details.
- Изменяется поиск адаптеров. Дополнительные сведения: https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap.
-
-
-
- No test matches the given testcase filter `{0}` in {1}
- Нет тестов, соответствующих указанному фильтру тестовых случаев "{0}" в {1}
-
-
-
- Discovery of tests cancelled.
- Обнаружение тестов отменено.
-
-
-
- Cannot attach the debugger to the default test host with process ID: {0}.
- Не удается подключить отладчик к узлу тестирования по умолчанию с идентификатором процесса {0}.
-
-
-
- {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges.
- {0} Отказано в доступе при попытке создания папки "TestResults" в указанном расположении. Это исключение возникло, так как вы запускаете файл vstest.console.exe из папки, для которой требуется доступ на запись. Чтобы устранить эту проблему, запустите vstest.console.exe из папки, для которой у вас есть разрешения на запись.
-
-
-
- Could not find an available proxy to deque.
- Не удалось найти доступный прокси-сервер для двусторонней очереди.
-
-
-
- Proxy with id {0} is not managed by the current session manager.
- Прокси-сервер с идентификатором {0} не управляется текущим диспетчером сеансов.
-
-
-
- Proxy with id {0} is already available and cannot be re-enqueued.
- Прокси-сервер с идентификатором {0} уже доступен и не может быть повторно поставлен в очередь.
-
-
-
- No suitable test runtime provider was found for any source in this run.
- Не найден подходящий поставщик среды выполнения теста для источников в этом запуске.
-
-
-
- The runsettings changed between the time when the test session was established and the time of the current run/discovery request.
- Параметры runsettings изменились между временем начала тестового сеанса и временем текущего запроса на запуск или обнаружение.
-
-
-
- {0}
- {0}
-
-
-
- Attachments:
- Вложения:
-
-
-
- No suitable test runtime provider was found:
- Не найден подходящий поставщик среды выполнения теста:
-
-
-
- Skipping source:
- Пропуск источника:
-
-
-
-
-
+
+
+
+
+
+ Exception occurred while instantiating discoverer : {0}
+ При создании экземпляра средства обнаружения возникло исключение: {0}
+
+
+
+ Multiple test adapters with the same uri '{0}' were found. Ignoring adapter '{1}'. Please uninstall the conflicting adapter(s) to avoid this warning.
+ Найдено несколько адаптеров тестов с одинаковым URI "{0}". Адаптер "{1}" пропускается. Чтобы избежать этого предупреждения, удалите все конфликтующие адаптеры.
+ {0} is the unique identifier of test adapter. {1} is the name of the test adapter that shares a unique identifier with a previously loaded adapter.
+
+
+ Ignoring the specified duplicate source '{0}'.
+ Указанный повторяющийся источник "{0}" игнорируется.
+
+
+
+ An exception occurred while test discoverer '{0}' was loading tests. Exception: {1}
+ При загрузке тестов средством обнаружения тестов "{0}" возникло исключение. Исключение: {1}
+
+
+
+ An exception occurred while invoking executor '{0}': {1}
+ При вызове исполнителя "{0}" возникло исключение: {1}
+
+
+
+ Could not find file {0}.
+ Не удалось найти файл {0}.
+
+
+
+ Host debugging is enabled. Please attach debugger to testhost process to continue.
+ Включена отладка узла. Для продолжения подключите отладчик к процессу testhost.
+ Host, testhost are key words, it should not be localized
+
+
+ Ignoring the test executor corresponding to test discoverer {0} because the discoverer does not have the DefaultExecutorUri attribute . You might need to re-install the test adapter add-in.
+ Исполнитель теста, соответствующий средству обнаружения тестов {0}, пропускается, так как у средства обнаружения нет атрибута DefaultExecutorUri. Возможно, необходимо переустановить надстройку адаптера теста.
+
+
+
+ Failed to initialize client proxy: could not connect to test process.
+ Не удалось инициализировать прокси клиента: не удалось подключиться к процессу теста.
+
+
+
+ This operation is not allowed in the context of a non-debug run.
+ Эта операция запрещена в контексте неотладочного запуска.
+
+
+
+ Could not find test executor with URI '{0}'. Make sure that the test executor is installed and supports .net runtime version {1}.
+ Не удалось найти исполнитель тестов с URI "{0}". Убедитесь, что исполнитель тестов установлен и поддерживает версию среды выполнения .NET {1}.
+ {0} - Executor uri String {1}- Version - .net Version Eg:-2.0.50727.00
+
+
+ None of the specified source(s) '{0}' is valid. Fix the above errors/warnings and then try again.
+ Ни один из указанных источников "{0}" не является допустимым. Исправьте эти ошибки и предупреждения и повторите попытку.
+
+
+
+ ,
+ ,
+
+
+
+ No tests matched the filter because it contains one or more properties that are not valid ({0}). Specify filter expression containing valid properties ({1}).
+ Соответствующих фильтру тестов нет, так как фильтр содержит одно недопустимое свойство или несколько ({0}). Укажите выражение фильтра, содержащее допустимые свойства ({1}).
+
+
+
+ Could not find {0}. Make sure that the dotnet is installed on the machine.
+ Не удалось найти {0}. Убедитесь, что dotnet установлен на компьютере.
+
+
+
+ Testhost process for source(s) '{0}' exited with error: {1}. Please check the diagnostic logs for more information.
+ Процесс testhost для источника (-ов) {0} завершился с ошибкой. {1}Дополнительные сведения см. в журналах диагностики.
+ {0} a source, or very rarely list of sources, {1} the output error.
+
+
+ DataCollector debugging is enabled. Please attach debugger to datacollector process to continue.
+ Включена отладка datacollector. Для продолжения подключите отладчик к процессу datacollector.
+
+
+
+ No test is available in {0}. Make sure that test discoverer & executors are registered and platform & framework version settings are appropriate and try again.
+ В {0} нет доступных тестов. Убедитесь, что средства обнаружения и выполнения тестов зарегистрированы, а также проверьте правильность параметров платформы и версии платформы, после чего повторите попытку.
+
+
+
+ Logging TestHost Diagnostics in file: {0}
+ Ведение журналов диагностики TestHost в файле: {0}
+
+
+
+ Failed to launch testhost with error: {0}
+ Не удалось запустить хост для тестов с ошибкой: {0}
+
+
+
+ ExecutionThreadApartmentState option not supported for framework: {0}.
+ Параметр ExecutionThreadApartmentState не поддерживается для платформы: {0}.
+
+
+
+ You are using an older version of Microsoft.NET.Test.Sdk. Kindly move to a version equal or greater than 15.3.0.
+ Вы используете более старую версию Microsoft.NET.Test.Sdk. Перейдите на версию 15.3.0 или более позднюю.
+
+
+
+ Could not find extensions: {0}
+ Не удалось найти расширения: {0}
+
+
+
+ Adapter lookup is being changed, please follow https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap for more details.
+ Изменяется поиск адаптеров. Дополнительные сведения: https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap.
+
+
+
+ No test matches the given testcase filter `{0}` in {1}
+ Нет тестов, соответствующих указанному фильтру тестовых случаев "{0}" в {1}
+
+
+
+ Discovery of tests cancelled.
+ Обнаружение тестов отменено.
+
+
+
+ Cannot attach the debugger to the default test host with process ID: {0}.
+ Не удается подключить отладчик к узлу тестирования по умолчанию с идентификатором процесса {0}.
+
+
+
+ {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges.
+ {0} Отказано в доступе при попытке создания папки "TestResults" в указанном расположении. Это исключение возникло, так как вы запускаете файл vstest.console.exe из папки, для которой требуется доступ на запись. Чтобы устранить эту проблему, запустите vstest.console.exe из папки, для которой у вас есть разрешения на запись.
+
+
+
+ Could not find an available proxy to deque.
+ Не удалось найти доступный прокси-сервер для двусторонней очереди.
+
+
+
+ Proxy with id {0} is not managed by the current session manager.
+ Прокси-сервер с идентификатором {0} не управляется текущим диспетчером сеансов.
+
+
+
+ Proxy with id {0} is already available and cannot be re-enqueued.
+ Прокси-сервер с идентификатором {0} уже доступен и не может быть повторно поставлен в очередь.
+
+
+
+ No suitable test runtime provider was found for any source in this run.
+ Не найден подходящий поставщик среды выполнения теста для источников в этом запуске.
+
+
+
+ The runsettings changed between the time when the test session was established and the time of the current run/discovery request.
+ Параметры runsettings изменились между временем начала тестового сеанса и временем текущего запроса на запуск или обнаружение.
+
+
+
+ {0}
+ {0}
+
+
+
+ Attachments:
+ Вложения:
+
+
+
+ No suitable test runtime provider was found:
+ Не найден подходящий поставщик среды выполнения теста:
+
+
+
+ Skipping source:
+ Пропуск источника:
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.tr.xlf b/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.tr.xlf
index ff2bda137e..4f05cc5c29 100644
--- a/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.tr.xlf
+++ b/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.tr.xlf
@@ -1,192 +1,192 @@
-
-
-
-
-
- Exception occurred while instantiating discoverer : {0}
- Bulucu örneği oluşturulurken özel durum oluştu: {0}
-
-
-
- Multiple test adapters with the same uri '{0}' were found. Ignoring adapter '{1}'. Please uninstall the conflicting adapter(s) to avoid this warning.
- Aynı '{0}' URI’sine sahip birden fazla test bağdaştırıcısı bulundu. '{1}' bağdaştırıcısı yoksayılıyor. Bu uyarıyı önlemek için lütfen çakışan bağdaştırıcıları kaldırın.
- {0} is the unique identifier of test adapter. {1} is the name of the test adapter that shares a unique identifier with a previously loaded adapter.
-
-
- Ignoring the specified duplicate source '{0}'.
- Belirtilen '{0}' yinelenen kaynağı yoksayılıyor.
-
-
-
- An exception occurred while test discoverer '{0}' was loading tests. Exception: {1}
- '{0}' test bulucusu testleri yüklerken bir özel durum oluştu. Özel durum: {1}
-
-
-
- An exception occurred while invoking executor '{0}': {1}
- '{0}' yürütücüsü çağrılırken bir özel durum oluştu: {1}
-
-
-
- Could not find file {0}.
- {0} dosyası bulunamadı.
-
-
-
- Host debugging is enabled. Please attach debugger to testhost process to continue.
- Konak hata ayıklaması etkin. Devam etmek için lütfen hata ayıklayıcısını testhost işlemine ekleyin.
- Host, testhost are key words, it should not be localized
-
-
- Ignoring the test executor corresponding to test discoverer {0} because the discoverer does not have the DefaultExecutorUri attribute . You might need to re-install the test adapter add-in.
- Bulucu DefaultExecutorUri özniteliğine sahip olmadığından {0} test bulucusuna karşılık gelen test yürütücüsü yoksayılıyor. Test bağdaştırıcısı eklentisini yeniden yüklemeniz gerekebilir.
-
-
-
- Failed to initialize client proxy: could not connect to test process.
- İstemci ara sunucusu başlatılamadı: Test işlemine bağlanılamadı.
-
-
-
- This operation is not allowed in the context of a non-debug run.
- Bu işlem hata ayıklama dışındaki bir çalıştırmanın bağlamında yapılamaz.
-
-
-
- Could not find test executor with URI '{0}'. Make sure that the test executor is installed and supports .net runtime version {1}.
- URI’si '{0}' olan test yürütücüsü bulunamadı. Test yürütücüsünün yüklendiğinden ve .NET çalışma zamanı {1} sürümünü desteklediğinden emin olun.
- {0} - Executor uri String {1}- Version - .net Version Eg:-2.0.50727.00
-
-
- None of the specified source(s) '{0}' is valid. Fix the above errors/warnings and then try again.
- Belirtilen '{0}' kaynaklarının hiçbiri geçerli değil. Yukarıdaki hataları/uyarıları düzeltin ve yeniden deneyin.
-
-
-
- ,
- ,
-
-
-
- No tests matched the filter because it contains one or more properties that are not valid ({0}). Specify filter expression containing valid properties ({1}).
- Geçerli olmayan bir veya daha fazla özellik içerdiğinden filtre ile eşleşen test yok ({0}). Geçerli değerleri ({1}) içeren bir filtre ifadesi belirtin.
-
-
-
- Could not find {0}. Make sure that the dotnet is installed on the machine.
- {0} bulunamadı. Makinede dotnet’in yüklü olduğundan emin olun.
-
-
-
- Testhost process for source(s) '{0}' exited with error: {1}. Please check the diagnostic logs for more information.
- '{0}' kaynağı için testhost işleminden şu hatayla çıkıldı: {1}. Daha fazla bilgi edinmek için lütfen tanılama günlüklerini denetleyin.
- {0} a source, or very rarely list of sources, {1} the output error.
-
-
- DataCollector debugging is enabled. Please attach debugger to datacollector process to continue.
- DataCollector hata ayıklaması etkin. Devam etmek için lütfen hata ayıklayıcısını datacollector işlemine ekleyin.
-
-
-
- No test is available in {0}. Make sure that test discoverer & executors are registered and platform & framework version settings are appropriate and try again.
- {0} içinde hiç test yok. Test bulucuları ile yürütücülerinin kayıtlı olduğundan ve platform ile çerçeve sürümü ayarlarının uygun olduğundan emin olun ve yeniden deneyin.
-
-
-
- Logging TestHost Diagnostics in file: {0}
- TestHost Tanılamaları şu dosyadaki günlüğe kaydediliyor: {0}
-
-
-
- Failed to launch testhost with error: {0}
- Testhost başlatılamadı. Şu hata alındı: {0}
-
-
-
- ExecutionThreadApartmentState option not supported for framework: {0}.
- ExecutionThreadApartmentState seçeneği {0} çerçevesi için desteklenmiyor.
-
-
-
- You are using an older version of Microsoft.NET.Test.Sdk. Kindly move to a version equal or greater than 15.3.0.
- Eski bir Microsoft.NET.Test.Sdk sürümü kullanıyorsunuz. Lütfen 15.3.0 veya daha yeni bir sürüme geçin.
-
-
-
- Could not find extensions: {0}
- Dosya uzantıları bulunamadı: {0}
-
-
-
- Adapter lookup is being changed, please follow https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap for more details.
- Bağdaştırıcı arama değiştiriliyor. Ayrıntılar için lütfen https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap bağlantısını takip edin.
-
-
-
- No test matches the given testcase filter `{0}` in {1}
- {1} içinde sunulan test çalışması filtresi `{0}` ile eşleşen test yok
-
-
-
- Discovery of tests cancelled.
- Test bulma iptal edildi.
-
-
-
- Cannot attach the debugger to the default test host with process ID: {0}.
- Hata ayıklayıcı, {0} işlem kimliğine sahip varsayılan test ana bilgisayarına eklenemiyor.
-
-
-
- {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges.
- {0} Belirtilen konumda "TestResults" klasörü oluşturulmaya çalışılırken erişim engellendi. Yazma erişimi gerektiren bir klasörden vstest.console.exe çalıştırdığınız için bu özel durumu aldınız. Sorunu çözmek için lütfen yazma ayrıcalıklarına sahip olduğunuz bir klasörden vstest.console.exe dosyasını çalıştırın.
-
-
-
- Could not find an available proxy to deque.
- İki uçtan erişimli kuyruğa yönelik kullanılabilir ara sunucu bulunamadı.
-
-
-
- Proxy with id {0} is not managed by the current session manager.
- {0} kimliğine sahip ara sunucu, geçerli oturum yöneticisi tarafından yönetilmiyor.
-
-
-
- Proxy with id {0} is already available and cannot be re-enqueued.
- {0} kimliğine sahip ara sunucu zaten var ve yeniden kuyruğa alınamaz.
-
-
-
- No suitable test runtime provider was found for any source in this run.
- Bu çalıştırmadaki hiçbir kaynak için uygun bir test çalışma zamanı sağlayıcısı bulunamadı.
-
-
-
- The runsettings changed between the time when the test session was established and the time of the current run/discovery request.
- runsettings, test oturumunun kurulduğu zamanla mevcut çalıştırma/keşif isteği zamanı arasında değişti.
-
-
-
- {0}
- {0}
-
-
-
- Attachments:
- Ekler:
-
-
-
- No suitable test runtime provider was found:
- Uygun bir test çalışma zamanı sağlayıcısı bulunamadı:
-
-
-
- Skipping source:
- Kaynak atlanıyor:
-
-
-
-
-
+
+
+
+
+
+ Exception occurred while instantiating discoverer : {0}
+ Bulucu örneği oluşturulurken özel durum oluştu: {0}
+
+
+
+ Multiple test adapters with the same uri '{0}' were found. Ignoring adapter '{1}'. Please uninstall the conflicting adapter(s) to avoid this warning.
+ Aynı '{0}' URI’sine sahip birden fazla test bağdaştırıcısı bulundu. '{1}' bağdaştırıcısı yoksayılıyor. Bu uyarıyı önlemek için lütfen çakışan bağdaştırıcıları kaldırın.
+ {0} is the unique identifier of test adapter. {1} is the name of the test adapter that shares a unique identifier with a previously loaded adapter.
+
+
+ Ignoring the specified duplicate source '{0}'.
+ Belirtilen '{0}' yinelenen kaynağı yoksayılıyor.
+
+
+
+ An exception occurred while test discoverer '{0}' was loading tests. Exception: {1}
+ '{0}' test bulucusu testleri yüklerken bir özel durum oluştu. Özel durum: {1}
+
+
+
+ An exception occurred while invoking executor '{0}': {1}
+ '{0}' yürütücüsü çağrılırken bir özel durum oluştu: {1}
+
+
+
+ Could not find file {0}.
+ {0} dosyası bulunamadı.
+
+
+
+ Host debugging is enabled. Please attach debugger to testhost process to continue.
+ Konak hata ayıklaması etkin. Devam etmek için lütfen hata ayıklayıcısını testhost işlemine ekleyin.
+ Host, testhost are key words, it should not be localized
+
+
+ Ignoring the test executor corresponding to test discoverer {0} because the discoverer does not have the DefaultExecutorUri attribute . You might need to re-install the test adapter add-in.
+ Bulucu DefaultExecutorUri özniteliğine sahip olmadığından {0} test bulucusuna karşılık gelen test yürütücüsü yoksayılıyor. Test bağdaştırıcısı eklentisini yeniden yüklemeniz gerekebilir.
+
+
+
+ Failed to initialize client proxy: could not connect to test process.
+ İstemci ara sunucusu başlatılamadı: Test işlemine bağlanılamadı.
+
+
+
+ This operation is not allowed in the context of a non-debug run.
+ Bu işlem hata ayıklama dışındaki bir çalıştırmanın bağlamında yapılamaz.
+
+
+
+ Could not find test executor with URI '{0}'. Make sure that the test executor is installed and supports .net runtime version {1}.
+ URI’si '{0}' olan test yürütücüsü bulunamadı. Test yürütücüsünün yüklendiğinden ve .NET çalışma zamanı {1} sürümünü desteklediğinden emin olun.
+ {0} - Executor uri String {1}- Version - .net Version Eg:-2.0.50727.00
+
+
+ None of the specified source(s) '{0}' is valid. Fix the above errors/warnings and then try again.
+ Belirtilen '{0}' kaynaklarının hiçbiri geçerli değil. Yukarıdaki hataları/uyarıları düzeltin ve yeniden deneyin.
+
+
+
+ ,
+ ,
+
+
+
+ No tests matched the filter because it contains one or more properties that are not valid ({0}). Specify filter expression containing valid properties ({1}).
+ Geçerli olmayan bir veya daha fazla özellik içerdiğinden filtre ile eşleşen test yok ({0}). Geçerli değerleri ({1}) içeren bir filtre ifadesi belirtin.
+
+
+
+ Could not find {0}. Make sure that the dotnet is installed on the machine.
+ {0} bulunamadı. Makinede dotnet’in yüklü olduğundan emin olun.
+
+
+
+ Testhost process for source(s) '{0}' exited with error: {1}. Please check the diagnostic logs for more information.
+ '{0}' kaynağı için testhost işleminden şu hatayla çıkıldı: {1}. Daha fazla bilgi edinmek için lütfen tanılama günlüklerini denetleyin.
+ {0} a source, or very rarely list of sources, {1} the output error.
+
+
+ DataCollector debugging is enabled. Please attach debugger to datacollector process to continue.
+ DataCollector hata ayıklaması etkin. Devam etmek için lütfen hata ayıklayıcısını datacollector işlemine ekleyin.
+
+
+
+ No test is available in {0}. Make sure that test discoverer & executors are registered and platform & framework version settings are appropriate and try again.
+ {0} içinde hiç test yok. Test bulucuları ile yürütücülerinin kayıtlı olduğundan ve platform ile çerçeve sürümü ayarlarının uygun olduğundan emin olun ve yeniden deneyin.
+
+
+
+ Logging TestHost Diagnostics in file: {0}
+ TestHost Tanılamaları şu dosyadaki günlüğe kaydediliyor: {0}
+
+
+
+ Failed to launch testhost with error: {0}
+ Testhost başlatılamadı. Şu hata alındı: {0}
+
+
+
+ ExecutionThreadApartmentState option not supported for framework: {0}.
+ ExecutionThreadApartmentState seçeneği {0} çerçevesi için desteklenmiyor.
+
+
+
+ You are using an older version of Microsoft.NET.Test.Sdk. Kindly move to a version equal or greater than 15.3.0.
+ Eski bir Microsoft.NET.Test.Sdk sürümü kullanıyorsunuz. Lütfen 15.3.0 veya daha yeni bir sürüme geçin.
+
+
+
+ Could not find extensions: {0}
+ Dosya uzantıları bulunamadı: {0}
+
+
+
+ Adapter lookup is being changed, please follow https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap for more details.
+ Bağdaştırıcı arama değiştiriliyor. Ayrıntılar için lütfen https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap bağlantısını takip edin.
+
+
+
+ No test matches the given testcase filter `{0}` in {1}
+ {1} içinde sunulan test çalışması filtresi `{0}` ile eşleşen test yok
+
+
+
+ Discovery of tests cancelled.
+ Test bulma iptal edildi.
+
+
+
+ Cannot attach the debugger to the default test host with process ID: {0}.
+ Hata ayıklayıcı, {0} işlem kimliğine sahip varsayılan test ana bilgisayarına eklenemiyor.
+
+
+
+ {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges.
+ {0} Belirtilen konumda "TestResults" klasörü oluşturulmaya çalışılırken erişim engellendi. Yazma erişimi gerektiren bir klasörden vstest.console.exe çalıştırdığınız için bu özel durumu aldınız. Sorunu çözmek için lütfen yazma ayrıcalıklarına sahip olduğunuz bir klasörden vstest.console.exe dosyasını çalıştırın.
+
+
+
+ Could not find an available proxy to deque.
+ İki uçtan erişimli kuyruğa yönelik kullanılabilir ara sunucu bulunamadı.
+
+
+
+ Proxy with id {0} is not managed by the current session manager.
+ {0} kimliğine sahip ara sunucu, geçerli oturum yöneticisi tarafından yönetilmiyor.
+
+
+
+ Proxy with id {0} is already available and cannot be re-enqueued.
+ {0} kimliğine sahip ara sunucu zaten var ve yeniden kuyruğa alınamaz.
+
+
+
+ No suitable test runtime provider was found for any source in this run.
+ Bu çalıştırmadaki hiçbir kaynak için uygun bir test çalışma zamanı sağlayıcısı bulunamadı.
+
+
+
+ The runsettings changed between the time when the test session was established and the time of the current run/discovery request.
+ runsettings, test oturumunun kurulduğu zamanla mevcut çalıştırma/keşif isteği zamanı arasında değişti.
+
+
+
+ {0}
+ {0}
+
+
+
+ Attachments:
+ Ekler:
+
+
+
+ No suitable test runtime provider was found:
+ Uygun bir test çalışma zamanı sağlayıcısı bulunamadı:
+
+
+
+ Skipping source:
+ Kaynak atlanıyor:
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.zh-Hans.xlf b/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.zh-Hans.xlf
index 93f2a3cc17..ad3cd5c151 100644
--- a/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.zh-Hans.xlf
+++ b/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.zh-Hans.xlf
@@ -1,192 +1,192 @@
-
-
-
-
-
- Exception occurred while instantiating discoverer : {0}
- 实例化发现器时发生异常: {0}
-
-
-
- Multiple test adapters with the same uri '{0}' were found. Ignoring adapter '{1}'. Please uninstall the conflicting adapter(s) to avoid this warning.
- 找到了多个具有同一 URI“{0}”的测试适配器。忽略适配器“{1}”。请卸载冲突的适配器以避免此警告。
- {0} is the unique identifier of test adapter. {1} is the name of the test adapter that shares a unique identifier with a previously loaded adapter.
-
-
- Ignoring the specified duplicate source '{0}'.
- 忽略指定的重复源“{0}”。
-
-
-
- An exception occurred while test discoverer '{0}' was loading tests. Exception: {1}
- 测试发现器“{0}”加载测试时发生异常。异常: {1}
-
-
-
- An exception occurred while invoking executor '{0}': {1}
- 调用的执行器“{0}”时发生异常: {1}
-
-
-
- Could not find file {0}.
- 找不到文件 {0}。
-
-
-
- Host debugging is enabled. Please attach debugger to testhost process to continue.
- 启用主机调试。请将调试器附加到 testhost 进程以继续。
- Host, testhost are key words, it should not be localized
-
-
- Ignoring the test executor corresponding to test discoverer {0} because the discoverer does not have the DefaultExecutorUri attribute . You might need to re-install the test adapter add-in.
- 忽略与测试发现器 {0} 对应的测试执行器,因为该发现器不具有 DefaultExecutorUri 特性。可能需要重新安装测试适配器外接程序。
-
-
-
- Failed to initialize client proxy: could not connect to test process.
- 未能初始化客户端代理: 无法连接到测试过程。
-
-
-
- This operation is not allowed in the context of a non-debug run.
- 非调试运行的上下文中不允许此操作。
-
-
-
- Could not find test executor with URI '{0}'. Make sure that the test executor is installed and supports .net runtime version {1}.
- 找不到 URI 为“{0}”的测试执行器。请确保安装了测试执行器且该执行器支持.net 运行时版本 {1}。
- {0} - Executor uri String {1}- Version - .net Version Eg:-2.0.50727.00
-
-
- None of the specified source(s) '{0}' is valid. Fix the above errors/warnings and then try again.
- 无有效的指定源“{0}”。请修复以上错误/警告,然后重试。
-
-
-
- ,
- ,
-
-
-
- No tests matched the filter because it contains one or more properties that are not valid ({0}). Specify filter expression containing valid properties ({1}).
- 没有与筛选器匹配的测试,因为该筛选器包含一个或多个无效属性 ({0})。请指定包含有效属性 ({1}) 的筛选器表达式。
-
-
-
- Could not find {0}. Make sure that the dotnet is installed on the machine.
- 找不到 {0}。请确保计算机上安装了 dotnet。
-
-
-
- Testhost process for source(s) '{0}' exited with error: {1}. Please check the diagnostic logs for more information.
- 源“{0}”的 Testhost 进程已退出,但出现错误: {1}。请查看诊断日志以了解详细信息。
- {0} a source, or very rarely list of sources, {1} the output error.
-
-
- DataCollector debugging is enabled. Please attach debugger to datacollector process to continue.
- 启用 DataCollector 调试。请将调试器附加到 datacollector 进程以继续。
-
-
-
- No test is available in {0}. Make sure that test discoverer & executors are registered and platform & framework version settings are appropriate and try again.
- {0} 中没有可用测试。请确保已注册测试发现器和执行器且平台和框架版本设置合理,然后重试。
-
-
-
- Logging TestHost Diagnostics in file: {0}
- 在文件 {0} 中记录 TestHost 诊断
-
-
-
- Failed to launch testhost with error: {0}
- 未能启动测试主机,错误为 {0}
-
-
-
- ExecutionThreadApartmentState option not supported for framework: {0}.
- 框架 {0} 不支持 ExecutionThreadApartmentState 选项。
-
-
-
- You are using an older version of Microsoft.NET.Test.Sdk. Kindly move to a version equal or greater than 15.3.0.
- 你使用的是旧版 Microsoft.NET.Test.Sdk。请迁移到 15.3.0 及更高版本。
-
-
-
- Could not find extensions: {0}
- 找不到扩展名: {0}
-
-
-
- Adapter lookup is being changed, please follow https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap for more details.
- 适配器查找正在发生更改,请转到 https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap 了解详细信息。
-
-
-
- No test matches the given testcase filter `{0}` in {1}
- 没有测试匹配 {1} 中的给定用例测试筛选器“{0}”
-
-
-
- Discovery of tests cancelled.
- 已取消测试发现。
-
-
-
- Cannot attach the debugger to the default test host with process ID: {0}.
- 无法将调试程序附加到进程 ID 为“{0}”的默认测试主机。
-
-
-
- {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges.
- {0} 尝试在所述位置创建 "TestResults" 文件夹时,访问被拒。你收到此异常是因为你正在从需要具有写入权限的文件夹运行 vstest.console.exe。若要解决此问题,请从你具有写入权限的文件夹运行 vstest.console.exe。
-
-
-
- Could not find an available proxy to deque.
- 找不到用于取消排队的可用代理。
-
-
-
- Proxy with id {0} is not managed by the current session manager.
- ID 为 {0} 的代理不受当前会话管理器管理。
-
-
-
- Proxy with id {0} is already available and cannot be re-enqueued.
- ID 为 {0} 的代理已可用,无法重新排队。
-
-
-
- No suitable test runtime provider was found for any source in this run.
- 在此运行中,没有为任何源找到合适的测试运行时提供程序。
-
-
-
- The runsettings changed between the time when the test session was established and the time of the current run/discovery request.
- runsettings 在建立测试会话的时间和当前运行/发现请求的时间之间发生了更改。
-
-
-
- {0}
- {0}
-
-
-
- Attachments:
- 附件:
-
-
-
- No suitable test runtime provider was found:
- 找不到合适的测试运行时提供程序:
-
-
-
- Skipping source:
- 正在跳过源:
-
-
-
-
-
+
+
+
+
+
+ Exception occurred while instantiating discoverer : {0}
+ 实例化发现器时发生异常: {0}
+
+
+
+ Multiple test adapters with the same uri '{0}' were found. Ignoring adapter '{1}'. Please uninstall the conflicting adapter(s) to avoid this warning.
+ 找到了多个具有同一 URI“{0}”的测试适配器。忽略适配器“{1}”。请卸载冲突的适配器以避免此警告。
+ {0} is the unique identifier of test adapter. {1} is the name of the test adapter that shares a unique identifier with a previously loaded adapter.
+
+
+ Ignoring the specified duplicate source '{0}'.
+ 忽略指定的重复源“{0}”。
+
+
+
+ An exception occurred while test discoverer '{0}' was loading tests. Exception: {1}
+ 测试发现器“{0}”加载测试时发生异常。异常: {1}
+
+
+
+ An exception occurred while invoking executor '{0}': {1}
+ 调用的执行器“{0}”时发生异常: {1}
+
+
+
+ Could not find file {0}.
+ 找不到文件 {0}。
+
+
+
+ Host debugging is enabled. Please attach debugger to testhost process to continue.
+ 启用主机调试。请将调试器附加到 testhost 进程以继续。
+ Host, testhost are key words, it should not be localized
+
+
+ Ignoring the test executor corresponding to test discoverer {0} because the discoverer does not have the DefaultExecutorUri attribute . You might need to re-install the test adapter add-in.
+ 忽略与测试发现器 {0} 对应的测试执行器,因为该发现器不具有 DefaultExecutorUri 特性。可能需要重新安装测试适配器外接程序。
+
+
+
+ Failed to initialize client proxy: could not connect to test process.
+ 未能初始化客户端代理: 无法连接到测试过程。
+
+
+
+ This operation is not allowed in the context of a non-debug run.
+ 非调试运行的上下文中不允许此操作。
+
+
+
+ Could not find test executor with URI '{0}'. Make sure that the test executor is installed and supports .net runtime version {1}.
+ 找不到 URI 为“{0}”的测试执行器。请确保安装了测试执行器且该执行器支持.net 运行时版本 {1}。
+ {0} - Executor uri String {1}- Version - .net Version Eg:-2.0.50727.00
+
+
+ None of the specified source(s) '{0}' is valid. Fix the above errors/warnings and then try again.
+ 无有效的指定源“{0}”。请修复以上错误/警告,然后重试。
+
+
+
+ ,
+ ,
+
+
+
+ No tests matched the filter because it contains one or more properties that are not valid ({0}). Specify filter expression containing valid properties ({1}).
+ 没有与筛选器匹配的测试,因为该筛选器包含一个或多个无效属性 ({0})。请指定包含有效属性 ({1}) 的筛选器表达式。
+
+
+
+ Could not find {0}. Make sure that the dotnet is installed on the machine.
+ 找不到 {0}。请确保计算机上安装了 dotnet。
+
+
+
+ Testhost process for source(s) '{0}' exited with error: {1}. Please check the diagnostic logs for more information.
+ 源“{0}”的 Testhost 进程已退出,但出现错误: {1}。请查看诊断日志以了解详细信息。
+ {0} a source, or very rarely list of sources, {1} the output error.
+
+
+ DataCollector debugging is enabled. Please attach debugger to datacollector process to continue.
+ 启用 DataCollector 调试。请将调试器附加到 datacollector 进程以继续。
+
+
+
+ No test is available in {0}. Make sure that test discoverer & executors are registered and platform & framework version settings are appropriate and try again.
+ {0} 中没有可用测试。请确保已注册测试发现器和执行器且平台和框架版本设置合理,然后重试。
+
+
+
+ Logging TestHost Diagnostics in file: {0}
+ 在文件 {0} 中记录 TestHost 诊断
+
+
+
+ Failed to launch testhost with error: {0}
+ 未能启动测试主机,错误为 {0}
+
+
+
+ ExecutionThreadApartmentState option not supported for framework: {0}.
+ 框架 {0} 不支持 ExecutionThreadApartmentState 选项。
+
+
+
+ You are using an older version of Microsoft.NET.Test.Sdk. Kindly move to a version equal or greater than 15.3.0.
+ 你使用的是旧版 Microsoft.NET.Test.Sdk。请迁移到 15.3.0 及更高版本。
+
+
+
+ Could not find extensions: {0}
+ 找不到扩展名: {0}
+
+
+
+ Adapter lookup is being changed, please follow https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap for more details.
+ 适配器查找正在发生更改,请转到 https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap 了解详细信息。
+
+
+
+ No test matches the given testcase filter `{0}` in {1}
+ 没有测试匹配 {1} 中的给定用例测试筛选器“{0}”
+
+
+
+ Discovery of tests cancelled.
+ 已取消测试发现。
+
+
+
+ Cannot attach the debugger to the default test host with process ID: {0}.
+ 无法将调试程序附加到进程 ID 为“{0}”的默认测试主机。
+
+
+
+ {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges.
+ {0} 尝试在所述位置创建 "TestResults" 文件夹时,访问被拒。你收到此异常是因为你正在从需要具有写入权限的文件夹运行 vstest.console.exe。若要解决此问题,请从你具有写入权限的文件夹运行 vstest.console.exe。
+
+
+
+ Could not find an available proxy to deque.
+ 找不到用于取消排队的可用代理。
+
+
+
+ Proxy with id {0} is not managed by the current session manager.
+ ID 为 {0} 的代理不受当前会话管理器管理。
+
+
+
+ Proxy with id {0} is already available and cannot be re-enqueued.
+ ID 为 {0} 的代理已可用,无法重新排队。
+
+
+
+ No suitable test runtime provider was found for any source in this run.
+ 在此运行中,没有为任何源找到合适的测试运行时提供程序。
+
+
+
+ The runsettings changed between the time when the test session was established and the time of the current run/discovery request.
+ runsettings 在建立测试会话的时间和当前运行/发现请求的时间之间发生了更改。
+
+
+
+ {0}
+ {0}
+
+
+
+ Attachments:
+ 附件:
+
+
+
+ No suitable test runtime provider was found:
+ 找不到合适的测试运行时提供程序:
+
+
+
+ Skipping source:
+ 正在跳过源:
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.zh-Hant.xlf b/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.zh-Hant.xlf
index cf751dd2e7..bbc67131a0 100644
--- a/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.zh-Hant.xlf
+++ b/src/Microsoft.TestPlatform.CrossPlatEngine/Resources/xlf/Resources.zh-Hant.xlf
@@ -1,192 +1,192 @@
-
-
-
-
-
- Exception occurred while instantiating discoverer : {0}
- 將探索程式具現化時發生例外狀況: {0}
-
-
-
- Multiple test adapters with the same uri '{0}' were found. Ignoring adapter '{1}'. Please uninstall the conflicting adapter(s) to avoid this warning.
- 找到多個具有相同 URI '{0}' 的測試配接器。忽略配接器 '{1}'。請將衝突的配接器解除安裝,以避免這項警告。
- {0} is the unique identifier of test adapter. {1} is the name of the test adapter that shares a unique identifier with a previously loaded adapter.
-
-
- Ignoring the specified duplicate source '{0}'.
- 忽略指定的重複來源 '{0}'。
-
-
-
- An exception occurred while test discoverer '{0}' was loading tests. Exception: {1}
- 測試探索程式 '{0}' 載入測試時發生例外狀況。例外狀況: {1}
-
-
-
- An exception occurred while invoking executor '{0}': {1}
- 叫用執行程式 '{0}' 時發生例外狀況: {1}
-
-
-
- Could not find file {0}.
- 找不到檔案 {0}。
-
-
-
- Host debugging is enabled. Please attach debugger to testhost process to continue.
- 已啟用主機偵錯。請將偵錯工具附加到 testhost 處理序以繼續進行。
- Host, testhost are key words, it should not be localized
-
-
- Ignoring the test executor corresponding to test discoverer {0} because the discoverer does not have the DefaultExecutorUri attribute . You might need to re-install the test adapter add-in.
- 忽略對應到測試探索程式 {0} 的測試執行程式,因為探索程式沒有 DefaultExecutorUri 屬性。您可能必須重新安裝測試配接器增益集。
-
-
-
- Failed to initialize client proxy: could not connect to test process.
- 無法將用戶端 Proxy 初始化: 無法連接到測試處理序
-
-
-
- This operation is not allowed in the context of a non-debug run.
- 這項作業不能用於非偵錯回合的內容中。
-
-
-
- Could not find test executor with URI '{0}'. Make sure that the test executor is installed and supports .net runtime version {1}.
- 找不到具有 URI '{0}' 的測試執行程式。請確定已安裝測試執行程式,且其支援 .NET 執行階段版本 {1}。
- {0} - Executor uri String {1}- Version - .net Version Eg:-2.0.50727.00
-
-
- None of the specified source(s) '{0}' is valid. Fix the above errors/warnings and then try again.
- 指定的來源 '{0}' 皆無效。請修正上述錯誤/警告,並再試一次。
-
-
-
- ,
- ,
-
-
-
- No tests matched the filter because it contains one or more properties that are not valid ({0}). Specify filter expression containing valid properties ({1}).
- 因為篩選包含一或多個無效的屬性 ({0}),所以沒有符合篩選的測試。請指定包含有效屬性 ({1}) 的篩選運算式。
-
-
-
- Could not find {0}. Make sure that the dotnet is installed on the machine.
- 找不到 {0}。請確定電腦上安裝了 .NET。
-
-
-
- Testhost process for source(s) '{0}' exited with error: {1}. Please check the diagnostic logs for more information.
- 來源 '{0}' 的 Testhost 處理序已結束,發生錯誤: {1}。如需詳細資訊,請查看診斷記錄。
- {0} a source, or very rarely list of sources, {1} the output error.
-
-
- DataCollector debugging is enabled. Please attach debugger to datacollector process to continue.
- DataCollector 已啟用。若要繼續,請將偵錯工具連結到 datacollector 處理序。
-
-
-
- No test is available in {0}. Make sure that test discoverer & executors are registered and platform & framework version settings are appropriate and try again.
- {0} 中未提供任何測試。請確定已登錄了測試探索程式與執行程式,且平台與 Framework 版本設定皆正確,然後再試一次。
-
-
-
- Logging TestHost Diagnostics in file: {0}
- 在檔案 {0} 中記錄 TestHost 診斷
-
-
-
- Failed to launch testhost with error: {0}
- 無法啟動測試主機。錯誤: {0}
-
-
-
- ExecutionThreadApartmentState option not supported for framework: {0}.
- 架構 {0} 不支援 ExecutionThreadApartmentState 選項。
-
-
-
- You are using an older version of Microsoft.NET.Test.Sdk. Kindly move to a version equal or greater than 15.3.0.
- 您正使用較舊版的 Microsoft.NET.Test.Sdk。請移到等於或大於 15.3.0 的版本。
-
-
-
- Could not find extensions: {0}
- 找不到延伸模組: {0}
-
-
-
- Adapter lookup is being changed, please follow https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap for more details.
- 目前正在變更配接器查閱,請遵循 https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap 以尋求詳細資料。
-
-
-
- No test matches the given testcase filter `{0}` in {1}
- 沒有任何測試符合 {1} 中的指定 testcase 篩選 `{0}`
-
-
-
- Discovery of tests cancelled.
- 已取消測試的探索。
-
-
-
- Cannot attach the debugger to the default test host with process ID: {0}.
- 無法將偵錯工具連結到處理序識別碼為 {0} 的預設測試主機。
-
-
-
- {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges.
- {0} 當嘗試在提及的位置上建立 "TestResults" 資料夾時存取被拒。因為您正從需要寫入存取權的資料夾執行 vstest.console.exe,所以收到此例外狀況。若要解決此問題: 請從您有權寫入的資料夾執行 vstest.console.exe。
-
-
-
- Could not find an available proxy to deque.
- 找不到任何要排除於佇列外的 Proxy。
-
-
-
- Proxy with id {0} is not managed by the current session manager.
- 識別碼為 {0} 的 Proxy 並非由目前的工作階段管理員所管理。
-
-
-
- Proxy with id {0} is already available and cannot be re-enqueued.
- 識別碼為 {0} 的 Proxy 已可供使用,但無法重新加入佇列。
-
-
-
- No suitable test runtime provider was found for any source in this run.
- 在此回合的任何來源中,找不到適合的測試執行階段提供者。
-
-
-
- The runsettings changed between the time when the test session was established and the time of the current run/discovery request.
- Runsettings 在測試工作階段建立時間與目前執行/探索要求的時間之間有所變更。
-
-
-
- {0}
- {0}
-
-
-
- Attachments:
- 附件:
-
-
-
- No suitable test runtime provider was found:
- 找不到適合的測試執行階段提供者:
-
-
-
- Skipping source:
- 正在略過來源:
-
-
-
-
-
+
+
+
+
+
+ Exception occurred while instantiating discoverer : {0}
+ 將探索程式具現化時發生例外狀況: {0}
+
+
+
+ Multiple test adapters with the same uri '{0}' were found. Ignoring adapter '{1}'. Please uninstall the conflicting adapter(s) to avoid this warning.
+ 找到多個具有相同 URI '{0}' 的測試配接器。忽略配接器 '{1}'。請將衝突的配接器解除安裝,以避免這項警告。
+ {0} is the unique identifier of test adapter. {1} is the name of the test adapter that shares a unique identifier with a previously loaded adapter.
+
+
+ Ignoring the specified duplicate source '{0}'.
+ 忽略指定的重複來源 '{0}'。
+
+
+
+ An exception occurred while test discoverer '{0}' was loading tests. Exception: {1}
+ 測試探索程式 '{0}' 載入測試時發生例外狀況。例外狀況: {1}
+
+
+
+ An exception occurred while invoking executor '{0}': {1}
+ 叫用執行程式 '{0}' 時發生例外狀況: {1}
+
+
+
+ Could not find file {0}.
+ 找不到檔案 {0}。
+
+
+
+ Host debugging is enabled. Please attach debugger to testhost process to continue.
+ 已啟用主機偵錯。請將偵錯工具附加到 testhost 處理序以繼續進行。
+ Host, testhost are key words, it should not be localized
+
+
+ Ignoring the test executor corresponding to test discoverer {0} because the discoverer does not have the DefaultExecutorUri attribute . You might need to re-install the test adapter add-in.
+ 忽略對應到測試探索程式 {0} 的測試執行程式,因為探索程式沒有 DefaultExecutorUri 屬性。您可能必須重新安裝測試配接器增益集。
+
+
+
+ Failed to initialize client proxy: could not connect to test process.
+ 無法將用戶端 Proxy 初始化: 無法連接到測試處理序
+
+
+
+ This operation is not allowed in the context of a non-debug run.
+ 這項作業不能用於非偵錯回合的內容中。
+
+
+
+ Could not find test executor with URI '{0}'. Make sure that the test executor is installed and supports .net runtime version {1}.
+ 找不到具有 URI '{0}' 的測試執行程式。請確定已安裝測試執行程式,且其支援 .NET 執行階段版本 {1}。
+ {0} - Executor uri String {1}- Version - .net Version Eg:-2.0.50727.00
+
+
+ None of the specified source(s) '{0}' is valid. Fix the above errors/warnings and then try again.
+ 指定的來源 '{0}' 皆無效。請修正上述錯誤/警告,並再試一次。
+
+
+
+ ,
+ ,
+
+
+
+ No tests matched the filter because it contains one or more properties that are not valid ({0}). Specify filter expression containing valid properties ({1}).
+ 因為篩選包含一或多個無效的屬性 ({0}),所以沒有符合篩選的測試。請指定包含有效屬性 ({1}) 的篩選運算式。
+
+
+
+ Could not find {0}. Make sure that the dotnet is installed on the machine.
+ 找不到 {0}。請確定電腦上安裝了 .NET。
+
+
+
+ Testhost process for source(s) '{0}' exited with error: {1}. Please check the diagnostic logs for more information.
+ 來源 '{0}' 的 Testhost 處理序已結束,發生錯誤: {1}。如需詳細資訊,請查看診斷記錄。
+ {0} a source, or very rarely list of sources, {1} the output error.
+
+
+ DataCollector debugging is enabled. Please attach debugger to datacollector process to continue.
+ DataCollector 已啟用。若要繼續,請將偵錯工具連結到 datacollector 處理序。
+
+
+
+ No test is available in {0}. Make sure that test discoverer & executors are registered and platform & framework version settings are appropriate and try again.
+ {0} 中未提供任何測試。請確定已登錄了測試探索程式與執行程式,且平台與 Framework 版本設定皆正確,然後再試一次。
+
+
+
+ Logging TestHost Diagnostics in file: {0}
+ 在檔案 {0} 中記錄 TestHost 診斷
+
+
+
+ Failed to launch testhost with error: {0}
+ 無法啟動測試主機。錯誤: {0}
+
+
+
+ ExecutionThreadApartmentState option not supported for framework: {0}.
+ 架構 {0} 不支援 ExecutionThreadApartmentState 選項。
+
+
+
+ You are using an older version of Microsoft.NET.Test.Sdk. Kindly move to a version equal or greater than 15.3.0.
+ 您正使用較舊版的 Microsoft.NET.Test.Sdk。請移到等於或大於 15.3.0 的版本。
+
+
+
+ Could not find extensions: {0}
+ 找不到延伸模組: {0}
+
+
+
+ Adapter lookup is being changed, please follow https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap for more details.
+ 目前正在變更配接器查閱,請遵循 https://github.com/Microsoft/vstest/blob/main/RFCs/0022-User-Specified-TestAdapter-Lookup.md#roadmap 以尋求詳細資料。
+
+
+
+ No test matches the given testcase filter `{0}` in {1}
+ 沒有任何測試符合 {1} 中的指定 testcase 篩選 `{0}`
+
+
+
+ Discovery of tests cancelled.
+ 已取消測試的探索。
+
+
+
+ Cannot attach the debugger to the default test host with process ID: {0}.
+ 無法將偵錯工具連結到處理序識別碼為 {0} 的預設測試主機。
+
+
+
+ {0} Access denied while trying to create "TestResults" folder in mentioned location. You are getting this exception because you are running vstest.console.exe from a folder which requires having write access. To solve the issue: please run vstest.console.exe from a folder where you have write privileges.
+ {0} 當嘗試在提及的位置上建立 "TestResults" 資料夾時存取被拒。因為您正從需要寫入存取權的資料夾執行 vstest.console.exe,所以收到此例外狀況。若要解決此問題: 請從您有權寫入的資料夾執行 vstest.console.exe。
+
+
+
+ Could not find an available proxy to deque.
+ 找不到任何要排除於佇列外的 Proxy。
+
+
+
+ Proxy with id {0} is not managed by the current session manager.
+ 識別碼為 {0} 的 Proxy 並非由目前的工作階段管理員所管理。
+
+
+
+ Proxy with id {0} is already available and cannot be re-enqueued.
+ 識別碼為 {0} 的 Proxy 已可供使用,但無法重新加入佇列。
+
+
+
+ No suitable test runtime provider was found for any source in this run.
+ 在此回合的任何來源中,找不到適合的測試執行階段提供者。
+
+
+
+ The runsettings changed between the time when the test session was established and the time of the current run/discovery request.
+ Runsettings 在測試工作階段建立時間與目前執行/探索要求的時間之間有所變更。
+
+
+
+ {0}
+ {0}
+
+
+
+ Attachments:
+ 附件:
+
+
+
+ No suitable test runtime provider was found:
+ 找不到適合的測試執行階段提供者:
+
+
+
+ Skipping source:
+ 正在略過來源:
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Microsoft.TestPlatform.CrossPlatEngine/TestEngine.cs b/src/Microsoft.TestPlatform.CrossPlatEngine/TestEngine.cs
index 969dd51fff..920f78fd83 100644
--- a/src/Microsoft.TestPlatform.CrossPlatEngine/TestEngine.cs
+++ b/src/Microsoft.TestPlatform.CrossPlatEngine/TestEngine.cs
@@ -118,9 +118,9 @@ public IProxyDiscoveryManager GetDiscoveryManager(
// discovery manager to publish its current state. But doing so we are losing the collected state of all the
// other managers.
var discoveryDataAggregator = new DiscoveryDataAggregator();
- Func proxyDiscoveryManagerCreator = runtimeProviderInfo =>
+ Func proxyDiscoveryManagerCreator = (runtimeProviderInfo, discoveryCriteria) =>
{
- var sources = runtimeProviderInfo.SourceDetails.Select(r => r.Source!).ToList();
+ var sources = discoveryCriteria.Sources.ToList();
var hostManager = _testHostProviderManager.GetTestHostManagerByRunConfiguration(runtimeProviderInfo.RunSettings, sources);
hostManager?.Initialize(TestSessionMessageLogger.Instance, runtimeProviderInfo.RunSettings!);
@@ -241,15 +241,16 @@ public IProxyExecutionManager GetExecutionManager(
}
// This creates a single non-parallel execution manager, based requestData, isDataCollectorEnabled and the
- // overall testRunCriteria. The overall testRunCriteria are split to smaller pieces (e.g. each source from the overall
- // testRunCriteria) so we can run them in parallel, and those are then passed to those non-parallel execution managers.
+ // split testRunCriteria. The overall testRunCriteria are split to smaller pieces (e.g. each source from the overall
+ // testRunCriteria) so we can run them in parallel.
//
// The function below grabs most of the parameter via closure from the local context,
- // but gets the runtime provider later, because that is specific info to the source (or sources) it will be running.
+ // but gets the runtime provider later, as well as the discovery request, because that is specific info to the source (or sources)
+ // it will be running.
// This creator does not get those smaller pieces of testRunCriteria, those come later when we call a method on
// the non-parallel execution manager we create here. E.g. StartTests().
- Func proxyExecutionManagerCreator = runtimeProviderInfo =>
- CreateNonParallelExecutionManager(requestData, testRunCriteria, isDataCollectorEnabled, runtimeProviderInfo);
+ Func proxyExecutionManagerCreator = (runtimeProviderInfo, runCriteria) =>
+ CreateNonParallelExecutionManager(requestData, runCriteria, isDataCollectorEnabled, runtimeProviderInfo);
var executionManager = new ParallelProxyExecutionManager(requestData, proxyExecutionManagerCreator, parallelLevel, testHostProviders);
@@ -663,7 +664,7 @@ private static void WarnAboutNotFoundRuntimeProvidersOrThrowWhenNoneAreFound(Lis
throw new ArgumentException(null, nameof(testRuntimeProviders));
// Throw when we did not find any runtime provider for any of the provided sources.
- var shouldThrow = testRuntimeProviders.All(runtimeProvider => runtimeProvider == null);
+ var shouldThrow = testRuntimeProviders.All(runtimeProvider => runtimeProvider.Type == null);
var missingRuntimeProviders = testRuntimeProviders.Where(p => p.Type == null);
if (missingRuntimeProviders.Any())
diff --git a/src/Microsoft.TestPlatform.CrossPlatEngine/TestSession/ProxyTestSessionManager.cs b/src/Microsoft.TestPlatform.CrossPlatEngine/TestSession/ProxyTestSessionManager.cs
index 69f6699855..74e2e22db1 100644
--- a/src/Microsoft.TestPlatform.CrossPlatEngine/TestSession/ProxyTestSessionManager.cs
+++ b/src/Microsoft.TestPlatform.CrossPlatEngine/TestSession/ProxyTestSessionManager.cs
@@ -209,7 +209,7 @@ public virtual bool StartSession(ITestSessionEventsHandler eventsHandler, IReque
///
public virtual bool StopSession(IRequestData requestData)
{
- var testSessionId = string.Empty;
+ string testSessionId;
lock (_lockObject)
{
if (_testSessionInfo == null)
@@ -251,7 +251,7 @@ public virtual bool StopSession(IRequestData requestData)
/// The dequeued proxy.
public virtual ProxyOperationManager DequeueProxy(string source, string? runSettings)
{
- ProxyOperationManagerContainer? proxyContainer = null;
+ ProxyOperationManagerContainer? proxyContainer;
lock (_proxyOperationLockObject)
{
diff --git a/src/Microsoft.TestPlatform.CrossPlatEngine/TestSession/TestSessionPool.cs b/src/Microsoft.TestPlatform.CrossPlatEngine/TestSession/TestSessionPool.cs
index adfaa12b9b..7d1f1a497a 100644
--- a/src/Microsoft.TestPlatform.CrossPlatEngine/TestSession/TestSessionPool.cs
+++ b/src/Microsoft.TestPlatform.CrossPlatEngine/TestSession/TestSessionPool.cs
@@ -96,7 +96,7 @@ public virtual bool KillSession(TestSessionInfo testSessionInfo, IRequestData re
{
// TODO (copoiena): What happens if some request is running for the current session ?
// Should we stop the request as well ? Probably yes.
- IProxyTestSessionManager? proxyManager = null;
+ IProxyTestSessionManager? proxyManager;
lock (_lockObject)
{
@@ -133,7 +133,7 @@ public virtual bool KillSession(TestSessionInfo testSessionInfo, IRequestData re
{
ValidateArg.NotNull(requestData, nameof(requestData));
- ProxyTestSessionManager? sessionManager = null;
+ ProxyTestSessionManager? sessionManager;
lock (_lockObject)
{
if (!_sessionPool.ContainsKey(testSessionInfo))
@@ -181,7 +181,7 @@ public virtual bool KillSession(TestSessionInfo testSessionInfo, IRequestData re
/// True if the operation succeeded, false otherwise.
public virtual bool ReturnProxy(TestSessionInfo testSessionInfo, int proxyId)
{
- ProxyTestSessionManager? sessionManager = null;
+ ProxyTestSessionManager? sessionManager;
lock (_lockObject)
{
if (!_sessionPool.ContainsKey(testSessionInfo))
diff --git a/src/Microsoft.TestPlatform.Execution.Shared/DebuggerBreakpoint.cs b/src/Microsoft.TestPlatform.Execution.Shared/DebuggerBreakpoint.cs
index c6beea18e5..1bd71eb00f 100644
--- a/src/Microsoft.TestPlatform.Execution.Shared/DebuggerBreakpoint.cs
+++ b/src/Microsoft.TestPlatform.Execution.Shared/DebuggerBreakpoint.cs
@@ -108,7 +108,7 @@ private static bool AttachVs(Process process, int? vsPid)
var parent = Path.GetDirectoryName(Assembly.GetEntryAssembly()!.Location);
while (parent != null)
{
- var path = Path.Combine(parent, @"src\AttachVS\bin\Debug\net472\AttachVS.exe");
+ var path = Path.Combine(parent, @"artifacts\bin\AttachVS\Debug\net472\AttachVS.exe");
Debug.WriteLine($"Looking for AttachVS in: {path}.");
if (File.Exists(path))
{
diff --git a/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/BlameCollector.cs b/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/BlameCollector.cs
index 02c9e97215..1f3f483d29 100644
--- a/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/BlameCollector.cs
+++ b/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/BlameCollector.cs
@@ -245,22 +245,21 @@ private void CollectDumpAndAbortTesthost()
if (_collectProcessDumpOnCrash)
{
- // Detach procdump from the testhost process to prevent testhost process from crashing
- // if/when we try to kill the existing proc dump process.
- // And also prevent collecting dump on exit of the process.
+ // Detach the dumper from the testhost process to prevent crashing testhost process. When the dumper is procdump.exe
+ // it must be detached before we try to dump the process, and simply killing it would take down the testhost process.
+ //
+ // Detaching also prevents creating an extra dump at the exit of the testhost process.
_processDumpUtility.DetachFromTargetProcess(_testHostProcessId);
}
// Skip creating the dump if the option is set to none, and just kill the process.
if ((_hangDumpType ?? HangDumpType.Full) != HangDumpType.None)
{
- var hangDumpSuccess = false;
try
{
Action logWarning = m => _logger.LogWarning(_context.SessionDataCollectionContext, m);
var dumpDirectory = GetDumpDirectory();
_processDumpUtility.StartHangBasedProcessDump(_testHostProcessId, dumpDirectory, _hangDumpType == HangDumpType.Full, _targetFramework!, logWarning);
- hangDumpSuccess = true;
}
catch (Exception ex)
{
@@ -271,7 +270,8 @@ private void CollectDumpAndAbortTesthost()
{
try
{
- var dumpFiles = _processDumpUtility.GetDumpFiles(true, /* if we killed it by hang dumper, we already have our dump, otherwise it might have crashed, and we want all dumps */ !hangDumpSuccess);
+ var dumpFiles = _processDumpUtility.GetDumpFiles(true,
+ true /* Get all dumps that there are, if crashdump was created before we hangdumped, get it. It probably has interesting info. */);
foreach (var dumpFile in dumpFiles)
{
try
@@ -537,8 +537,8 @@ private void SessionEndedHandler(object? sender, SessionEndEventArgs args)
{
try
{
- var fileTranferInformation = new FileTransferInformation(_context.SessionDataCollectionContext, dumpFile, true);
- _dataCollectionSink.SendFileAsync(fileTranferInformation);
+ var fileTransferInformation = new FileTransferInformation(_context.SessionDataCollectionContext, dumpFile, true);
+ _dataCollectionSink.SendFileAsync(fileTransferInformation);
}
catch (FileNotFoundException ex)
{
diff --git a/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/MiniDumpWriteDump.cs b/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/MiniDumpWriteDump.cs
index a4c1497b1b..fd22eae3e3 100644
--- a/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/MiniDumpWriteDump.cs
+++ b/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/MiniDumpWriteDump.cs
@@ -28,8 +28,7 @@ public static void CollectDumpUsingMiniDumpWriteDump(Process process, string out
using var stream = new FileStream(outputFile, FileMode.Create, FileAccess.ReadWrite, FileShare.None);
NativeMethods.MinidumpExceptionInformation exceptionInfo = default;
- NativeMethods.MinidumpType dumpType = NativeMethods.MinidumpType.MiniDumpNormal;
- dumpType = type switch
+ var dumpType = type switch
{
MiniDumpTypeOption.Full => NativeMethods.MinidumpType.MiniDumpWithFullMemory |
NativeMethods.MinidumpType.MiniDumpWithDataSegs |
@@ -39,12 +38,12 @@ public static void CollectDumpUsingMiniDumpWriteDump(Process process, string out
NativeMethods.MinidumpType.MiniDumpWithThreadInfo |
NativeMethods.MinidumpType.MiniDumpWithTokenInformation,
MiniDumpTypeOption.WithHeap => NativeMethods.MinidumpType.MiniDumpWithPrivateReadWriteMemory |
- NativeMethods.MinidumpType.MiniDumpWithDataSegs |
- NativeMethods.MinidumpType.MiniDumpWithHandleData |
- NativeMethods.MinidumpType.MiniDumpWithUnloadedModules |
- NativeMethods.MinidumpType.MiniDumpWithFullMemoryInfo |
- NativeMethods.MinidumpType.MiniDumpWithThreadInfo |
- NativeMethods.MinidumpType.MiniDumpWithTokenInformation,
+ NativeMethods.MinidumpType.MiniDumpWithDataSegs |
+ NativeMethods.MinidumpType.MiniDumpWithHandleData |
+ NativeMethods.MinidumpType.MiniDumpWithUnloadedModules |
+ NativeMethods.MinidumpType.MiniDumpWithFullMemoryInfo |
+ NativeMethods.MinidumpType.MiniDumpWithThreadInfo |
+ NativeMethods.MinidumpType.MiniDumpWithTokenInformation,
MiniDumpTypeOption.Mini => NativeMethods.MinidumpType.MiniDumpWithThreadInfo,
_ => NativeMethods.MinidumpType.MiniDumpNormal,
};
diff --git a/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/NetClientCrashDumper.cs b/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/NetClientCrashDumper.cs
index 0fe0358e29..333a123a21 100644
--- a/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/NetClientCrashDumper.cs
+++ b/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/NetClientCrashDumper.cs
@@ -31,7 +31,7 @@ public void DetachFromTargetProcess(int processId)
// here we might consider renaming the files to have timestamp
}
- public IEnumerable GetDumpFiles(bool processCrashed)
+ public IEnumerable GetDumpFiles(bool _)
{
return _fileHelper.DirectoryExists(_outputDirectory)
? _fileHelper.GetFiles(_outputDirectory, "*_crashdump*.dmp", SearchOption.AllDirectories)
diff --git a/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/ProcDumpDumper.cs b/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/ProcDumpDumper.cs
index 4436f79ff1..8aef1bdd46 100644
--- a/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/ProcDumpDumper.cs
+++ b/src/Microsoft.TestPlatform.Extensions.BlameDataCollector/ProcDumpDumper.cs
@@ -4,10 +4,11 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
-using System.Diagnostics.CodeAnalysis;
using System.Globalization;
using System.IO;
using System.Linq;
+using System.Threading;
+using System.Threading.Tasks;
using Microsoft.VisualStudio.TestPlatform.CoreUtilities.Helpers;
using Microsoft.VisualStudio.TestPlatform.Execution;
@@ -32,6 +33,7 @@ public class ProcDumpDumper : ICrashDumper, IHangDumper
private readonly IFileHelper _fileHelper;
private readonly IEnvironment _environment;
private readonly IEnvironmentVariableHelper _environmentVariableHelper;
+ private string? _procDumpPath;
private Process? _procDumpProcess;
private string? _tempDirectory;
private string? _dumpFileName;
@@ -39,6 +41,8 @@ public class ProcDumpDumper : ICrashDumper, IHangDumper
private string? _outputDirectory;
private Process? _process;
private string? _outputFilePrefix;
+ private bool _isCrashDumpInProgress;
+ private readonly int _timeout = EnvironmentHelper.GetConnectionTimeout() * 1000;
private readonly ProcDumpExecutableHelper _procDumpExecutableHelper;
public ProcDumpDumper()
@@ -63,25 +67,47 @@ internal ProcDumpDumper(IProcessHelper processHelper, IFileHelper fileHelper, IE
_procDumpExecutableHelper = new ProcDumpExecutableHelper(processHelper, fileHelper, environment, environmentVariableHelper);
}
- [SuppressMessage("Performance", "CA1822:Mark members as static", Justification = "Part of the public API")]
protected Action