Skip to content

Commit 14cbe9f

Browse files
Merge pull request #3880 from windows-toolkit/dev/7.0.1
Merge Dev/7.0.1 into main
2 parents cf29259 + 0b99272 commit 14cbe9f

File tree

20 files changed

+74
-25
lines changed

20 files changed

+74
-25
lines changed

Microsoft.Toolkit.Diagnostics/Microsoft.Toolkit.Diagnostics.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
- Guard: Helper methods to verify conditions when running code.
1212
- ThrowHelper: Helper methods to efficiently throw exceptions.
1313
</Description>
14-
<PackageTags>UWP Toolkit Windows IncrementalLoadingCollection String Array extensions helpers</PackageTags>
14+
<PackageTags>Windows;Community;Toolkit;WCT;UWP;Incremental;Loading;Collection;IncrementalLoadingCollection;String;Array;extensions;helpers</PackageTags>
1515
</PropertyGroup>
1616
<Choose>
1717
<When Condition=" '$(TargetFramework)' == 'netstandard1.4' ">

Microsoft.Toolkit.HighPerformance/Microsoft.Toolkit.HighPerformance.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
- Ref&lt;T&gt;: a stack-only struct that can store a reference to a value of a specified type.
2323
- NullableRef&lt;T&gt;: a stack-only struct similar to Ref&lt;T&gt;, which also supports nullable references.
2424
</Description>
25-
<PackageTags>UWP Toolkit Windows core standard unsafe span memory string array stream buffer extensions helpers parallel performance</PackageTags>
25+
<PackageTags>Windows;Community;Toolkit;WCT;UWP;core;standard;unsafe;span;memory;string;array;stream;buffer;extensions;helpers;parallel;performance</PackageTags>
2626
</PropertyGroup>
2727
<Choose>
2828
<When Condition=" '$(TargetFramework)' == 'netstandard1.4' ">

Microsoft.Toolkit.Mvvm/Microsoft.Toolkit.Mvvm.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
- StrongReferenceMessenger: a high-performance messaging system that trades weak references for speed.
1818
- Ioc: a helper class to configure dependency injection service containers.
1919
</Description>
20-
<PackageTags>UWP Toolkit Windows MVVM MVVMToolkit observable Ioc dependency injection services extensions helpers</PackageTags>
20+
<PackageTags>Windows;Community;Toolkit;WCT;UWP;WinUI;WPF;Xamarin;Forms;Uno;Platform;MVVM;Toolkit;MVVMToolkit;INotifyPropertyChanged;observable;Ioc;dependency injection;services;extensions;helpers</PackageTags>
2121
</PropertyGroup>
2222

2323
<!-- .NET Standard 2.0 doesn't have the Span<T> and IAsyncEnumerable<T> types -->

Microsoft.Toolkit.Uwp.Connectivity/Microsoft.Toolkit.Uwp.Connectivity.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFrameworks>uap10.0.17763</TargetFrameworks>
55
<Title>Windows Community Toolkit Devices</Title>
66
<Description>This library enables easier consumption of connectivity Devices/Peripherals and handle its connection to Windows devices. It contains BluetoothLE and Network connectivity helpers.</Description>
7-
<PackageTags>UWP Toolkit Windows Devices Bluetooth BluetoothLE BLE Networking</PackageTags>
7+
<PackageTags>Windows;Community;Toolkit;WCT;UWP;Devices;Bluetooth;LE;BluetoothLE;BLE;Networking</PackageTags>
88
</PropertyGroup>
99

1010
<ItemGroup>

Microsoft.Toolkit.Uwp.DeveloperTools/Microsoft.Toolkit.Uwp.DeveloperTools.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
-FocusTrackerControl : The FocusTracker Control is a feature that can be used to display information about the current focused XAML element.
1010
-Themes : Provides the source path of the resource dictionaries for the FocusTracker.
1111
</Description>
12-
<PackageTags>UWP Toolkit Windows Controls XAML Developer Tools Accessibility AlignmentGrid</PackageTags>
12+
<PackageTags>Windows;Community;Toolkit;WCT;UWP;Controls;XAML;Developer;Tools;Accessibility;Alignment;Grid;AlignmentGrid</PackageTags>
1313
<!-- ARM64 builds for managed apps use .NET Native. We can't use the Reflection Provider for that. -->
1414
<EnableTypeInfoReflection Condition="'$(Configuration)' == 'Debug'">false</EnableTypeInfoReflection>
1515
</PropertyGroup>

Microsoft.Toolkit.Uwp.Input.GazeInteraction/Microsoft.Toolkit.Uwp.Input.GazeInteraction.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>uap10.0.17134</TargetFramework>
55
<Title>Windows Community Toolkit Eye Gaze Library</Title>
66
<Description>A library to integrate gaze interactions using eye trackers into UWP applications</Description>
7-
<PackageTags>UWP Toolkit Windows Eye Gaze EyeTracker</PackageTags>
7+
<PackageTags>Windows;Community;Toolkit;WCT;UWP;Gaze;Eye;Tracker;EyeTracker</PackageTags>
88
<TargetPlatformVersion>10.0.19041.0</TargetPlatformVersion>
99
<TargetPlatformMinVersion>10.0.17134.0</TargetPlatformMinVersion>
1010
</PropertyGroup>

Microsoft.Toolkit.Uwp.Notifications/Toasts/Compat/ToastNotifierCompat.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -143,10 +143,10 @@ private void PreprocessToast(ToastNotification notification)
143143
// For apps that don't have identity...
144144
if (!DesktopBridgeHelpers.HasIdentity())
145145
{
146-
// If tag is specified
147-
if (!string.IsNullOrEmpty(notification.Tag))
146+
// If tag is specified and group isn't specified
147+
if (!string.IsNullOrEmpty(notification.Tag) && string.IsNullOrEmpty(notification.Group))
148148
{
149-
// If group isn't specified, we have to add a group since otherwise can't remove without a group
149+
// We have to add a group since otherwise can't remove without a group
150150
notification.Group = ToastNotificationManagerCompat.DEFAULT_GROUP;
151151
}
152152
}
@@ -157,10 +157,10 @@ private void PreprocessScheduledToast(ScheduledToastNotification notification)
157157
// For apps that don't have identity...
158158
if (!DesktopBridgeHelpers.HasIdentity())
159159
{
160-
// If tag is specified
161-
if (!string.IsNullOrEmpty(notification.Tag))
160+
// If tag is specified and group isn't specified
161+
if (!string.IsNullOrEmpty(notification.Tag) && string.IsNullOrEmpty(notification.Group))
162162
{
163-
// If group isn't specified, we have to add a group since otherwise can't remove without a group
163+
// We have to add a group since otherwise can't remove without a group
164164
notification.Group = ToastNotificationManagerCompat.DEFAULT_GROUP;
165165
}
166166
}

Microsoft.Toolkit.Uwp.UI.Animations/Microsoft.Toolkit.Uwp.UI.Animations.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
- Expressions: ExpressionNodes, ExpressionValues, ReferenceNodes, CompositionExtensions, ExpressionFunctions, OperationType
1515
- AnimationExtensions: Blur, Fade, Light, Offset, Rotate, Saturation, Scale
1616
</Description>
17-
<PackageTags>UWP Toolkit Windows Animations Composition Connected Implicit XAML</PackageTags>
17+
<PackageTags>Windows;Community;Toolkit;WCT;UWP;Animations;Composition;Connected;Implicit;XAML</PackageTags>
1818
<LangVersion>9.0</LangVersion>
1919
</PropertyGroup>
2020

Microsoft.Toolkit.Uwp.UI.Behaviors/Microsoft.Toolkit.Uwp.UI.Behaviors.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
- ViewportBehavior: Listening for element to enter or exit the ScrollViewer viewport
1515
- FadeHeaderBehavior, QuickReturnHeaderBehavior, StickyHeaderBehavior: Helpers for ListViewBase Header Behavior
1616
</Description>
17-
<PackageTags>UWP Toolkit Windows UI Behaviors XAML</PackageTags>
17+
<PackageTags>Windows;Community;Toolkit;WCT;UWP;UI;Behaviors;Interactivity;Interaction;XAML</PackageTags>
1818

1919
<UseWindowsDesktopSdk>true</UseWindowsDesktopSdk>
2020
</PropertyGroup>

Microsoft.Toolkit.Uwp.UI.Controls.Core/Microsoft.Toolkit.Uwp.UI.Controls.Core.csproj

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,24 @@
1414
- Loading: Helps to show content with animation to the user while the app is doing some calculation.
1515
- RadialProgressBar: Displays progress as a circle getting filled.
1616
- RotatorTile: Rotates through a set of items one-by-one like a live-tile.
17+
- TabbedCommandBar: A command bar that organizes features of an application into a series of tabs.
1718
- TextToolbar: A Toolbar for Editing Text attached to a RichEditBox. It can format RTF, Markdown, or use a Custom Formatter.
1819
- TileControl: A ContentControl that show an image repeated many times.
1920
</Description>
20-
<PackageTags>UWP Toolkit Windows Controls XAML Markdown CameraPreview Camera DropShadow ImageEx InAppNotification InfiniteCanvas Radial RadialProgressBar Scroll ScrollHeader Tile</PackageTags>
21+
<PackageTags>
22+
Windows;Community;Toolkit;WCT;UWP;Controls;XAML;
23+
Camera;Preview ;CameraPreview ;
24+
Drop;Shadow;Panel ;DropShadowPanel ;DropShadow ;
25+
Image;Ex ;ImageEx ;
26+
In;App;Notification;InAppNotification;InApp ;
27+
Loading ;
28+
Menu ;
29+
Radial;Progress;Bar;RadialProgressBar;ProgressBar ;
30+
Rotator;Tile ;RotatorTile ;
31+
Tabbed;Command;Bar ;TabbedCommandBar ;CommandBar ;
32+
Text;Tool;Bar ;TextToolBar ;ToolBar ;Markdown;
33+
Tile;Control ;TileControl ;
34+
</PackageTags>
2135
<!-- ARM64 builds for managed apps use .NET Native. We can't use the Reflection Provider for that. -->
2236
<EnableTypeInfoReflection Condition="'$(Configuration)' == 'Debug'">false</EnableTypeInfoReflection>
2337
<LangVersion>9.0</LangVersion>

0 commit comments

Comments
 (0)