Skip to content

Commit 14df8de

Browse files
committed
Added meta package smoke test
1 parent da272cb commit 14df8de

File tree

4 files changed

+28
-1
lines changed

4 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:Loading/>
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/SmokeTest.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<!-- - - - - - Don't check-in changes in between this lines. Used for development. - - - - - -->
55
<PropertyGroup Condition="'$(CurrentProject)' == ''">
66
<!-- When writting the SmokeTests, change this to whichever Toolkit project you want to build a test to, then reload the project -->
7-
<CurrentProject>Microsoft.Toolkit.Uwp.UI.Controls.Core</CurrentProject>
7+
<CurrentProject>Microsoft.Toolkit.Uwp.UI.Controls</CurrentProject>
88
</PropertyGroup>
99
<PropertyGroup Condition="'$(NuGetPackageVersion)' == ''">
1010
<NuGetPackageVersion>To Fill In With Local Version Number</NuGetPackageVersion>

SmokeTests/SmokeTests.proj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
Microsoft.Toolkit.Uwp.UI;
2020
Microsoft.Toolkit.Uwp.UI.Animations;
2121
Microsoft.Toolkit.Uwp.UI.Behaviors;
22+
Microsoft.Toolkit.Uwp.UI.Controls;
2223
Microsoft.Toolkit.Uwp.UI.Controls.Core;
2324
Microsoft.Toolkit.Uwp.UI.Controls.DataGrid;
2425
Microsoft.Toolkit.Uwp.UI.Controls.Layout;

0 commit comments

Comments
 (0)