File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/TestFramework/Extension.WinUI Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 32
32
<SystemReflectionMetadataVersion >1.6.0</SystemReflectionMetadataVersion >
33
33
<!-- UWP and WinUI dependencies -->
34
34
<MicrosoftNETCoreUniversalWindowsPlatformVersion >5.3.0</MicrosoftNETCoreUniversalWindowsPlatformVersion >
35
- <MicrosoftProjectReunionVersion >0.5 .0</MicrosoftProjectReunionVersion >
35
+ <MicrosoftProjectReunionVersion >0.8 .0</MicrosoftProjectReunionVersion >
36
36
<!-- / UWP and WinUI dependencies -->
37
37
<MoqVersion >4.8.3</MoqVersion >
38
38
<CastleCoreVersion >4.3.0</CastleCoreVersion >
Original file line number Diff line number Diff line change @@ -12,10 +12,10 @@ namespace Microsoft.VisualStudio.TestTools.UnitTesting.AppContainer
12
12
public class UITestMethodAttribute : TestMethodAttribute
13
13
{
14
14
/// <summary>
15
- /// Gets or sets the <see cref="Microsoft.System .DispatcherQueue"/> that should be used to invoke the UITestMethodAttribute.
15
+ /// Gets or sets the <see cref="Microsoft.UI.Dispatching .DispatcherQueue"/> that should be used to invoke the UITestMethodAttribute.
16
16
/// If none is provided, it will try to use the Microsoft.UI.Xaml.Window.Current.DispatcherQueue, which only works on UWP.
17
17
/// </summary>
18
- public static Microsoft . System . DispatcherQueue DispatcherQueue { get ; set ; }
18
+ public static Microsoft . UI . Dispatching . DispatcherQueue DispatcherQueue { get ; set ; }
19
19
20
20
/// <summary>
21
21
/// Executes the test method on the UI Thread.
@@ -59,7 +59,7 @@ public override TestResult[] Execute(ITestMethod testMethod)
59
59
{
60
60
var taskCompletionSource = new global ::System . Threading . Tasks . TaskCompletionSource < object > ( ) ;
61
61
62
- if ( ! dispatcher . TryEnqueue ( System . DispatcherQueuePriority . Normal , ( ) =>
62
+ if ( ! dispatcher . TryEnqueue ( Microsoft . UI . Dispatching . DispatcherQueuePriority . Normal , ( ) =>
63
63
{
64
64
try
65
65
{
You can’t perform that action at this time.
0 commit comments