Skip to content

Commit c67193d

Browse files
michael-hawkerRosuavio
authored andcommitted
Add Input package to Smoke Tests
1 parent d456a53 commit c67193d

File tree

3 files changed

+28
-1
lines changed

3 files changed

+28
-1
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<Page x:Class="SmokeTest.MainPage"
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:controls="using:Microsoft.Toolkit.Uwp.UI.Controls"
5+
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
6+
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
7+
mc:Ignorable="d"
8+
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
9+
<Grid>
10+
<controls:TokenizingTextBox/>
11+
</Grid>
12+
</Page>
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
// See the LICENSE file in the project root for more information.
4+
5+
namespace SmokeTest
6+
{
7+
public sealed partial class MainPage
8+
{
9+
public MainPage()
10+
{
11+
InitializeComponent();
12+
}
13+
}
14+
}

SmokeTests/SmokeTests.proj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,10 @@
2222
Microsoft.Toolkit.Uwp.UI.Controls.Core;
2323
Microsoft.Toolkit.Uwp.UI.Controls.DataGrid;
2424
Microsoft.Toolkit.Uwp.UI.Controls.Layout;
25+
Microsoft.Toolkit.Uwp.UI.Controls.Input;
2526
Microsoft.Toolkit.Uwp.UI.Controls.Markdown;
2627
Microsoft.Toolkit.Uwp.UI.Controls.Media;
27-
Microsoft.Toolkit.Uwp.UI.Controls.Primitives;
28+
Microsoft.Toolkit.Uwp.UI.Controls.Primitives;
2829
Microsoft.Toolkit.Uwp.UI.Media;
2930
</ToolkitPackages>
3031
</PropertyGroup>

0 commit comments

Comments
 (0)