mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-01-16 09:16:49 +01:00
Fix more namespaces
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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
|
||||
{
|
||||
|
||||
@@ -11,7 +11,7 @@ using Windows.Win32;
|
||||
using Windows.Win32.System.Com;
|
||||
using WinRT;
|
||||
|
||||
namespace CmdPal.Models;
|
||||
namespace WindowsCommandPalette.Models;
|
||||
|
||||
public class ExtensionWrapper : IExtensionWrapper
|
||||
{
|
||||
|
||||
@@ -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
|
||||
{
|
||||
|
||||
@@ -10,7 +10,6 @@ using Microsoft.CmdPal.Extensions;
|
||||
using Microsoft.UI.Xaml;
|
||||
using Windows.Foundation;
|
||||
using Windows.System;
|
||||
using WindowsCommandPalette;
|
||||
|
||||
namespace WindowsCommandPalette.Views;
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user