Fix more namespaces

This commit is contained in:
Kristen Schau
2024-09-16 16:42:02 -04:00
parent 4a5fd00ce1
commit 55b4ad62bf
10 changed files with 8 additions and 11 deletions

View File

@@ -9,7 +9,7 @@ using Microsoft.CmdPal.Common.Services;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.UI.Xaml;
using Microsoft.Windows.CommandPalette.Services;
using WindowsCommandPalette.Services;
// To learn more about WinUI, the WinUI project structure,
// and more about our project templates, see: http://aka.ms/winui-project-info.

View File

@@ -4,10 +4,10 @@
using System.ComponentModel;
using System.Runtime.InteropServices;
using CmdPal.Models;
using Microsoft.CmdPal.Extensions;
using Microsoft.UI.Dispatching;
using Microsoft.UI.Xaml.Controls;
using WindowsCommandPalette.Models;
using WindowsCommandPalette.Views;
namespace WindowsCommandPalette;

View File

@@ -3,9 +3,9 @@
// See the LICENSE file in the project root for more information.
using System.Collections.Specialized;
using CmdPal.Models;
using Microsoft.CmdPal.Extensions;
using Microsoft.CmdPal.Extensions.Helpers;
using WindowsCommandPalette.Models;
using WindowsCommandPalette.Views;
namespace WindowsCommandPalette;

View File

@@ -2,7 +2,7 @@
// The Microsoft Corporation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
namespace CmdPal.Models;
namespace WindowsCommandPalette.Models;
public class ExtensionObject<T> // where T : IInspectable
{

View File

@@ -11,7 +11,7 @@ using Windows.Win32;
using Windows.Win32.System.Com;
using WinRT;
namespace CmdPal.Models;
namespace WindowsCommandPalette.Models;
public class ExtensionWrapper : IExtensionWrapper
{

View File

@@ -2,7 +2,6 @@
// The Microsoft Corporation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using CmdPal.Models;
using Microsoft.CmdPal.Common.Contracts;
using Microsoft.CmdPal.Common.Extensions;
using Microsoft.CmdPal.Common.Services;
@@ -11,8 +10,9 @@ using Microsoft.UI.Xaml;
using Windows.ApplicationModel;
using Windows.ApplicationModel.AppExtensions;
using Windows.Foundation.Collections;
using WindowsCommandPalette.Models;
namespace Microsoft.Windows.CommandPalette.Services;
namespace WindowsCommandPalette.Services;
public class ExtensionService : IExtensionService, IDisposable
{

View File

@@ -10,7 +10,6 @@ using Microsoft.CmdPal.Extensions;
using Microsoft.UI.Xaml;
using Windows.Foundation;
using Windows.System;
using WindowsCommandPalette;
namespace WindowsCommandPalette.Views;

View File

@@ -7,7 +7,6 @@ using System.Runtime.InteropServices;
using Microsoft.CmdPal.Extensions;
using Microsoft.CmdPal.Extensions.Helpers;
using Microsoft.UI.Dispatching;
using WindowsCommandPalette;
namespace WindowsCommandPalette.Views;

View File

@@ -10,7 +10,6 @@ using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls;
using Microsoft.UI.Xaml.Input;
using Microsoft.UI.Xaml.Media.Animation;
using WindowsCommandPalette;
namespace WindowsCommandPalette.Views;

View File

@@ -5,7 +5,6 @@
using System.Collections.ObjectModel;
using System.Runtime.InteropServices;
using System.Runtime.InteropServices.WindowsRuntime;
using CmdPal.Models;
using Microsoft.CmdPal.Ext.Bookmarks;
using Microsoft.CmdPal.Ext.Calc;
using Microsoft.CmdPal.Ext.Settings;
@@ -14,6 +13,7 @@ using Microsoft.CmdPal.Extensions.Helpers;
using Windows.Foundation;
using WindowsCommandPalette.BuiltinCommands;
using WindowsCommandPalette.BuiltinCommands.AllApps;
using WindowsCommandPalette.Models;
namespace WindowsCommandPalette.Views;