Skip to content

Commit 139a9b9

Browse files
committed
Merge branch 'refactor/component-folder-structure' into marquee
2 parents 3a1709a + 209d718 commit 139a9b9

File tree

305 files changed

+3046
-1888
lines changed

Some content is hidden

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

305 files changed

+3046
-1888
lines changed

CommunityToolkit.Labs.Shared/App.xaml renamed to CommunityToolkit.App.Shared/App.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE file in the project root for more information. -->
2-
<Application x:Class="CommunityToolkit.Labs.Shared.App"
2+
<Application x:Class="CommunityToolkit.App.Shared.App"
33
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
44
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
55
<Application.Resources>

CommunityToolkit.Labs.Shared/App.xaml.cs renamed to CommunityToolkit.App.Shared/App.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// The .NET Foundation licenses this file to you under the MIT license.
33
// See the LICENSE file in the project root for more information.
44

5-
namespace CommunityToolkit.Labs.Shared;
5+
namespace CommunityToolkit.App.Shared;
66

77
/// <summary>
88
/// Provides application-specific behavior to supplement the default Application class.

CommunityToolkit.Labs.Shared/AppLoadingView.xaml renamed to CommunityToolkit.App.Shared/AppLoadingView.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE file in the project root for more information. -->
2-
<Page x:Class="CommunityToolkit.Labs.Shared.AppLoadingView"
2+
<Page x:Class="CommunityToolkit.App.Shared.AppLoadingView"
33
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
44
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
55
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
6-
xmlns:local="using:CommunityToolkit.Labs.Shared"
6+
xmlns:local="using:CommunityToolkit.App.Shared"
77
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
88
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"
99
mc:Ignorable="d">

CommunityToolkit.Labs.Shared/AppLoadingView.xaml.cs renamed to CommunityToolkit.App.Shared/AppLoadingView.xaml.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
// The .NET Foundation licenses this file to you under the MIT license.
33
// See the LICENSE file in the project root for more information.
44

5-
using CommunityToolkit.Labs.Core.SourceGenerators.Metadata;
6-
using CommunityToolkit.Labs.Core.SourceGenerators;
5+
using CommunityToolkit.Tooling.SampleGen.Metadata;
6+
using CommunityToolkit.Tooling.SampleGen;
77
using System.Runtime.InteropServices.WindowsRuntime;
88
using Windows.Foundation.Collections;
9-
using CommunityToolkit.Labs.Shared.Pages;
9+
using CommunityToolkit.App.Shared.Pages;
1010

1111
#if !WINAPPSDK
1212
using Windows.System;
@@ -24,7 +24,7 @@
2424
using Microsoft.UI.Xaml.Navigation;
2525
#endif
2626

27-
namespace CommunityToolkit.Labs.Shared;
27+
namespace CommunityToolkit.App.Shared;
2828

2929
/// <summary>
3030
/// Kicks off the loading process and determines whether to display a single-sample or multi-sample view.

0 commit comments

Comments
 (0)