Skip to content

Commit 1094b0a

Browse files
committed
Updated to WAS 0.8.0.
1 parent c4d33c2 commit 1094b0a

File tree

67 files changed

+123
-94
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+123
-94
lines changed

CommunityToolkit.WinUI.Connectivity/BluetoothLEHelper/BluetoothLEHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using System.Linq;
99
using System.Threading;
1010
using System.Threading.Tasks;
11-
using Microsoft.System;
11+
using Microsoft.UI.Dispatching;
1212
using Windows.Devices.Bluetooth;
1313
using Windows.Devices.Bluetooth.Advertisement;
1414
using Windows.Devices.Enumeration;

CommunityToolkit.WinUI.Connectivity/BluetoothLEHelper/ObservableBluetoothLEDevice.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
using System.Runtime.CompilerServices;
1212
using System.Threading;
1313
using System.Threading.Tasks;
14-
using Microsoft.System;
14+
using Microsoft.UI.Dispatching;
1515
using Microsoft.UI.Xaml.Media.Imaging;
1616
using Windows.Devices.Bluetooth;
1717
using Windows.Devices.Bluetooth.GenericAttributeProfile;

CommunityToolkit.WinUI.Connectivity/BluetoothLEHelper/ObservableGattCharacteristics.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using System.Linq;
88
using System.Runtime.CompilerServices;
99
using System.Threading.Tasks;
10-
using Microsoft.System;
10+
using Microsoft.UI.Dispatching;
1111
using Windows.Devices.Bluetooth;
1212
using Windows.Devices.Bluetooth.GenericAttributeProfile;
1313
using Windows.Security.Cryptography;

CommunityToolkit.WinUI.DeveloperTools/FocusTracker/FocusTracker.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using System.Linq;
88
using System.Text;
99
using System.Threading.Tasks;
10-
using Microsoft.System;
10+
using Microsoft.UI.Dispatching;
1111
using Microsoft.UI.Xaml;
1212
using Microsoft.UI.Xaml.Automation;
1313
using Microsoft.UI.Xaml.Controls;

CommunityToolkit.WinUI.Input.GazeInteraction/GazePointer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
using System.Linq;
99
using System.Threading;
1010
using System.Threading.Tasks;
11-
using Microsoft.System;
1211
using Microsoft.UI;
12+
using Microsoft.UI.Dispatching;
1313
using Microsoft.UI.Xaml;
1414
using Microsoft.UI.Xaml.Automation.Peers;
1515
using Microsoft.UI.Xaml.Controls;

CommunityToolkit.WinUI.SampleApp.Package/CommunityToolkit.WinUI.SampleApp.Package.wapproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,10 +125,10 @@
125125
<Content Include="Images\Wide310x150Logo.scale-400.png" />
126126
</ItemGroup>
127127
<ItemGroup>
128-
<PackageReference Include="Microsoft.ProjectReunion" Version="[0.5.7]">
128+
<PackageReference Include="Microsoft.ProjectReunion" Version="[0.8.0]">
129129
<IncludeAssets>build</IncludeAssets>
130130
</PackageReference>
131-
<PackageReference Include="Microsoft.ProjectReunion.WinUI" Version="[0.5.7]">
131+
<PackageReference Include="Microsoft.ProjectReunion.WinUI" Version="[0.8.0]">
132132
<IncludeAssets>build</IncludeAssets>
133133
</PackageReference>
134134
</ItemGroup>

CommunityToolkit.WinUI.SampleApp/CommunityToolkit.WinUI.SampleApp.csproj

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99

1010
<Platforms>x86;x64;arm64</Platforms>
1111
<RuntimeIdentifiers>win10-x86;win10-x64;win10-arm64</RuntimeIdentifiers>
12-
12+
13+
<UseWinUI>true</UseWinUI>
14+
1315
<ApplicationManifest>app.manifest</ApplicationManifest>
1416

1517
<LangVersion>8.0</LangVersion>
@@ -33,10 +35,10 @@
3335
<Version>0.10.0-alpha</Version>
3436
</PackageReference>
3537
<PackageReference Include="Microsoft.Xaml.Behaviors.WinUI.Managed">
36-
<Version>2.0.3</Version>
38+
<Version>2.0.4</Version>
3739
</PackageReference>
3840
<PackageReference Include="NotificationsVisualizerLibrary.WinUI">
39-
<Version>2.0.0</Version>
41+
<Version>2.0.1</Version>
4042
</PackageReference>
4143
<PackageReference Include="System.ValueTuple">
4244
<Version>4.5.0</Version>

CommunityToolkit.WinUI.SampleApp/Pages/SampleController.xaml.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ private async void InfoAreaPivot_OnSelectionChanged(object sender, SelectionChan
424424

425425
private void XamlCodeEditor_UpdateRequested(object sender, EventArgs e)
426426
{
427-
DispatcherQueue.TryEnqueue(Microsoft.System.DispatcherQueuePriority.Low, () =>
427+
DispatcherQueue.TryEnqueue(Microsoft.UI.Dispatching.DispatcherQueuePriority.Low, () =>
428428
{
429429
UpdateXamlRender(XamlCodeEditor.Text);
430430
});
@@ -575,7 +575,7 @@ private void XamlFrameworkElement_Loaded(object sender, RoutedEventArgs e)
575575
{
576576
fe.Loaded -= XamlFrameworkElement_Loaded;
577577

578-
DispatcherQueue.TryEnqueue(Microsoft.System.DispatcherQueuePriority.Low, () =>
578+
DispatcherQueue.TryEnqueue(Microsoft.UI.Dispatching.DispatcherQueuePriority.Low, () =>
579579
{
580580
(SamplePage as IXamlRenderListener)?.OnXamlRendered(fe);
581581
});

CommunityToolkit.WinUI.SampleApp/SamplePages/BluetoothLEHelper/BluetoothLEHelperPage.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
using System;
66
using CommunityToolkit.WinUI.Connectivity;
7-
using Microsoft.System;
7+
using Microsoft.UI.Dispatching;
88
using Microsoft.UI.Xaml;
99
using Microsoft.UI.Xaml.Controls;
1010
using Windows.Devices.Bluetooth.GenericAttributeProfile;

CommunityToolkit.WinUI.SampleApp/SamplePages/CanvasPathGeometry/CanvasPathGeometryPage.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
using CommunityToolkit.WinUI.UI.Media.Geometry;
1111
using Microsoft.Graphics.Canvas.Geometry;
1212
using Microsoft.Graphics.Canvas.UI.Xaml;
13-
using Microsoft.System;
1413
using Microsoft.UI;
14+
using Microsoft.UI.Dispatching;
1515
using Microsoft.UI.Xaml;
1616
using Microsoft.UI.Xaml.Controls;
1717
using Microsoft.UI.Xaml.Controls.Primitives;

0 commit comments

Comments
 (0)