From 74b475060eedaf5cefd902fc77188ce2aecee561 Mon Sep 17 00:00:00 2001 From: Morten Nielsen <1378165+dotMorten@users.noreply.github.com> Date: Fri, 30 Aug 2019 16:00:33 -0700 Subject: [PATCH] Allow targets files to be active when indirectly referenced (#1203) * Ensure targets file is applied transitively through implicit references #596 See https://github.com/microsoft/microsoft-ui-xaml/issues/596 * Ensure targets file is applied transitively through implicit references See https://github.com/microsoft/microsoft-ui-xaml/issues/596 * Test coverage for libraries that consume MUX. Added projects LibraryThatUsesMUx and AppThatUsesMUXIndirectly Update Nuget to ver 5.2.0. Fixed bug: NuGet tests results are not correctly being reported (failures are being ignored) #1240 Also added check to fail pipeline if we see tests with a result other than "Passed", "Failed" or "Warning" Filed: Improve inner loop for Nupkg testing #1237 Test Infra: improve logic to handle multiple test runs of the same name #1248 --- .../MUX-InstallNuget-Steps.yml | 2 +- .../MUX-ProcessTestResults-Job.yml | 2 +- .../MUX-RunHelixTests-Job.yml | 4 +- build/CopyFilesToStagingDir.ps1 | 2 + build/Helix/OutputTestResults.ps1 | 18 ++ build/Helix/PrepareHelixPayload.ps1 | 2 + build/Helix/UpdateUnreliableTests.ps1 | 31 ++-- build/NuSpecs/MUXControls.nuspec | 3 +- .../MUXControlsFrameworkPackage.nuspec | 6 +- .../MUXControls.Test/Infra/TestEnvironment.cs | 21 ++- .../AppThatUsesMUXIndirectly/App.xaml | 7 + .../AppThatUsesMUXIndirectly/App.xaml.cs | 101 ++++++++++ .../AppThatUsesMUXIndirectly.csproj | 164 +++++++++++++++++ .../Assets/LockScreenLogo.scale-200.png | Bin 0 -> 1430 bytes .../Assets/SplashScreen.scale-200.png | Bin 0 -> 7700 bytes .../Assets/Square150x150Logo.scale-200.png | Bin 0 -> 2937 bytes .../Assets/Square44x44Logo.scale-200.png | Bin 0 -> 1647 bytes ...x44Logo.targetsize-24_altform-unplated.png | Bin 0 -> 1255 bytes .../Assets/StoreLogo.png | Bin 0 -> 1451 bytes .../Assets/Wide310x150Logo.scale-200.png | Bin 0 -> 3204 bytes .../AppThatUsesMUXIndirectly/MainPage.xaml | 14 ++ .../AppThatUsesMUXIndirectly/MainPage.xaml.cs | 29 +++ .../Package.appxmanifest | 40 ++++ .../Properties/AssemblyInfo.cs | 29 +++ .../Properties/Default.rd.xml | 31 ++++ .../LibraryThatUsesMUX.csproj | 156 ++++++++++++++++ .../Properties/AssemblyInfo.cs | 29 +++ .../Properties/LibraryThatUsesMUX.rd.xml | 33 ++++ .../LibraryThatUsesMUX/TestUserControl1.xaml | 17 ++ .../TestUserControl1.xaml.cs | 44 +++++ .../AppThatUsesMUXIndirectlyTests.cs | 48 +++++ .../MUXControls.ReleaseTest.Shared.projitems | 1 + .../MUXControlsReleaseTest.sln | 173 ++++++++++++++++++ .../localpackages/readme.md | 1 + test/MUXControlsReleaseTest/nuget.config | 1 + .../updateUsedNugetPackageVersion.ps1 | 30 +++ 36 files changed, 1014 insertions(+), 25 deletions(-) create mode 100644 test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/App.xaml create mode 100644 test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/App.xaml.cs create mode 100644 test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/AppThatUsesMUXIndirectly.csproj create mode 100644 test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/Assets/LockScreenLogo.scale-200.png create mode 100644 test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/Assets/SplashScreen.scale-200.png create mode 100644 test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/Assets/Square150x150Logo.scale-200.png create mode 100644 test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/Assets/Square44x44Logo.scale-200.png create mode 100644 test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/Assets/Square44x44Logo.targetsize-24_altform-unplated.png create mode 100644 test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/Assets/StoreLogo.png create mode 100644 test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/Assets/Wide310x150Logo.scale-200.png create mode 100644 test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/MainPage.xaml create mode 100644 test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/MainPage.xaml.cs create mode 100644 test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/Package.appxmanifest create mode 100644 test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/Properties/AssemblyInfo.cs create mode 100644 test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/Properties/Default.rd.xml create mode 100644 test/MUXControlsReleaseTest/LibraryThatUsesMUX/LibraryThatUsesMUX.csproj create mode 100644 test/MUXControlsReleaseTest/LibraryThatUsesMUX/Properties/AssemblyInfo.cs create mode 100644 test/MUXControlsReleaseTest/LibraryThatUsesMUX/Properties/LibraryThatUsesMUX.rd.xml create mode 100644 test/MUXControlsReleaseTest/LibraryThatUsesMUX/TestUserControl1.xaml create mode 100644 test/MUXControlsReleaseTest/LibraryThatUsesMUX/TestUserControl1.xaml.cs create mode 100644 test/MUXControlsReleaseTest/MUXControls.ReleaseTest/AppThatUsesMUXIndirectlyTests.cs create mode 100644 test/MUXControlsReleaseTest/localpackages/readme.md create mode 100644 test/MUXControlsReleaseTest/updateUsedNugetPackageVersion.ps1 diff --git a/build/AzurePipelinesTemplates/MUX-InstallNuget-Steps.yml b/build/AzurePipelinesTemplates/MUX-InstallNuget-Steps.yml index 1b2ea7c159..3f0253edc8 100644 --- a/build/AzurePipelinesTemplates/MUX-InstallNuget-Steps.yml +++ b/build/AzurePipelinesTemplates/MUX-InstallNuget-Steps.yml @@ -1,5 +1,5 @@ parameters: - nugetVersion: 4.9.3 + nugetVersion: 5.2.0 steps: - task: NuGetToolInstaller@0 diff --git a/build/AzurePipelinesTemplates/MUX-ProcessTestResults-Job.yml b/build/AzurePipelinesTemplates/MUX-ProcessTestResults-Job.yml index 3d5f153860..18e77d6d9c 100644 --- a/build/AzurePipelinesTemplates/MUX-ProcessTestResults-Job.yml +++ b/build/AzurePipelinesTemplates/MUX-ProcessTestResults-Job.yml @@ -21,7 +21,7 @@ jobs: inputs: targetType: filePath filePath: build\Helix\UpdateUnreliableTests.ps1 - arguments: -RerunPassesRequiredToAvoidFailure '${{ parameters.rerunPassesRequiredToAvoidFailure }}' + arguments: -RerunPassesRequiredToAvoidFailure '${{ parameters.rerunPassesRequiredToAvoidFailure }}' -CheckJobAttempt $${{ parameters.checkJobAttempt }} - task: powershell@2 displayName: 'OutputTestResults.ps1' diff --git a/build/AzurePipelinesTemplates/MUX-RunHelixTests-Job.yml b/build/AzurePipelinesTemplates/MUX-RunHelixTests-Job.yml index 677005a649..323652aa3a 100644 --- a/build/AzurePipelinesTemplates/MUX-RunHelixTests-Job.yml +++ b/build/AzurePipelinesTemplates/MUX-RunHelixTests-Job.yml @@ -44,9 +44,9 @@ jobs: filename: 'set' - task: NuGetToolInstaller@0 - displayName: 'Use NuGet 4.9.3' + displayName: 'Use NuGet 5.2.0' inputs: - versionSpec: 4.9.3 + versionSpec: 5.2.0 - task: 333b11bd-d341-40d9-afcf-b32d5ce6f23b@2 displayName: 'NuGet restore build/Helix/packages.config' diff --git a/build/CopyFilesToStagingDir.ps1 b/build/CopyFilesToStagingDir.ps1 index 87652a6601..fcec78684a 100644 --- a/build/CopyFilesToStagingDir.ps1 +++ b/build/CopyFilesToStagingDir.ps1 @@ -58,6 +58,7 @@ if($PublishAppxFiles) PublishFile -IfExists $FullBuildOutput\NugetPackageTestApp\AppPackages\NugetPackageTestApp_Test\ $AppxPackagesDir PublishFile -IfExists $FullBuildOutput\NugetPackageTestAppCX\AppPackages\NugetPackageTestAppCX_Test\ $AppxPackagesDir + PublishFile -IfExists $FullBuildOutput\AppThatUsesMUXIndirectly\AppPackages\AppThatUsesMUXIndirectly_Test\ $AppxPackagesDir } # Publish pdbs: @@ -71,4 +72,5 @@ PublishFile -IfExists $FullBuildOutput\MUXControlsTestAppForIslands\MUXControlsT PublishFile -IfExists $FullBuildOutput\MUXControlsTestAppWPF\MUXControlsTestAppWPF.pdb $symbolsOutputDir PublishFile -IfExists $FullBuildOutput\TestAppCX\TestAppCX.pdb $symbolsOutputDir PublishFile -IfExists $FullBuildOutput\NugetPackageTestApp\NugetPackageTestApp.pdb $symbolsOutputDir +PublishFile -IfExists $FullBuildOutput\AppThatUsesMUXIndirectly\AppThatUsesMUXIndirectly.pdb $symbolsOutputDir PublishFile -IfExists $FullBuildOutput\NugetPackageTestAppCX\NugetPackageTestAppCX.pdb $symbolsOutputDir \ No newline at end of file diff --git a/build/Helix/OutputTestResults.ps1 b/build/Helix/OutputTestResults.ps1 index fdbcbab12e..67d3261fe2 100644 --- a/build/Helix/OutputTestResults.ps1 +++ b/build/Helix/OutputTestResults.ps1 @@ -25,6 +25,7 @@ Write-Host "queryUri = $queryUri" $testRuns = Invoke-RestMethod -Uri $queryUri -Method Get -Headers $azureDevOpsRestApiHeaders [System.Collections.Generic.List[string]]$failingTests = @() [System.Collections.Generic.List[string]]$unreliableTests = @() +[System.Collections.Generic.List[string]]$unexpectedResultTest = @() $timesSeenByRunName = @{} $totalTestsExecutedCount = 0 @@ -73,6 +74,14 @@ foreach ($testRun in ($testRuns.value | Sort-Object -Property "completedDate")) $unreliableTests.Add($shortTestCaseTitle) } } + elseif ($testResult.outcome -ne "Passed") + { + # We should only see tests with result "Passed", "Failed" or "Warning" + if (-not $unexpectedResultTest.Contains($shortTestCaseTitle)) + { + $unexpectedResultTest.Add($shortTestCaseTitle) + } + } } } @@ -94,6 +103,15 @@ if ($failingTests.Count -gt 0) "@ } +if ($unexpectedResultTest.Count -gt 0) +{ + Write-Host @" +##vso[task.logissue type=error;]Tests with unexpected results: +##vso[task.logissue type=error;]$($unexpectedResultTest -join "$([Environment]::NewLine)##vso[task.logissue type=error;]") + +"@ +} + if($totalTestsExecutedCount -lt $MinimumExpectedTestsExecutedCount) { Write-Host "Expected at least $MinimumExpectedTestsExecutedCount tests to be executed." diff --git a/build/Helix/PrepareHelixPayload.ps1 b/build/Helix/PrepareHelixPayload.ps1 index d0a8f9d3b4..9f3db4a8a4 100644 --- a/build/Helix/PrepareHelixPayload.ps1 +++ b/build/Helix/PrepareHelixPayload.ps1 @@ -45,6 +45,8 @@ function Copy-If-Exists Copy-Item "$repoDirectory\Artifacts\$ArtifactName\$Configuration\$Platform\Test\MUXControls.Test.dll" $payloadDir Copy-If-Exists "$repoDirectory\Artifacts\$ArtifactName\$Configuration\$Platform\AppxPackages\MUXControlsTestApp_Test\*" $payloadDir Copy-If-Exists "$repoDirectory\Artifacts\$ArtifactName\$Configuration\$Platform\AppxPackages\MUXControlsTestApp_Test\Dependencies\$Platform\*" $payloadDir +Copy-If-Exists "$repoDirectory\Artifacts\$ArtifactName\$Configuration\$Platform\AppxPackages\AppThatUsesMUXIndirectly_Test\*" $payloadDir +Copy-If-Exists "$repoDirectory\Artifacts\$ArtifactName\$Configuration\$Platform\AppxPackages\AppThatUsesMUXIndirectly_Test\Dependencies\$Platform\*" $payloadDir Copy-If-Exists "$repoDirectory\Artifacts\$ArtifactName\$Configuration\$Platform\AppxPackages\IXMPTestApp_Test\*" $payloadDir Copy-If-Exists "$repoDirectory\Artifacts\$ArtifactName\$Configuration\$Platform\AppxPackages\IXMPTestApp_Test\Dependencies\$Platform\*" $payloadDir diff --git a/build/Helix/UpdateUnreliableTests.ps1 b/build/Helix/UpdateUnreliableTests.ps1 index a149454dd4..df7ffc2d34 100644 --- a/build/Helix/UpdateUnreliableTests.ps1 +++ b/build/Helix/UpdateUnreliableTests.ps1 @@ -7,7 +7,8 @@ Param( [string]$CollectionUri = $env:SYSTEM_COLLECTIONURI, [string]$TeamProject = $env:SYSTEM_TEAMPROJECT, [string]$BuildUri = $env:BUILD_BUILDURI, - [int]$JobAttempt = $env:SYSTEM_JOBATTEMPT + [int]$JobAttempt = $env:SYSTEM_JOBATTEMPT, + [bool]$CheckJobAttempt ) . "$PSScriptRoot/AzurePipelinesHelperScripts.ps1" @@ -30,19 +31,25 @@ $timesSeenByRunName = @{} foreach ($testRun in $testRuns.value) { - if (-not $timesSeenByRunName.ContainsKey($testRun.name)) - { - $timesSeenByRunName[$testRun.name] = 0 - } - - $timesSeen = $timesSeenByRunName[$testRun.name] + 1 - $timesSeenByRunName[$testRun.name] = $timesSeen - - # The same build can have multiple test runs associated with it if the build owner opted to re-run a test run. + # The same build for a pull request can have multiple test runs associated with it if the build owner opted to re-run a test run. # We should only pay attention to the current attempt version. - if ($timesSeen -ne $JobAttempt) + # NB: If in the future we have pull request builds do multiple test runs as part of the same build definition, we'll need to revisit this. + if ($CheckJobAttempt) { - continue + if (-not $timesSeenByRunName.ContainsKey($testRun.name)) + { + $timesSeenByRunName[$testRun.name] = 0 + } + + $timesSeen = $timesSeenByRunName[$testRun.name] + 1 + $timesSeenByRunName[$testRun.name] = $timesSeen + + # The same build can have multiple test runs associated with it if the build owner opted to re-run a test run. + # We should only pay attention to the current attempt version. + if ($timesSeen -ne $JobAttempt) + { + continue + } } $testRunResultsUri = "$($testRun.url)/results?api-version=5.0" diff --git a/build/NuSpecs/MUXControls.nuspec b/build/NuSpecs/MUXControls.nuspec index 06ce600c82..474c9313cf 100644 --- a/build/NuSpecs/MUXControls.nuspec +++ b/build/NuSpecs/MUXControls.nuspec @@ -30,8 +30,9 @@ + - \ No newline at end of file + diff --git a/build/NuSpecs/MUXControlsFrameworkPackage.nuspec b/build/NuSpecs/MUXControlsFrameworkPackage.nuspec index 0098468ab4..0a37e6b603 100644 --- a/build/NuSpecs/MUXControlsFrameworkPackage.nuspec +++ b/build/NuSpecs/MUXControlsFrameworkPackage.nuspec @@ -29,9 +29,13 @@ + + + + - \ No newline at end of file + diff --git a/test/MUXControls.Test/Infra/TestEnvironment.cs b/test/MUXControls.Test/Infra/TestEnvironment.cs index 2a5865e936..4c2598e36f 100644 --- a/test/MUXControls.Test/Infra/TestEnvironment.cs +++ b/test/MUXControls.Test/Infra/TestEnvironment.cs @@ -30,7 +30,7 @@ namespace Windows.UI.Xaml.Tests.MUXControls.InteractionTests.Infra { - public enum TestType { MuxControls, Nuget, NugetCX, WPFXAMLIsland }; + public enum TestType { MuxControls, Nuget, NugetCX, WPFXAMLIsland, AppThatUsesMuxIndirectly }; // This is marked as a test class to make sure our AssemblyInitialize and AssemblyCleanup // fixtures get executed. It won't actually host any tests. @@ -44,21 +44,27 @@ public class TestEnvironment #else private const string _testAppName = "MUXControlsTestApp_8wekyb3d8bbwe!App"; #endif - - private const string _wpfXamlIslandPackageName = "MUXControlsTestAppWPFPackage"; - private const string _wfpXamlIslandAppName = "MUXControlsTestAppWPFPackage_8wekyb3d8bbwe!App"; + private const string _testAppPackageFamilyName = "MUXControlsTestApp_8wekyb3d8bbwe"; public const string _nugetTestAppPackageName = "NugetPackageTestApp"; private const string _nugetTestAppName = "NugetPackageTestApp_8wekyb3d8bbwe!App"; + private const string _nugetTestAppPackageFamilyName = "NugetPackageTestApp_8wekyb3d8bbwe"; + + public const string _appThatUsesMUXIndirectlyPackageName = "AppThatUsesMUXIndirectly"; + private const string _appThatUsesMUXIndirectlyName = "AppThatUsesMUXIndirectly_8wekyb3d8bbwe!App"; + private const string _appThatUsesMUXIndirectlyPackageFamilyName = "AppThatUsesMUXIndirectly_8wekyb3d8bbwe"; public const string _nugetTestAppCXPackageName = "NugetPackageTestAppCX"; private const string _nugetTestAppCXName = "NugetPackageTestAppCX_8wekyb3d8bbwe!App"; - - private const string _testAppPackageFamilyName = "MUXControlsTestApp_8wekyb3d8bbwe"; - private const string _nugetTestAppPackageFamilyName = "NugetPackageTestApp_8wekyb3d8bbwe"; private const string _nugetTestAppCXPackageFamilyName = "NugetPackageTestAppCX_8wekyb3d8bbwe"; + + private const string _wpfXamlIslandPackageName = "MUXControlsTestAppWPFPackage"; + private const string _wfpXamlIslandAppName = "MUXControlsTestAppWPFPackage_8wekyb3d8bbwe!App"; private const string _wpfXamlIslandPackageFamilyName = "MUXControlsTestAppWPFPackage_8wekyb3d8bbwe"; + + + public static TestContext TestContext { get; private set; } public static bool IsLogVerbose { get; private set; } @@ -155,6 +161,7 @@ private static Application CreateApplication(TestType type) if (type == TestType.Nuget) return new Application(_nugetTestAppPackageName, _nugetTestAppPackageFamilyName, _nugetTestAppName); if (type == TestType.NugetCX) return new Application(_nugetTestAppCXPackageName, _nugetTestAppCXPackageFamilyName, _nugetTestAppCXName); if (type == TestType.WPFXAMLIsland) return new Application(_wpfXamlIslandPackageName, _wpfXamlIslandPackageFamilyName, _wfpXamlIslandAppName, false /* isUWPApp */); + if (type == TestType.AppThatUsesMuxIndirectly) return new Application(_appThatUsesMUXIndirectlyPackageName, _appThatUsesMUXIndirectlyPackageFamilyName, _appThatUsesMUXIndirectlyName); return new Application(_testAppPackageName, _testAppPackageFamilyName, _testAppName); } diff --git a/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/App.xaml b/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/App.xaml new file mode 100644 index 0000000000..90f5c2bc30 --- /dev/null +++ b/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/App.xaml @@ -0,0 +1,7 @@ + + + diff --git a/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/App.xaml.cs b/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/App.xaml.cs new file mode 100644 index 0000000000..985d73e86e --- /dev/null +++ b/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/App.xaml.cs @@ -0,0 +1,101 @@ +using MUXControlsTestApp; +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Runtime.InteropServices.WindowsRuntime; +using Windows.ApplicationModel; +using Windows.ApplicationModel.Activation; +using Windows.Foundation; +using Windows.Foundation.Collections; +using Windows.UI.Xaml; +using Windows.UI.Xaml.Controls; +using Windows.UI.Xaml.Controls.Primitives; +using Windows.UI.Xaml.Data; +using Windows.UI.Xaml.Input; +using Windows.UI.Xaml.Media; +using Windows.UI.Xaml.Navigation; + +namespace AppThatUsesMUXIndirectly +{ + /// + /// Provides application-specific behavior to supplement the default Application class. + /// + sealed partial class App : Application + { + /// + /// Initializes the singleton application object. This is the first line of authored code + /// executed, and as such is the logical equivalent of main() or WinMain(). + /// + public App() + { + this.InitializeComponent(); + this.Suspending += OnSuspending; + } + + /// + /// Invoked when the application is launched normally by the end user. Other entry points + /// will be used such as when the application is launched to open a specific file. + /// + /// Details about the launch request and process. + protected override void OnLaunched(LaunchActivatedEventArgs e) + { + Frame rootFrame = Window.Current.Content as Frame; + + // Do not repeat app initialization when the Window already has content, + // just ensure that the window is active + if (rootFrame == null) + { + // Create a Frame to act as the navigation context and navigate to the first page + rootFrame = new TestFrame(typeof(MainPage)); + + rootFrame.NavigationFailed += OnNavigationFailed; + + if (e.PreviousExecutionState == ApplicationExecutionState.Terminated) + { + //TODO: Load state from previously suspended application + } + + // Place the frame in the current Window + Window.Current.Content = rootFrame; + } + + if (e.PrelaunchActivated == false) + { + if (rootFrame.Content == null) + { + // When the navigation stack isn't restored navigate to the first page, + // configuring the new page by passing required information as a navigation + // parameter + rootFrame.Navigate(typeof(MainPage), e.Arguments); + } + // Ensure the current window is active + Window.Current.Activate(); + } + } + + /// + /// Invoked when Navigation to a certain page fails + /// + /// The Frame which failed navigation + /// Details about the navigation failure + void OnNavigationFailed(object sender, NavigationFailedEventArgs e) + { + throw new Exception("Failed to load Page " + e.SourcePageType.FullName); + } + + /// + /// Invoked when application execution is being suspended. Application state is saved + /// without knowing whether the application will be terminated or resumed with the contents + /// of memory still intact. + /// + /// The source of the suspend request. + /// Details about the suspend request. + private void OnSuspending(object sender, SuspendingEventArgs e) + { + var deferral = e.SuspendingOperation.GetDeferral(); + //TODO: Save application state and stop any background activity + deferral.Complete(); + } + } +} diff --git a/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/AppThatUsesMUXIndirectly.csproj b/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/AppThatUsesMUXIndirectly.csproj new file mode 100644 index 0000000000..d259b26332 --- /dev/null +++ b/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/AppThatUsesMUXIndirectly.csproj @@ -0,0 +1,164 @@ + + + + + + + + Debug + x86 + {E1F7AB45-FD1A-4220-AC81-874FCBEFD294} + AppContainerExe + Properties + AppThatUsesMUXIndirectly + AppThatUsesMUXIndirectly + en-US + UAP + $(MuxSdkVersion) + 10.0.15063.0 + 14 + 512 + {A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + true + ..\..\..\build\MSTest.pfx + AppThatUsesMUXIndirectly + False + False + Never + x86 + 1 + OnApplicationRun + True + + + true + DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP + ;2008 + full + x86 + false + prompt + true + + + TRACE;NETFX_CORE;WINDOWS_UWP + true + ;2008 + pdbonly + x86 + false + prompt + true + true + + + true + DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP + ;2008 + full + ARM + false + prompt + true + + + TRACE;NETFX_CORE;WINDOWS_UWP + true + ;2008 + pdbonly + ARM + false + prompt + true + true + + + true + DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP + ;2008 + full + x64 + false + prompt + true + + + TRACE;NETFX_CORE;WINDOWS_UWP + true + ;2008 + pdbonly + x64 + false + prompt + true + true + + + PackageReference + + + + App.xaml + + + MainPage.xaml + + + + + + Designer + + + + + + + + + + + + + + + + MSBuild:Compile + Designer + + + MSBuild:Compile + Designer + + + + + 6.2.8 + + + 1.0.38 + + + + + {64ef662d-b1e4-47e9-b1d3-acb6044ac56d} + LibraryThatUsesMUX + + + + + 14.0 + + + + + + + + \ No newline at end of file diff --git a/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/Assets/LockScreenLogo.scale-200.png b/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/Assets/LockScreenLogo.scale-200.png new file mode 100644 index 0000000000000000000000000000000000000000..735f57adb5dfc01886d137b4e493d7e97cf13af3 GIT binary patch literal 1430 zcmaJ>TTC2P7~aKltDttVHYH6u8Io4i*}3fO&d$gd*bA_<3j~&e7%8(eXJLfhS!M@! zKrliY>>6yT4+Kr95$!DoD(Qn-5TP|{V_KS`k~E6(LGS@#`v$hQo&^^BKsw3HIsZBT z_y6C2n`lK@apunKojRQ^(_P}Mgewt$(^BBKCTZ;*xa?J3wQ7~@S0lUvbcLeq1Bg4o zH-bvQi|wt~L7q$~a-gDFP!{&TQfc3fX*6=uHv* zT&1&U(-)L%Xp^djI2?~eBF2cxC@YOP$+9d?P&h?lPy-9M2UT9fg5jKm1t$m#iWE{M zIf%q9@;fyT?0UP>tcw-bLkz;s2LlKl2qeP0w zECS7Ate+Awk|KQ+DOk;fl}Xsy4o^CY=pwq%QAAKKl628_yNPsK>?A>%D8fQG6IgdJ ztnxttBz#NI_a@fk7SU`WtrpsfZsNs9^0(2a z@C3#YO3>k~w7?2hipBf{#b6`}Xw1hlG$yi?;1dDs7k~xDAw@jiI*+tc;t2Lflg&bM)0!Y;0_@=w%`LW^8DsYpS#-bLOklX9r?Ei}TScw|4DbpW%+7 zFgAI)f51s}{y-eWb|vrU-Ya!GuYKP)J7z#*V_k^Xo>4!1Yqj*m)x&0L^tg3GJbVAJ zJ-Pl$R=NAabouV=^z_t;^K*0AvFs!vYU>_<|I^#c?>>CR<(T?=%{;U=aI*SbZADLH z&(f2wz_Y0??Tf|g;?|1Znw6}6U43Q#qNRwv1vp9uFn1)V#*4p&%$mP9x&15^OaBiDS(XppT|z^>;B{PLVEbS3IFYV yGvCsSX*m literal 0 HcmV?d00001 diff --git a/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/Assets/SplashScreen.scale-200.png b/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/Assets/SplashScreen.scale-200.png new file mode 100644 index 0000000000000000000000000000000000000000..023e7f1feda78d5100569825acedfd213a0d84e9 GIT binary patch literal 7700 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 literal 0 HcmV?d00001 diff --git a/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/Assets/Square150x150Logo.scale-200.png b/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/Assets/Square150x150Logo.scale-200.png new file mode 100644 index 0000000000000000000000000000000000000000..af49fec1a5484db1d52a7f9b5ec90a27c7030186 GIT binary patch literal 2937 zcma)84OCO-8BSud5)jwMLRVKgX(S?$n?Ld|vrsm<$CF7)&zTbyy1FE5bU`Q17MRv`9ue$;R(@8kR;#vJ*IM0>cJIAOte!d7oRgdH zd%ySjdB6L9=gX^A6)VzH7p2l@v~3zJAMw|DFy#^)F@@F*`mqUn=Il>l)8_+ab;nOW{%+iPx z+s{Eu|&pIs)Z7{La9~?xKfyl z#43?gjEL15d4WbOZo#SiP%>DB^+BcnJ=7dHEe;r#G=tuw|ka z%q@}##Uh7;tc%L_64m(kHtw74ty%BJMb)_1)#S0j`)F8_1jF7vScpsnH=0V19bO8y zR`0SjIdCUo&=>JwMQF8KHA<{ODHTiQh}0^@5QRmCA?gOH6_H3K^-_sNB^RrdNuK-R zOO*vOrKCVvDwgUck`kF(E7j{I#iiN;b*ZdCt4m@HPA`EuEqGGf4%!K<;(=I=&Vyrw z%TwcWtxa}8mCZ%Cyf&ActJ6_$ox5z6-D!0-dvnRx6t7y3d+h6QYpKWO;8OdnvERo7 zuEf>ih5`wqY)~o@OeVt-wM?Q!>QzdGRj!bz6fzYrfw$hZfAKzr2-M+D+R>}~oT574c;_3zquHcElqKIsryILt3g8n3jcMb+j?i?-L3FpZJ z2WRVBRdDPc+G5aaYg#5hpE+6nQ|(VSoxT3|biF;BUq#==-27Xi=gihDPYP$7?=9cP zYKE$jeQ|3~_L0VG-(F~2ZPyD0=k{J4Q~h(t__{-mz_w8{JDY9{`1ouzz!Vr5!ECdE z6U~O1k8c}24V7~zzXWTV-Pe4)y}wQJS&q%H5`Fo_f_JvIU489aCX$;P`u#!I-=^4ijC2{&9!O&h>mi?9oYD=GC#%)6{GzN6nQYw+Fal50!#x^asjBBR50i`+mho*ttoqV)ubM2KD9S~k7+FR4>{29?6 z{!l6kDdyTN0YJ9LgkPWeXm|gyi@zM3?0@{&pXT12w|78&W-q!RRF)&iLCEZVH<|fR zN0fr2^t8H(>L?>K#>^+jWROLral(Qy-xoBq1U7A&DV||wClb)Otd9?(gZ|8znMF}D zf<1haWz^s0qgecz;RFGt0C-B4g`jNGHsFU+;{<%t65v^sjk^h$lmWn#B0#_)9ij&d z-~lc`A)YYExi^7sBuPM^Y|wA2g*5?`K?#7tzELQYNxGo$UB$4J8RJp1k(8Jj+~hMT zlN~>M@KTTh^--8y3PK_NZ@AC!{PT=CziBzGd+wTJ^@icH!Bd}%)g8V)%K?|c&WTUk zy}qv1C%(fjRoZ4ozC3{O%@5?)XzH35zHns$pgU*Q?fj4v?fp1Qbm+j;3l;9jam9Da zXVcKjPlQ73x78QPu|Ffm6x?`~e3oD=gl=4kYK?={kD5j~QCXU)`HSdduNNENzA*2$ zOm3PzF!lN5e*06-f1Uot67wY#{o-S1!KZ7E=!~7ynnk9_iJR#kFoNbAOT#^2Gd17F zMmvU6>lndZQGd|ax9kUoXXO+$N?|j@6qpsF&_j7YXvwo_C{JpmLw5&#e6k>atv%es z5)7r*Wvv_JkUpT}M!_o!nVlEk1Zbl=a*2hQ*<|%*K1Glj^FcF`6kTzGQ3lz~2tCc@ z&x|tj;aH&1&9HwcJBcT`;{?a+pnej;M1HO(6Z{#J!cZA04hnFl;NXA+&`=7bjW_^o zfC40u3LMG?NdPtwGl>Tq6u}*QG)}-y;)lu-_>ee3kibW(69n0$0Zy!}9rQz%*v1iO zT9_H>99yIrSPYVy6^);rR}7Yo=J_T@hi+qhTZXnVWyf;JDYm5#eYLTxr*?kiNn!+Y zQ+LUkBafNJ#rH#C(?d5^;gw9o#%daEI{mA*LHPIHPU`#|H$hD zwm>0&+kahQ)E#%~k>&5@&#Vg82H?s%71=)(soi@174pi9--2{w{1$}Sz4zGn3Du&x bht0Iza^2ykEt4(epJ78uh5nDlX8(TxzDYwP literal 0 HcmV?d00001 diff --git a/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/Assets/Square44x44Logo.scale-200.png b/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/Assets/Square44x44Logo.scale-200.png new file mode 100644 index 0000000000000000000000000000000000000000..ce342a2ec8a61291ba76c54604aea7e9d20af11b GIT binary patch literal 1647 zcmaJ?eM}Q)7(e+G1Q(|`V9JhTI2>MkceK4;p;PR&$Pi?ejk3YQ_3o`S&|W_dsOZ8# zWPTt69g`t$ab`0cj-Y0yiBSOqmd)tG7G(}M5aP0_%&9TijB#&)I{zSE^4@#z^FF`l z`8{8`o%wlL(UI|y2!cdsuVamHH~H86F!*-15em4)NqUpCQM5?aoC_eCf@lV4wvF2a zjDQn1JBL69f&@2M3rvzJcfE!eZ8FZUBlFlC5RD)it33{mF9#B82AiyQE%w)`vlwa> zv{<1sm&kSKK$&%2jSFn7$t&P%%6Ue>R=EAnG8N7fqynWG8L3p!4801a;8{+nliO(qd(jNJ_?+9W3#hLIDLoT6~3fx9=`CC-D}-AMrpEO7HK zt3$GicGPc?GmDjy7K2P@La;eu4!$zWCZ`ym{Z$b zu-O6RM&K4JT|BIZB`E-gxqG%FzanI#+2FFmqHqXG7yxWB=w55RGOM)$xMb(>kSNR z2w=1AZi%z=AmG~yea~XaXJR!v7vLn(RUnELfiB1|6D84ICOS}^Zo2AdN}<&*h}G_u z{xZ!(%>tLT3J3<5XhWy-tg+6)0nmUUENLW8TWA{R6bgVd3X;anYFZ^IRis*_P-C-r z;i>%1^eL3UI2-{w8nuFFcs0e~7J{O2k^~Ce%+Ly4U?|=!0LH=t6()xi<^I-rs+9sF z*q{E-CxZbGPeu#a;XJwE;9S1?#R&uns>^0G3p`hEUF*v`M?@h%T%J%RChmD|EVydq zmHWh*_=S%emRC*mhxaVLzT@>Z2SX0u9v*DIJ@WC^kLVdlGV6LpK$KIrlJqc zpJ921)+3JJdTx|<`G&kXpKkjGJv=76R`yYIQ{#c-`%+`#V(7}Q;&@6U8!Td1`d;?N z_9mnI#?AA}4J!r)LN4!E-@H5eXauuB7TOawS>Y|{-P?NNx-lq+z1W-+y(;39P&&LP zL{N80?&=C*qKmdA^moMZRuPcD!B<*mq$ch=0Cnlitw#txRWhb3%TQvPqjkC`F69G4b! ze7z9MZ#+;_#l?H37UqUhDFb^l&s2{oM$3I0o^Q!yx;;V)QmCMo)Tb_ui|mit8MS?U zm##6$sZZ1$@|s%?l@>4Z<*Q}sRBSKMhb4I{e5LdEhsHIHTe8Bod5c>6QtT>$XgUBz z6MK`kO$=jmt@FqggOhJ5j~e@ygRbG;<{Vu)*+nn9aQeo0;$#j;|MS=S$&L?BeV25z xs3B`@=#`5TF{^6(A1rvdY@|-RtQ|iS5{tyX+wH?;n8E)G$kykv-D^wh{{!TZT%7;_ literal 0 HcmV?d00001 diff --git a/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/Assets/Square44x44Logo.targetsize-24_altform-unplated.png b/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/Assets/Square44x44Logo.targetsize-24_altform-unplated.png new file mode 100644 index 0000000000000000000000000000000000000000..f6c02ce97e0a802b85f6021e822c89f8bf57d5cd GIT binary patch literal 1255 zcmaJ>TWs4@7*5+{G#S+&C!qC#> zf>5N3P6jO*Cz>ug*(_DmW=)kea&m$gZ^+nyiF`;j%w@}y8)>p*SH}C`m?DXeieF2U zyQHecc_L%Gh!7GMt+hG06y;+|p4>m~}PjA}rKViGiEnn7G0ZO<>G|7q;2?NwGCM3s?eued6%hd$B+ z*kQJ{#~$S=DFE(%=E+UkmlEI*%3llUf~8Ja9YU1Vui0IbGBkW_gHB%Rd&!!ioX zs40O?i9I{};kle7GMvE7(rk`la=gTI)47=>%?q@^iL-nUo3}h4S}N-KHn8t5mVP8w z&bSErwp+37 zNJJ8?a|{r5Q3R0Z5s-LB1WHOwYC@7pCHWND#cL1cZ?{kJ368_*(UDWUDyb<}0y@o# zfMF016iMWPCb6obAxT$JlB6(2DrlXDTB&!0`!m??4F(qWMhjVZo?JXQmz`1*58Z=& zcDmB|S-E@j?BoFGix0flckqdS4jsPNzhfWyWIM98GxcLs89C(~dw%$_t;JjX-SD}E zfiGV;{8Q%8r}w9x>EEigW81>`kvnU@pK)4+xk9@+bNj9L!AAZ@SZ@q|)&BmY3+HZx zul~BeG4|}-;L%cHViQGQX?^zFfO0&#cHwel=d`lH9sJ-@Sl@n*(8J2>%Ac`IxyY?Q z{=GhWvC#gu-~Ia7*n{=+;qM?Ul_wy1+u7ho;=`>EwP^g~R@{unBds`!#@}tluZQpS zm)M~nYEifJWJGx?_6DcTy>#uh%>!H9=hb^(v`=m3F1{L>db=<5_tm+_&knAQ2EU$s Mu9UqpbNZeC0BbUo^Z)<= literal 0 HcmV?d00001 diff --git a/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/Assets/StoreLogo.png b/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/Assets/StoreLogo.png new file mode 100644 index 0000000000000000000000000000000000000000..7385b56c0e4d3c6b0efe3324aa1194157d837826 GIT binary patch literal 1451 zcmaJ>eN5D57_Z|bH;{0+1#mbl)eTU3{h)Wf7EZV?;HD@XL@{B`Ui%(2aMxQ~xdXSv z5nzWi(LW)U2=Vc-cY@s7nPt{i0hc6!7xN4NNHI#EQl>YNBy8l4%x9gr_W-j zEZMQmmTIy(>;lblRfh`dIyTgc9W5d!VP$L4(kKrN1c5G~(O_#xG zAJCNTstD^5SeXFB+&$h=ToJP2H>xr$iqPs-#O*;4(!Fjw25-!gEb*)mU}=)J;Iu>w zxK(5XoD0wrPSKQ~rbL^Cw6O_03*l*}i=ydbu7adJ6y;%@tjFeXIXT+ms30pmbOP%Q zX}S;+LBh8Tea~TSkHzvX6$rYb)+n&{kSbIqh|c7hmlxmwSiq5iVhU#iEQ<>a18|O^Sln-8t&+t`*{qBWo5M?wFM(JuimAOb5!K#D}XbslM@#1ZVz_;!9U zpfEpLAOz=0g@bd6Xj_ILi-x^!M}73h^o@}hM$1jflTs|Yuj9AL@A3<-?MV4!^4q`e z)fO@A;{9K^?W?DbnesnPr6kK>$zaKo&;FhFd(GYFCIU^T+OIMb%Tqo+P%oq(IdX7S zf6+HLO?7o0m+p>~Tp5UrXWh!UH!wZ5kv!E`_w)PTpI(#Iw{AS`gH4^b(bm^ZCq^FZ zY9DD7bH}rq9mg88+KgA$Zp!iWncuU2n1AuIa@=sWvUR-s`Qb{R*kk(SPU^`$6BXz8 zn#7yaFOIK%qGxyi`dYtm#&qqox0$h=pNi#u=M8zUG@bpiZ=3sT=1}Trr}39cC)H|v zbL?W)=&s4zrh)7>L(|cc%$1#!zfL?HjpeP%T+x_a+jZ16b^iKOHxFEX$7d|8${H-* zIrOJ5w&i$>*D>AKaIoYg`;{L@jM((Kt?$N$5OnuPqVvq**Nm}(f0wwOF%iX_Pba;V z;m@wxX&NcV3?<1+u?A{y_DIj7#m3Af1rCE)o`D&Y3}0%7E;iX1yMDiS)sh0wKi!36 zL!Wmq?P^Ku&rK~HJd97KkLTRl>ScGFYZNlYytWnhmuu|)L&ND8_PmkayQb{HOY640 bno1(wj@u8DCVuFR|31B*4ek@pZJqxCDDe1x literal 0 HcmV?d00001 diff --git a/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/Assets/Wide310x150Logo.scale-200.png b/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/Assets/Wide310x150Logo.scale-200.png new file mode 100644 index 0000000000000000000000000000000000000000..288995b397fdbef1fb7e85afd71445d5de1952c5 GIT binary patch literal 3204 zcmbVPeQXow8NYmBd90>}0NP?GhXW~VaeThm=a0tV#EwJMI!)6M3}|c4_Bl3=Kd>G0 z(GHx1wl<7(tP?FsOQkTilSo*iIvF%uArExJ73~P zSv1xEy!U(Wd4A9D`FQV@W3@F^qJ@PEF$@z`Z!*BbFsS(^?B zyiAzJ+q})bkgiQHWqEb*jJD-coHYr1^iocg)l!Qa{Xqs-l~6J}p-|##ZHYofskQ3$ zI0;xzXyhazBeXhIsg5A=%ufo@f)1yy&ScKS0;HF^!r_2UE^lpZEom(+@duma3awTv zCrCL-%D_SvYWIcdHkmI}#50(fkUi)Qgx!80ju>g1za^}ff>JI8Z@^-iCiaCgg@TgF z+vtE?Q9{VQUX&MW9SYYmGcxA14%N2@7FwBTD4N<(2{nWgV8$e3?-F=L^&FrtWn~(U_Q~~^uYiyeY6-KoTnfh9AWz@ zIKje0)u!_Lw)E}G!#kEfwKVdNt(UAf9*f>tEL_(=xco-T%jTi@7YlC3hs2ik%Le0H ztj}RTeCF(5mwvi3_56>-yB?l;J>-1%!9~=fs|QcNG3J~a@JCu`4SB460s0ZO+##4fFUSGLcj_ja^fL4&BKALfb#$6$O?>P@qx2Agl^x0i&ugt zsy5Pyu=()`7HRMG3IB7F1@`_ z+-!J%#i6e^U$e#+C%Q>_qVRzWRsG^W_n+@OcX@vzI&z;mzHNb!GQ?LWA(wtpqHqTM z1OFw_{Zn?fD)p)`c`kOgv{de=v@suGRqY{N^U7gI1VF3*F=obwaXI6ob5__Yn zVTguS!%(NI09J8x#AO_aW!9W7k*UvB;IWDFC3srwftr{kHj%g)fvnAm;&h_dnl~

MY- zf+K}sCe8qU6Ujs`3ua{U0Of$R_gVQBuUA za0v=mu#vIOqiiAZOr&h*$WyOw&k-xr$;G4Ixa!#TJNr>95(h>l%)PUy4p+^SgR(uR zta%k*?ny-+nAr8spEk1fo{J4i!b^Fia`N{_F6@zidA2ZTTrjl#^5Z-2KfB@Cu}l9s z(*|Z2jc?p~vn2f)3y9i*7zJV1L{$?|&q)4oaT;uXi6>1GkRXVTOzAz(RHEmr=eFIi z`}<>-Q?K0GN8!IYxeP1XKXO+jsJbp~o^);Bc;%b7Flpe7;1`Ny@3r7ZR;?R)aJt8C ziNlEC<@3f_lIV4TwV}&e;D!Ee5_|e#g0LUh=5vmYWYm7&2h*M>QPKvGh9-)wfMMW3 z8J9b%1k7dzPzO0_NGQy92BZ^FR6R~6;^6?lqO;-QUP4BY%cG%3vEhbm#>4vIhPBh3 z-+pZGjh$x%Hp{?=FHsMp0&wNPlj00us{&`1ZOZTqs8%4X&xH=UDr*xyBW(Zp&Em94 zf)ZSfn#yg0N)>!1kWdkqJ^S*z0FF5|fj&qcE#Na|%OY0$uO>!&hP+1ywfD_WXk@4J(?MBftK7>$Nvqh@tDuarN%PrTLQ2Uzysx>UV=V zk^RrDSvdQ?0;=hY67EgII-f4`t=+i*yS=Y~!XlqIy_4x&%+OdfbKOFPXS2X5%4R{N z$SQMX^AK6(fA + + + + + diff --git a/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/MainPage.xaml.cs b/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/MainPage.xaml.cs new file mode 100644 index 0000000000..b642b39676 --- /dev/null +++ b/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/MainPage.xaml.cs @@ -0,0 +1,29 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Runtime.InteropServices.WindowsRuntime; +using Windows.Foundation; +using Windows.Foundation.Collections; +using Windows.UI.Xaml; +using Windows.UI.Xaml.Controls; +using Windows.UI.Xaml.Controls.Primitives; +using Windows.UI.Xaml.Data; +using Windows.UI.Xaml.Input; +using Windows.UI.Xaml.Media; +using Windows.UI.Xaml.Navigation; + +namespace AppThatUsesMUXIndirectly +{ + public sealed partial class MainPage : Page + { + // This app does NOT directly consume MUX, but it references another library that does use MUX. + public MainPage() + { + + this.InitializeComponent(); + var userControl = new LibraryThatUsesMUX.TestUserControl1(); + layoutRoot.Children.Add(userControl); + } + } +} diff --git a/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/Package.appxmanifest b/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/Package.appxmanifest new file mode 100644 index 0000000000..89b4d938a0 --- /dev/null +++ b/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/Package.appxmanifest @@ -0,0 +1,40 @@ + + + + + + + AppThatUsesMUXIndirectly + Microsoft Corporation + Assets\StoreLogo.png + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/Properties/AssemblyInfo.cs b/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/Properties/AssemblyInfo.cs new file mode 100644 index 0000000000..30a88e53c5 --- /dev/null +++ b/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/Properties/AssemblyInfo.cs @@ -0,0 +1,29 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("AppThatUsesMUXIndirectly")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("AppThatUsesMUXIndirectly")] +[assembly: AssemblyCopyright("Copyright © 2019")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: ComVisible(false)] \ No newline at end of file diff --git a/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/Properties/Default.rd.xml b/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/Properties/Default.rd.xml new file mode 100644 index 0000000000..af00722cdf --- /dev/null +++ b/test/MUXControlsReleaseTest/AppThatUsesMUXIndirectly/Properties/Default.rd.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/test/MUXControlsReleaseTest/LibraryThatUsesMUX/LibraryThatUsesMUX.csproj b/test/MUXControlsReleaseTest/LibraryThatUsesMUX/LibraryThatUsesMUX.csproj new file mode 100644 index 0000000000..20d45a1333 --- /dev/null +++ b/test/MUXControlsReleaseTest/LibraryThatUsesMUX/LibraryThatUsesMUX.csproj @@ -0,0 +1,156 @@ + + + + + Debug + AnyCPU + {64EF662D-B1E4-47E9-B1D3-ACB6044AC56D} + Library + Properties + LibraryThatUsesMUX + LibraryThatUsesMUX + en-US + UAP + 10.0.18362.0 + 10.0.15063.0 + 14 + 512 + {A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE;NETFX_CORE;WINDOWS_UWP + prompt + 4 + + + x86 + true + bin\x86\Debug\ + DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP + ;2008 + full + false + prompt + + + x86 + bin\x86\Release\ + TRACE;NETFX_CORE;WINDOWS_UWP + true + ;2008 + pdbonly + false + prompt + + + ARM + true + bin\ARM\Debug\ + DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP + ;2008 + full + false + prompt + + + ARM + bin\ARM\Release\ + TRACE;NETFX_CORE;WINDOWS_UWP + true + ;2008 + pdbonly + false + prompt + + + ARM64 + true + bin\ARM64\Debug\ + DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP + ;2008 + full + false + prompt + + + ARM64 + bin\ARM64\Release\ + TRACE;NETFX_CORE;WINDOWS_UWP + true + ;2008 + pdbonly + false + prompt + + + x64 + true + bin\x64\Debug\ + DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP + ;2008 + full + false + prompt + + + x64 + bin\x64\Release\ + TRACE;NETFX_CORE;WINDOWS_UWP + true + ;2008 + pdbonly + false + prompt + + + PackageReference + + + + + TestUserControl1.xaml + + + + + + 6.2.8 + + + 2.1.190606001 + + + + + Designer + MSBuild:Compile + + + + 14.0 + + + + + + diff --git a/test/MUXControlsReleaseTest/LibraryThatUsesMUX/Properties/AssemblyInfo.cs b/test/MUXControlsReleaseTest/LibraryThatUsesMUX/Properties/AssemblyInfo.cs new file mode 100644 index 0000000000..a3958e6a4c --- /dev/null +++ b/test/MUXControlsReleaseTest/LibraryThatUsesMUX/Properties/AssemblyInfo.cs @@ -0,0 +1,29 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("LibraryThatUsesMUX")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("LibraryThatUsesMUX")] +[assembly: AssemblyCopyright("Copyright © 2019")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: ComVisible(false)] \ No newline at end of file diff --git a/test/MUXControlsReleaseTest/LibraryThatUsesMUX/Properties/LibraryThatUsesMUX.rd.xml b/test/MUXControlsReleaseTest/LibraryThatUsesMUX/Properties/LibraryThatUsesMUX.rd.xml new file mode 100644 index 0000000000..0f44f2fbeb --- /dev/null +++ b/test/MUXControlsReleaseTest/LibraryThatUsesMUX/Properties/LibraryThatUsesMUX.rd.xml @@ -0,0 +1,33 @@ + + + + + + + + + diff --git a/test/MUXControlsReleaseTest/LibraryThatUsesMUX/TestUserControl1.xaml b/test/MUXControlsReleaseTest/LibraryThatUsesMUX/TestUserControl1.xaml new file mode 100644 index 0000000000..ffe3fb9e6a --- /dev/null +++ b/test/MUXControlsReleaseTest/LibraryThatUsesMUX/TestUserControl1.xaml @@ -0,0 +1,17 @@ + + + + + + + diff --git a/test/MUXControlsReleaseTest/LibraryThatUsesMUX/TestUserControl1.xaml.cs b/test/MUXControlsReleaseTest/LibraryThatUsesMUX/TestUserControl1.xaml.cs new file mode 100644 index 0000000000..c7db892307 --- /dev/null +++ b/test/MUXControlsReleaseTest/LibraryThatUsesMUX/TestUserControl1.xaml.cs @@ -0,0 +1,44 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Runtime.InteropServices.WindowsRuntime; +using Windows.Foundation; +using Windows.Foundation.Collections; +using Windows.UI.Xaml; +using Windows.UI.Xaml.Controls; +using Windows.UI.Xaml.Controls.Primitives; +using Windows.UI.Xaml.Data; +using Windows.UI.Xaml.Input; +using Windows.UI.Xaml.Media; +using Windows.UI.Xaml.Navigation; + +// The User Control item template is documented at https://go.microsoft.com/fwlink/?LinkId=234236 + +namespace LibraryThatUsesMUX +{ + public sealed partial class TestUserControl1 : UserControl + { + public TestUserControl1() + { + EnsureResources(); + this.InitializeComponent(); + } + + private static bool ensureResourcesComplete; + + private static void EnsureResources() + { + if (ensureResourcesComplete) + return; + var dic = Application.Current?.Resources?.MergedDictionaries; + if (dic == null) + return; + if (!dic.Any(t => t is Microsoft.UI.Xaml.Controls.XamlControlsResources)) + { + Application.Current.Resources.MergedDictionaries.Add(new Microsoft.UI.Xaml.Controls.XamlControlsResources()); + } + ensureResourcesComplete = true; + } + } +} diff --git a/test/MUXControlsReleaseTest/MUXControls.ReleaseTest/AppThatUsesMUXIndirectlyTests.cs b/test/MUXControlsReleaseTest/MUXControls.ReleaseTest/AppThatUsesMUXIndirectlyTests.cs new file mode 100644 index 0000000000..d28d7dbca6 --- /dev/null +++ b/test/MUXControlsReleaseTest/MUXControls.ReleaseTest/AppThatUsesMUXIndirectlyTests.cs @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +using Microsoft.Windows.Apps.Test.Foundation.Controls; +using Windows.UI.Xaml.Tests.MUXControls.InteractionTests.Common; +using Windows.UI.Xaml.Tests.MUXControls.InteractionTests.Infra; +using Common; + +#if USING_TAEF +using WEX.TestExecution; +using WEX.TestExecution.Markup; +using WEX.Logging.Interop; +#else +using Microsoft.VisualStudio.TestTools.UnitTesting; +using Microsoft.VisualStudio.TestTools.UnitTesting.Logging; +#endif + +namespace MUXControls.ReleaseTest +{ + [TestClass] + public class AppThatUsesMUXIndirectlyTests + { + [ClassInitialize] + [TestProperty("RunAs", "User")] + [TestProperty("Classification", "Integration")] + [TestProperty("Platform", "Any")] + public static void ClassInitialize(TestContext testContext) + { + TestEnvironment.Initialize(testContext, TestType.AppThatUsesMuxIndirectly); + } + + [TestCleanup] + public void TestCleanup() + { + TestEnvironment.AssemblyCleanupWorker(TestType.AppThatUsesMuxIndirectly); + } + + + [TestMethod] + public void VerifyAppCanLaunch() + { + var uiobj = FindElement.ByName("MuxColorPicker"); + Verify.IsNotNull(uiobj, "Expected to find ColorPicker"); + } + } + + +} diff --git a/test/MUXControlsReleaseTest/MUXControls.ReleaseTest/MUXControls.ReleaseTest.Shared.projitems b/test/MUXControlsReleaseTest/MUXControls.ReleaseTest/MUXControls.ReleaseTest.Shared.projitems index 186af41c02..482c6fb356 100644 --- a/test/MUXControlsReleaseTest/MUXControls.ReleaseTest/MUXControls.ReleaseTest.Shared.projitems +++ b/test/MUXControlsReleaseTest/MUXControls.ReleaseTest/MUXControls.ReleaseTest.Shared.projitems @@ -116,6 +116,7 @@ PackageReference + diff --git a/test/MUXControlsReleaseTest/MUXControlsReleaseTest.sln b/test/MUXControlsReleaseTest/MUXControlsReleaseTest.sln index d92100e79f..75f6cfa54a 100644 --- a/test/MUXControlsReleaseTest/MUXControlsReleaseTest.sln +++ b/test/MUXControlsReleaseTest/MUXControlsReleaseTest.sln @@ -27,24 +27,52 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MUXControls.Test.TAEF", ".. EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MUXTestUtilities", "..\MUXTestUtilities\MUXTestUtilities.vcxproj", "{E7D6B510-3761-478A-8E22-72558DAD924E}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LibraryThatUsesMUX", "LibraryThatUsesMUX\LibraryThatUsesMUX.csproj", "{64EF662D-B1E4-47E9-B1D3-ACB6044AC56D}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AppThatUsesMUXIndirectly", "AppThatUsesMUXIndirectly\AppThatUsesMUXIndirectly.csproj", "{E1F7AB45-FD1A-4220-AC81-874FCBEFD294}" +EndProject Global GlobalSection(SharedMSBuildProjectFiles) = preSolution MUXControls.ReleaseTest\MUXControls.ReleaseTest.Shared.projitems*{815c5f42-3deb-4dcb-b143-1c088fce97f9}*SharedItemsImports = 13 ..\TestAppUtils\TestAppUtils.projitems*{cca3696f-5cac-421d-8528-4d9122b4d240}*SharedItemsImports = 4 + ..\TestAppUtils\TestAppUtils.projitems*{e1f7ab45-fd1a-4220-ac81-874fcbefd294}*SharedItemsImports = 4 ..\MUXControls.Test\MUXControls.Test.Shared.projitems*{e9fc52cd-519a-41bb-8092-523ffa9d5617}*SharedItemsImports = 13 ..\TestAppUtils\TestAppUtils.projitems*{fb0d3053-3135-403f-b542-977f3b781673}*SharedItemsImports = 13 EndGlobalSection GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug_test|Any CPU = Debug_test|Any CPU + Debug_test|ARM = Debug_test|ARM + Debug_test|arm64 = Debug_test|arm64 + Debug_test|x64 = Debug_test|x64 + Debug_test|x86 = Debug_test|x86 + Debug|Any CPU = Debug|Any CPU Debug|ARM = Debug|ARM Debug|arm64 = Debug|arm64 Debug|x64 = Debug|x64 Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU Release|ARM = Release|ARM Release|arm64 = Release|arm64 Release|x64 = Release|x64 Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {2F339B02-2B8C-4ED8-9C20-93E24A183A2B}.Debug_test|Any CPU.ActiveCfg = Release|x64 + {2F339B02-2B8C-4ED8-9C20-93E24A183A2B}.Debug_test|Any CPU.Build.0 = Release|x64 + {2F339B02-2B8C-4ED8-9C20-93E24A183A2B}.Debug_test|Any CPU.Deploy.0 = Release|x64 + {2F339B02-2B8C-4ED8-9C20-93E24A183A2B}.Debug_test|ARM.ActiveCfg = Debug|ARM + {2F339B02-2B8C-4ED8-9C20-93E24A183A2B}.Debug_test|ARM.Build.0 = Debug|ARM + {2F339B02-2B8C-4ED8-9C20-93E24A183A2B}.Debug_test|ARM.Deploy.0 = Debug|ARM + {2F339B02-2B8C-4ED8-9C20-93E24A183A2B}.Debug_test|arm64.ActiveCfg = Release|x64 + {2F339B02-2B8C-4ED8-9C20-93E24A183A2B}.Debug_test|arm64.Build.0 = Release|x64 + {2F339B02-2B8C-4ED8-9C20-93E24A183A2B}.Debug_test|arm64.Deploy.0 = Release|x64 + {2F339B02-2B8C-4ED8-9C20-93E24A183A2B}.Debug_test|x64.ActiveCfg = Debug|x64 + {2F339B02-2B8C-4ED8-9C20-93E24A183A2B}.Debug_test|x64.Build.0 = Debug|x64 + {2F339B02-2B8C-4ED8-9C20-93E24A183A2B}.Debug_test|x64.Deploy.0 = Debug|x64 + {2F339B02-2B8C-4ED8-9C20-93E24A183A2B}.Debug_test|x86.ActiveCfg = Debug|Win32 + {2F339B02-2B8C-4ED8-9C20-93E24A183A2B}.Debug_test|x86.Build.0 = Debug|Win32 + {2F339B02-2B8C-4ED8-9C20-93E24A183A2B}.Debug_test|x86.Deploy.0 = Debug|Win32 + {2F339B02-2B8C-4ED8-9C20-93E24A183A2B}.Debug|Any CPU.ActiveCfg = Debug|Win32 {2F339B02-2B8C-4ED8-9C20-93E24A183A2B}.Debug|ARM.ActiveCfg = Debug|ARM {2F339B02-2B8C-4ED8-9C20-93E24A183A2B}.Debug|ARM.Build.0 = Debug|ARM {2F339B02-2B8C-4ED8-9C20-93E24A183A2B}.Debug|ARM.Deploy.0 = Debug|ARM @@ -55,6 +83,7 @@ Global {2F339B02-2B8C-4ED8-9C20-93E24A183A2B}.Debug|x86.ActiveCfg = Debug|Win32 {2F339B02-2B8C-4ED8-9C20-93E24A183A2B}.Debug|x86.Build.0 = Debug|Win32 {2F339B02-2B8C-4ED8-9C20-93E24A183A2B}.Debug|x86.Deploy.0 = Debug|Win32 + {2F339B02-2B8C-4ED8-9C20-93E24A183A2B}.Release|Any CPU.ActiveCfg = Release|Win32 {2F339B02-2B8C-4ED8-9C20-93E24A183A2B}.Release|ARM.ActiveCfg = Release|ARM {2F339B02-2B8C-4ED8-9C20-93E24A183A2B}.Release|ARM.Build.0 = Release|ARM {2F339B02-2B8C-4ED8-9C20-93E24A183A2B}.Release|ARM.Deploy.0 = Release|ARM @@ -65,6 +94,18 @@ Global {2F339B02-2B8C-4ED8-9C20-93E24A183A2B}.Release|x86.ActiveCfg = Release|Win32 {2F339B02-2B8C-4ED8-9C20-93E24A183A2B}.Release|x86.Build.0 = Release|Win32 {2F339B02-2B8C-4ED8-9C20-93E24A183A2B}.Release|x86.Deploy.0 = Release|Win32 + {CCA3696F-5CAC-421D-8528-4D9122B4D240}.Debug_test|Any CPU.ActiveCfg = Debug_test|x86 + {CCA3696F-5CAC-421D-8528-4D9122B4D240}.Debug_test|ARM.ActiveCfg = Debug_test|ARM + {CCA3696F-5CAC-421D-8528-4D9122B4D240}.Debug_test|ARM.Build.0 = Debug_test|ARM + {CCA3696F-5CAC-421D-8528-4D9122B4D240}.Debug_test|ARM.Deploy.0 = Debug_test|ARM + {CCA3696F-5CAC-421D-8528-4D9122B4D240}.Debug_test|arm64.ActiveCfg = Debug_test|x86 + {CCA3696F-5CAC-421D-8528-4D9122B4D240}.Debug_test|x64.ActiveCfg = Debug_test|x64 + {CCA3696F-5CAC-421D-8528-4D9122B4D240}.Debug_test|x64.Build.0 = Debug_test|x64 + {CCA3696F-5CAC-421D-8528-4D9122B4D240}.Debug_test|x64.Deploy.0 = Debug_test|x64 + {CCA3696F-5CAC-421D-8528-4D9122B4D240}.Debug_test|x86.ActiveCfg = Debug_test|x86 + {CCA3696F-5CAC-421D-8528-4D9122B4D240}.Debug_test|x86.Build.0 = Debug_test|x86 + {CCA3696F-5CAC-421D-8528-4D9122B4D240}.Debug_test|x86.Deploy.0 = Debug_test|x86 + {CCA3696F-5CAC-421D-8528-4D9122B4D240}.Debug|Any CPU.ActiveCfg = Debug|x86 {CCA3696F-5CAC-421D-8528-4D9122B4D240}.Debug|ARM.ActiveCfg = Debug|ARM {CCA3696F-5CAC-421D-8528-4D9122B4D240}.Debug|ARM.Build.0 = Debug|ARM {CCA3696F-5CAC-421D-8528-4D9122B4D240}.Debug|ARM.Deploy.0 = Debug|ARM @@ -75,6 +116,7 @@ Global {CCA3696F-5CAC-421D-8528-4D9122B4D240}.Debug|x86.ActiveCfg = Debug|x86 {CCA3696F-5CAC-421D-8528-4D9122B4D240}.Debug|x86.Build.0 = Debug|x86 {CCA3696F-5CAC-421D-8528-4D9122B4D240}.Debug|x86.Deploy.0 = Debug|x86 + {CCA3696F-5CAC-421D-8528-4D9122B4D240}.Release|Any CPU.ActiveCfg = Release|x86 {CCA3696F-5CAC-421D-8528-4D9122B4D240}.Release|ARM.ActiveCfg = Release|ARM {CCA3696F-5CAC-421D-8528-4D9122B4D240}.Release|ARM.Build.0 = Release|ARM {CCA3696F-5CAC-421D-8528-4D9122B4D240}.Release|ARM.Deploy.0 = Release|ARM @@ -85,6 +127,18 @@ Global {CCA3696F-5CAC-421D-8528-4D9122B4D240}.Release|x86.ActiveCfg = Release|x86 {CCA3696F-5CAC-421D-8528-4D9122B4D240}.Release|x86.Build.0 = Release|x86 {CCA3696F-5CAC-421D-8528-4D9122B4D240}.Release|x86.Deploy.0 = Release|x86 + {0FC6E6AF-0FC6-4793-B40E-806AE5C3A485}.Debug_test|Any CPU.ActiveCfg = Debug|Any CPU + {0FC6E6AF-0FC6-4793-B40E-806AE5C3A485}.Debug_test|Any CPU.Build.0 = Debug|Any CPU + {0FC6E6AF-0FC6-4793-B40E-806AE5C3A485}.Debug_test|ARM.ActiveCfg = Debug|Any CPU + {0FC6E6AF-0FC6-4793-B40E-806AE5C3A485}.Debug_test|ARM.Build.0 = Debug|Any CPU + {0FC6E6AF-0FC6-4793-B40E-806AE5C3A485}.Debug_test|arm64.ActiveCfg = Debug|Any CPU + {0FC6E6AF-0FC6-4793-B40E-806AE5C3A485}.Debug_test|arm64.Build.0 = Debug|Any CPU + {0FC6E6AF-0FC6-4793-B40E-806AE5C3A485}.Debug_test|x64.ActiveCfg = Debug|Any CPU + {0FC6E6AF-0FC6-4793-B40E-806AE5C3A485}.Debug_test|x64.Build.0 = Debug|Any CPU + {0FC6E6AF-0FC6-4793-B40E-806AE5C3A485}.Debug_test|x86.ActiveCfg = Debug|Any CPU + {0FC6E6AF-0FC6-4793-B40E-806AE5C3A485}.Debug_test|x86.Build.0 = Debug|Any CPU + {0FC6E6AF-0FC6-4793-B40E-806AE5C3A485}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0FC6E6AF-0FC6-4793-B40E-806AE5C3A485}.Debug|Any CPU.Build.0 = Debug|Any CPU {0FC6E6AF-0FC6-4793-B40E-806AE5C3A485}.Debug|ARM.ActiveCfg = Debug|Any CPU {0FC6E6AF-0FC6-4793-B40E-806AE5C3A485}.Debug|ARM.Build.0 = Debug|Any CPU {0FC6E6AF-0FC6-4793-B40E-806AE5C3A485}.Debug|arm64.ActiveCfg = Debug|Any CPU @@ -92,6 +146,8 @@ Global {0FC6E6AF-0FC6-4793-B40E-806AE5C3A485}.Debug|x64.Build.0 = Debug|Any CPU {0FC6E6AF-0FC6-4793-B40E-806AE5C3A485}.Debug|x86.ActiveCfg = Debug|Any CPU {0FC6E6AF-0FC6-4793-B40E-806AE5C3A485}.Debug|x86.Build.0 = Debug|Any CPU + {0FC6E6AF-0FC6-4793-B40E-806AE5C3A485}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0FC6E6AF-0FC6-4793-B40E-806AE5C3A485}.Release|Any CPU.Build.0 = Release|Any CPU {0FC6E6AF-0FC6-4793-B40E-806AE5C3A485}.Release|ARM.ActiveCfg = Release|Any CPU {0FC6E6AF-0FC6-4793-B40E-806AE5C3A485}.Release|ARM.Build.0 = Release|Any CPU {0FC6E6AF-0FC6-4793-B40E-806AE5C3A485}.Release|arm64.ActiveCfg = Release|Any CPU @@ -99,6 +155,18 @@ Global {0FC6E6AF-0FC6-4793-B40E-806AE5C3A485}.Release|x64.Build.0 = Release|Any CPU {0FC6E6AF-0FC6-4793-B40E-806AE5C3A485}.Release|x86.ActiveCfg = Release|Any CPU {0FC6E6AF-0FC6-4793-B40E-806AE5C3A485}.Release|x86.Build.0 = Release|Any CPU + {14018522-0223-4334-87D2-C343074DDD48}.Debug_test|Any CPU.ActiveCfg = Debug|Any CPU + {14018522-0223-4334-87D2-C343074DDD48}.Debug_test|Any CPU.Build.0 = Debug|Any CPU + {14018522-0223-4334-87D2-C343074DDD48}.Debug_test|ARM.ActiveCfg = Debug|Any CPU + {14018522-0223-4334-87D2-C343074DDD48}.Debug_test|ARM.Build.0 = Debug|Any CPU + {14018522-0223-4334-87D2-C343074DDD48}.Debug_test|arm64.ActiveCfg = Debug|Any CPU + {14018522-0223-4334-87D2-C343074DDD48}.Debug_test|arm64.Build.0 = Debug|Any CPU + {14018522-0223-4334-87D2-C343074DDD48}.Debug_test|x64.ActiveCfg = Debug|Any CPU + {14018522-0223-4334-87D2-C343074DDD48}.Debug_test|x64.Build.0 = Debug|Any CPU + {14018522-0223-4334-87D2-C343074DDD48}.Debug_test|x86.ActiveCfg = Debug|Any CPU + {14018522-0223-4334-87D2-C343074DDD48}.Debug_test|x86.Build.0 = Debug|Any CPU + {14018522-0223-4334-87D2-C343074DDD48}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {14018522-0223-4334-87D2-C343074DDD48}.Debug|Any CPU.Build.0 = Debug|Any CPU {14018522-0223-4334-87D2-C343074DDD48}.Debug|ARM.ActiveCfg = Debug|Any CPU {14018522-0223-4334-87D2-C343074DDD48}.Debug|ARM.Build.0 = Debug|Any CPU {14018522-0223-4334-87D2-C343074DDD48}.Debug|arm64.ActiveCfg = Debug|Any CPU @@ -106,6 +174,8 @@ Global {14018522-0223-4334-87D2-C343074DDD48}.Debug|x64.Build.0 = Debug|Any CPU {14018522-0223-4334-87D2-C343074DDD48}.Debug|x86.ActiveCfg = Debug|Any CPU {14018522-0223-4334-87D2-C343074DDD48}.Debug|x86.Build.0 = Debug|Any CPU + {14018522-0223-4334-87D2-C343074DDD48}.Release|Any CPU.ActiveCfg = Release|Any CPU + {14018522-0223-4334-87D2-C343074DDD48}.Release|Any CPU.Build.0 = Release|Any CPU {14018522-0223-4334-87D2-C343074DDD48}.Release|ARM.ActiveCfg = Release|Any CPU {14018522-0223-4334-87D2-C343074DDD48}.Release|ARM.Build.0 = Release|Any CPU {14018522-0223-4334-87D2-C343074DDD48}.Release|arm64.ActiveCfg = Release|Any CPU @@ -113,6 +183,18 @@ Global {14018522-0223-4334-87D2-C343074DDD48}.Release|x64.Build.0 = Release|Any CPU {14018522-0223-4334-87D2-C343074DDD48}.Release|x86.ActiveCfg = Release|Any CPU {14018522-0223-4334-87D2-C343074DDD48}.Release|x86.Build.0 = Release|Any CPU + {EAEB5D2C-B447-41BC-9DE7-BFCB964B6CA5}.Debug_test|Any CPU.ActiveCfg = Debug|Any CPU + {EAEB5D2C-B447-41BC-9DE7-BFCB964B6CA5}.Debug_test|Any CPU.Build.0 = Debug|Any CPU + {EAEB5D2C-B447-41BC-9DE7-BFCB964B6CA5}.Debug_test|ARM.ActiveCfg = Debug|Any CPU + {EAEB5D2C-B447-41BC-9DE7-BFCB964B6CA5}.Debug_test|ARM.Build.0 = Debug|Any CPU + {EAEB5D2C-B447-41BC-9DE7-BFCB964B6CA5}.Debug_test|arm64.ActiveCfg = Debug|Any CPU + {EAEB5D2C-B447-41BC-9DE7-BFCB964B6CA5}.Debug_test|arm64.Build.0 = Debug|Any CPU + {EAEB5D2C-B447-41BC-9DE7-BFCB964B6CA5}.Debug_test|x64.ActiveCfg = Debug|Any CPU + {EAEB5D2C-B447-41BC-9DE7-BFCB964B6CA5}.Debug_test|x64.Build.0 = Debug|Any CPU + {EAEB5D2C-B447-41BC-9DE7-BFCB964B6CA5}.Debug_test|x86.ActiveCfg = Debug|Any CPU + {EAEB5D2C-B447-41BC-9DE7-BFCB964B6CA5}.Debug_test|x86.Build.0 = Debug|Any CPU + {EAEB5D2C-B447-41BC-9DE7-BFCB964B6CA5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {EAEB5D2C-B447-41BC-9DE7-BFCB964B6CA5}.Debug|Any CPU.Build.0 = Debug|Any CPU {EAEB5D2C-B447-41BC-9DE7-BFCB964B6CA5}.Debug|ARM.ActiveCfg = Debug|Any CPU {EAEB5D2C-B447-41BC-9DE7-BFCB964B6CA5}.Debug|ARM.Build.0 = Debug|Any CPU {EAEB5D2C-B447-41BC-9DE7-BFCB964B6CA5}.Debug|arm64.ActiveCfg = Debug|Any CPU @@ -120,6 +202,8 @@ Global {EAEB5D2C-B447-41BC-9DE7-BFCB964B6CA5}.Debug|x64.Build.0 = Debug|Any CPU {EAEB5D2C-B447-41BC-9DE7-BFCB964B6CA5}.Debug|x86.ActiveCfg = Debug|Any CPU {EAEB5D2C-B447-41BC-9DE7-BFCB964B6CA5}.Debug|x86.Build.0 = Debug|Any CPU + {EAEB5D2C-B447-41BC-9DE7-BFCB964B6CA5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {EAEB5D2C-B447-41BC-9DE7-BFCB964B6CA5}.Release|Any CPU.Build.0 = Release|Any CPU {EAEB5D2C-B447-41BC-9DE7-BFCB964B6CA5}.Release|ARM.ActiveCfg = Release|Any CPU {EAEB5D2C-B447-41BC-9DE7-BFCB964B6CA5}.Release|ARM.Build.0 = Release|Any CPU {EAEB5D2C-B447-41BC-9DE7-BFCB964B6CA5}.Release|arm64.ActiveCfg = Release|Any CPU @@ -127,6 +211,18 @@ Global {EAEB5D2C-B447-41BC-9DE7-BFCB964B6CA5}.Release|x64.Build.0 = Release|Any CPU {EAEB5D2C-B447-41BC-9DE7-BFCB964B6CA5}.Release|x86.ActiveCfg = Release|Any CPU {EAEB5D2C-B447-41BC-9DE7-BFCB964B6CA5}.Release|x86.Build.0 = Release|Any CPU + {4D8C5D1B-F982-44A1-B744-DD0E51651BF2}.Debug_test|Any CPU.ActiveCfg = Debug|Any CPU + {4D8C5D1B-F982-44A1-B744-DD0E51651BF2}.Debug_test|Any CPU.Build.0 = Debug|Any CPU + {4D8C5D1B-F982-44A1-B744-DD0E51651BF2}.Debug_test|ARM.ActiveCfg = Debug|Any CPU + {4D8C5D1B-F982-44A1-B744-DD0E51651BF2}.Debug_test|ARM.Build.0 = Debug|Any CPU + {4D8C5D1B-F982-44A1-B744-DD0E51651BF2}.Debug_test|arm64.ActiveCfg = Debug|Any CPU + {4D8C5D1B-F982-44A1-B744-DD0E51651BF2}.Debug_test|arm64.Build.0 = Debug|Any CPU + {4D8C5D1B-F982-44A1-B744-DD0E51651BF2}.Debug_test|x64.ActiveCfg = Debug|Any CPU + {4D8C5D1B-F982-44A1-B744-DD0E51651BF2}.Debug_test|x64.Build.0 = Debug|Any CPU + {4D8C5D1B-F982-44A1-B744-DD0E51651BF2}.Debug_test|x86.ActiveCfg = Debug|Any CPU + {4D8C5D1B-F982-44A1-B744-DD0E51651BF2}.Debug_test|x86.Build.0 = Debug|Any CPU + {4D8C5D1B-F982-44A1-B744-DD0E51651BF2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4D8C5D1B-F982-44A1-B744-DD0E51651BF2}.Debug|Any CPU.Build.0 = Debug|Any CPU {4D8C5D1B-F982-44A1-B744-DD0E51651BF2}.Debug|ARM.ActiveCfg = Debug|Any CPU {4D8C5D1B-F982-44A1-B744-DD0E51651BF2}.Debug|ARM.Build.0 = Debug|Any CPU {4D8C5D1B-F982-44A1-B744-DD0E51651BF2}.Debug|arm64.ActiveCfg = Debug|Any CPU @@ -134,6 +230,8 @@ Global {4D8C5D1B-F982-44A1-B744-DD0E51651BF2}.Debug|x64.Build.0 = Debug|Any CPU {4D8C5D1B-F982-44A1-B744-DD0E51651BF2}.Debug|x86.ActiveCfg = Debug|Any CPU {4D8C5D1B-F982-44A1-B744-DD0E51651BF2}.Debug|x86.Build.0 = Debug|Any CPU + {4D8C5D1B-F982-44A1-B744-DD0E51651BF2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4D8C5D1B-F982-44A1-B744-DD0E51651BF2}.Release|Any CPU.Build.0 = Release|Any CPU {4D8C5D1B-F982-44A1-B744-DD0E51651BF2}.Release|ARM.ActiveCfg = Release|Any CPU {4D8C5D1B-F982-44A1-B744-DD0E51651BF2}.Release|ARM.Build.0 = Release|Any CPU {4D8C5D1B-F982-44A1-B744-DD0E51651BF2}.Release|arm64.ActiveCfg = Release|Any CPU @@ -141,6 +239,17 @@ Global {4D8C5D1B-F982-44A1-B744-DD0E51651BF2}.Release|x64.Build.0 = Release|Any CPU {4D8C5D1B-F982-44A1-B744-DD0E51651BF2}.Release|x86.ActiveCfg = Release|Any CPU {4D8C5D1B-F982-44A1-B744-DD0E51651BF2}.Release|x86.Build.0 = Release|Any CPU + {E7D6B510-3761-478A-8E22-72558DAD924E}.Debug_test|Any CPU.ActiveCfg = Release|Win32 + {E7D6B510-3761-478A-8E22-72558DAD924E}.Debug_test|Any CPU.Build.0 = Release|Win32 + {E7D6B510-3761-478A-8E22-72558DAD924E}.Debug_test|ARM.ActiveCfg = Debug|ARM + {E7D6B510-3761-478A-8E22-72558DAD924E}.Debug_test|ARM.Build.0 = Debug|ARM + {E7D6B510-3761-478A-8E22-72558DAD924E}.Debug_test|arm64.ActiveCfg = Debug|arm64 + {E7D6B510-3761-478A-8E22-72558DAD924E}.Debug_test|arm64.Build.0 = Debug|arm64 + {E7D6B510-3761-478A-8E22-72558DAD924E}.Debug_test|x64.ActiveCfg = Debug|x64 + {E7D6B510-3761-478A-8E22-72558DAD924E}.Debug_test|x64.Build.0 = Debug|x64 + {E7D6B510-3761-478A-8E22-72558DAD924E}.Debug_test|x86.ActiveCfg = Debug|Win32 + {E7D6B510-3761-478A-8E22-72558DAD924E}.Debug_test|x86.Build.0 = Debug|Win32 + {E7D6B510-3761-478A-8E22-72558DAD924E}.Debug|Any CPU.ActiveCfg = Debug|Win32 {E7D6B510-3761-478A-8E22-72558DAD924E}.Debug|ARM.ActiveCfg = Debug|ARM {E7D6B510-3761-478A-8E22-72558DAD924E}.Debug|ARM.Build.0 = Debug|ARM {E7D6B510-3761-478A-8E22-72558DAD924E}.Debug|arm64.ActiveCfg = Debug|arm64 @@ -149,6 +258,7 @@ Global {E7D6B510-3761-478A-8E22-72558DAD924E}.Debug|x64.Build.0 = Debug|x64 {E7D6B510-3761-478A-8E22-72558DAD924E}.Debug|x86.ActiveCfg = Debug|Win32 {E7D6B510-3761-478A-8E22-72558DAD924E}.Debug|x86.Build.0 = Debug|Win32 + {E7D6B510-3761-478A-8E22-72558DAD924E}.Release|Any CPU.ActiveCfg = Release|Win32 {E7D6B510-3761-478A-8E22-72558DAD924E}.Release|ARM.ActiveCfg = Release|ARM {E7D6B510-3761-478A-8E22-72558DAD924E}.Release|ARM.Build.0 = Release|ARM {E7D6B510-3761-478A-8E22-72558DAD924E}.Release|arm64.ActiveCfg = Release|arm64 @@ -157,6 +267,69 @@ Global {E7D6B510-3761-478A-8E22-72558DAD924E}.Release|x64.Build.0 = Release|x64 {E7D6B510-3761-478A-8E22-72558DAD924E}.Release|x86.ActiveCfg = Release|Win32 {E7D6B510-3761-478A-8E22-72558DAD924E}.Release|x86.Build.0 = Release|Win32 + {64EF662D-B1E4-47E9-B1D3-ACB6044AC56D}.Debug_test|Any CPU.ActiveCfg = Debug_test|Any CPU + {64EF662D-B1E4-47E9-B1D3-ACB6044AC56D}.Debug_test|Any CPU.Build.0 = Debug_test|Any CPU + {64EF662D-B1E4-47E9-B1D3-ACB6044AC56D}.Debug_test|ARM.ActiveCfg = Debug_test|ARM + {64EF662D-B1E4-47E9-B1D3-ACB6044AC56D}.Debug_test|ARM.Build.0 = Debug_test|ARM + {64EF662D-B1E4-47E9-B1D3-ACB6044AC56D}.Debug_test|arm64.ActiveCfg = Debug_test|ARM64 + {64EF662D-B1E4-47E9-B1D3-ACB6044AC56D}.Debug_test|arm64.Build.0 = Debug_test|ARM64 + {64EF662D-B1E4-47E9-B1D3-ACB6044AC56D}.Debug_test|x64.ActiveCfg = Debug_test|x64 + {64EF662D-B1E4-47E9-B1D3-ACB6044AC56D}.Debug_test|x64.Build.0 = Debug_test|x64 + {64EF662D-B1E4-47E9-B1D3-ACB6044AC56D}.Debug_test|x86.ActiveCfg = Debug_test|Win32 + {64EF662D-B1E4-47E9-B1D3-ACB6044AC56D}.Debug_test|x86.Build.0 = Debug_test|x86 + {64EF662D-B1E4-47E9-B1D3-ACB6044AC56D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {64EF662D-B1E4-47E9-B1D3-ACB6044AC56D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {64EF662D-B1E4-47E9-B1D3-ACB6044AC56D}.Debug|ARM.ActiveCfg = Debug|ARM + {64EF662D-B1E4-47E9-B1D3-ACB6044AC56D}.Debug|ARM.Build.0 = Debug|ARM + {64EF662D-B1E4-47E9-B1D3-ACB6044AC56D}.Debug|arm64.ActiveCfg = Debug|ARM64 + {64EF662D-B1E4-47E9-B1D3-ACB6044AC56D}.Debug|arm64.Build.0 = Debug|ARM64 + {64EF662D-B1E4-47E9-B1D3-ACB6044AC56D}.Debug|x64.ActiveCfg = Debug|x64 + {64EF662D-B1E4-47E9-B1D3-ACB6044AC56D}.Debug|x64.Build.0 = Debug|x64 + {64EF662D-B1E4-47E9-B1D3-ACB6044AC56D}.Debug|x86.ActiveCfg = Debug|x86 + {64EF662D-B1E4-47E9-B1D3-ACB6044AC56D}.Debug|x86.Build.0 = Debug|x86 + {64EF662D-B1E4-47E9-B1D3-ACB6044AC56D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {64EF662D-B1E4-47E9-B1D3-ACB6044AC56D}.Release|Any CPU.Build.0 = Release|Any CPU + {64EF662D-B1E4-47E9-B1D3-ACB6044AC56D}.Release|ARM.ActiveCfg = Release|ARM + {64EF662D-B1E4-47E9-B1D3-ACB6044AC56D}.Release|ARM.Build.0 = Release|ARM + {64EF662D-B1E4-47E9-B1D3-ACB6044AC56D}.Release|arm64.ActiveCfg = Release|ARM64 + {64EF662D-B1E4-47E9-B1D3-ACB6044AC56D}.Release|arm64.Build.0 = Release|ARM64 + {64EF662D-B1E4-47E9-B1D3-ACB6044AC56D}.Release|x64.ActiveCfg = Release|x64 + {64EF662D-B1E4-47E9-B1D3-ACB6044AC56D}.Release|x64.Build.0 = Release|x64 + {64EF662D-B1E4-47E9-B1D3-ACB6044AC56D}.Release|x86.ActiveCfg = Release|x86 + {64EF662D-B1E4-47E9-B1D3-ACB6044AC56D}.Release|x86.Build.0 = Release|x86 + {E1F7AB45-FD1A-4220-AC81-874FCBEFD294}.Debug_test|Any CPU.ActiveCfg = Debug_test|x86 + {E1F7AB45-FD1A-4220-AC81-874FCBEFD294}.Debug_test|ARM.ActiveCfg = Debug_test|ARM + {E1F7AB45-FD1A-4220-AC81-874FCBEFD294}.Debug_test|ARM.Build.0 = Debug_test|ARM + {E1F7AB45-FD1A-4220-AC81-874FCBEFD294}.Debug_test|ARM.Deploy.0 = Debug_test|ARM + {E1F7AB45-FD1A-4220-AC81-874FCBEFD294}.Debug_test|arm64.ActiveCfg = Debug_test|x86 + {E1F7AB45-FD1A-4220-AC81-874FCBEFD294}.Debug_test|x64.ActiveCfg = Debug_test|x64 + {E1F7AB45-FD1A-4220-AC81-874FCBEFD294}.Debug_test|x64.Build.0 = Debug_test|x64 + {E1F7AB45-FD1A-4220-AC81-874FCBEFD294}.Debug_test|x64.Deploy.0 = Debug_test|x64 + {E1F7AB45-FD1A-4220-AC81-874FCBEFD294}.Debug_test|x86.ActiveCfg = Debug_test|x86 + {E1F7AB45-FD1A-4220-AC81-874FCBEFD294}.Debug_test|x86.Build.0 = Debug_test|x86 + {E1F7AB45-FD1A-4220-AC81-874FCBEFD294}.Debug_test|x86.Deploy.0 = Debug_test|x86 + {E1F7AB45-FD1A-4220-AC81-874FCBEFD294}.Debug|Any CPU.ActiveCfg = Debug|x86 + {E1F7AB45-FD1A-4220-AC81-874FCBEFD294}.Debug|ARM.ActiveCfg = Debug|ARM + {E1F7AB45-FD1A-4220-AC81-874FCBEFD294}.Debug|ARM.Build.0 = Debug|ARM + {E1F7AB45-FD1A-4220-AC81-874FCBEFD294}.Debug|ARM.Deploy.0 = Debug|ARM + {E1F7AB45-FD1A-4220-AC81-874FCBEFD294}.Debug|arm64.ActiveCfg = Debug|x86 + {E1F7AB45-FD1A-4220-AC81-874FCBEFD294}.Debug|x64.ActiveCfg = Debug|x64 + {E1F7AB45-FD1A-4220-AC81-874FCBEFD294}.Debug|x64.Build.0 = Debug|x64 + {E1F7AB45-FD1A-4220-AC81-874FCBEFD294}.Debug|x64.Deploy.0 = Debug|x64 + {E1F7AB45-FD1A-4220-AC81-874FCBEFD294}.Debug|x86.ActiveCfg = Debug|x86 + {E1F7AB45-FD1A-4220-AC81-874FCBEFD294}.Debug|x86.Build.0 = Debug|x86 + {E1F7AB45-FD1A-4220-AC81-874FCBEFD294}.Debug|x86.Deploy.0 = Debug|x86 + {E1F7AB45-FD1A-4220-AC81-874FCBEFD294}.Release|Any CPU.ActiveCfg = Release|x86 + {E1F7AB45-FD1A-4220-AC81-874FCBEFD294}.Release|ARM.ActiveCfg = Release|ARM + {E1F7AB45-FD1A-4220-AC81-874FCBEFD294}.Release|ARM.Build.0 = Release|ARM + {E1F7AB45-FD1A-4220-AC81-874FCBEFD294}.Release|ARM.Deploy.0 = Release|ARM + {E1F7AB45-FD1A-4220-AC81-874FCBEFD294}.Release|arm64.ActiveCfg = Release|x86 + {E1F7AB45-FD1A-4220-AC81-874FCBEFD294}.Release|x64.ActiveCfg = Release|x64 + {E1F7AB45-FD1A-4220-AC81-874FCBEFD294}.Release|x64.Build.0 = Release|x64 + {E1F7AB45-FD1A-4220-AC81-874FCBEFD294}.Release|x64.Deploy.0 = Release|x64 + {E1F7AB45-FD1A-4220-AC81-874FCBEFD294}.Release|x86.ActiveCfg = Release|x86 + {E1F7AB45-FD1A-4220-AC81-874FCBEFD294}.Release|x86.Build.0 = Release|x86 + {E1F7AB45-FD1A-4220-AC81-874FCBEFD294}.Release|x86.Deploy.0 = Release|x86 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/test/MUXControlsReleaseTest/localpackages/readme.md b/test/MUXControlsReleaseTest/localpackages/readme.md new file mode 100644 index 0000000000..9242910f4c --- /dev/null +++ b/test/MUXControlsReleaseTest/localpackages/readme.md @@ -0,0 +1 @@ +This directory can be used to store local nupkg files to be consumed by the Release Test apps. \ No newline at end of file diff --git a/test/MUXControlsReleaseTest/nuget.config b/test/MUXControlsReleaseTest/nuget.config index 6eeea744bf..6d3e5f95c9 100644 --- a/test/MUXControlsReleaseTest/nuget.config +++ b/test/MUXControlsReleaseTest/nuget.config @@ -3,5 +3,6 @@ + \ No newline at end of file diff --git a/test/MUXControlsReleaseTest/updateUsedNugetPackageVersion.ps1 b/test/MUXControlsReleaseTest/updateUsedNugetPackageVersion.ps1 new file mode 100644 index 0000000000..9832e7ccc4 --- /dev/null +++ b/test/MUXControlsReleaseTest/updateUsedNugetPackageVersion.ps1 @@ -0,0 +1,30 @@ +[CmdLetBinding()] +Param( + [Parameter(mandatory=$true)] + [string]$newVersion, + + # this string literal is split in two to avoid this script finding it and overwriting itself. + [string]$currentPackageVersion = "2.1." + "190606001" +) + +$scriptDirectory = $script:MyInvocation.MyCommand.Path | Split-Path -Parent +pushd $scriptDirectory + +$numFilesReplaced = 0 +Get-ChildItem $scriptDirectory -r -File | + ForEach-Object { + $path = $_.FullName + $contents = [System.IO.File]::ReadAllText($path) + $newContents = $contents.Replace("$currentPackageVersion", "$newVersion") + if ($contents -ne $newContents) { + Write-Host "Updating version in $path" + $newContents | Set-Content $path -Encoding UTF8 + $numFilesReplaced += 1 + } + } + +if ($numFilesReplaced -eq 0) +{ + Write-Error "No files found with '$currentPackageVersion' in them." + Exit 1 +} \ No newline at end of file