-
Notifications
You must be signed in to change notification settings - Fork 324
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix for coded UI test debug broken #1352
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,7 @@ Param( | |
|
||
[Parameter(Mandatory=$false)] | ||
[Alias("bn")] | ||
[System.String] $BuildNumber = "49999999-99", | ||
[System.String] $BuildNumber = "20991231-99", | ||
|
||
[Parameter(Mandatory=$false)] | ||
[Alias("ff")] | ||
|
@@ -433,16 +433,17 @@ function Create-VsixPackage | |
$testImpactComComponentsDir = Join-Path $extensionsPackageDir "TestImpact" | ||
$legacyTestImpactComComponentsDir = Join-Path $extensionsPackageDir "V1\TestImpact" | ||
|
||
$testPlatformExternalsVersion = "15.6.0-preview-1251113" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [xml](Get-Content $TP_ROOT_DIR\scripts\build\TestPlatform.Dependencies.props).Project.PropertyGroup.TestPlatformExternalsVersion There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks, I was searching for this 😄 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done. |
||
# Copy legacy dependencies | ||
$legacyDir = Join-Path $env:TP_PACKAGES_DIR "Microsoft.Internal.TestPlatform.Extensions\15.6.0-preview-1202328\contentFiles\any\any" | ||
$legacyDir = Join-Path $env:TP_PACKAGES_DIR "Microsoft.Internal.TestPlatform.Extensions\$testPlatformExternalsVersion\contentFiles\any\any" | ||
Copy-Item -Recurse $legacyDir\* $packageDir -Force | ||
|
||
# Copy QtAgent Related depedencies | ||
$legacyDir = Join-Path $env:TP_PACKAGES_DIR "Microsoft.VisualStudio.QualityTools\15.6.0-preview-1202328\contentFiles\any\any" | ||
$legacyDir = Join-Path $env:TP_PACKAGES_DIR "Microsoft.VisualStudio.QualityTools\$testPlatformExternalsVersion\contentFiles\any\any" | ||
Copy-Item -Recurse $legacyDir\* $packageDir -Force | ||
|
||
# Copy Legacy data collectors Related depedencies | ||
$legacyDir = Join-Path $env:TP_PACKAGES_DIR "Microsoft.VisualStudio.QualityTools.DataCollectors\15.6.0-preview-1202328\contentFiles\any\any" | ||
$legacyDir = Join-Path $env:TP_PACKAGES_DIR "Microsoft.VisualStudio.QualityTools.DataCollectors\$testPlatformExternalsVersion\contentFiles\any\any" | ||
Copy-Item -Recurse $legacyDir\* $packageDir -Force | ||
|
||
# Copy COM Components and their manifests over | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!