Renamed Wox.Plugin.Indexer to Microsoft.Plugin.Indexer

This commit is contained in:
Alekhya Reddy
2020-04-06 14:00:14 -07:00
parent b9e437c6cd
commit f4a2741ba0
10 changed files with 13 additions and 14 deletions

View File

@@ -8,10 +8,10 @@ using Wox.Plugin;
using System.IO;
using System.ComponentModel;
using Wox.Infrastructure.Storage;
using Wox.Plugin.Indexer.SearchHelper;
using Microsoft.Plugin.Indexer.SearchHelper;
using Microsoft.Search.Interop;
namespace Wox.Plugin.Indexer
namespace Microsoft.Plugin.Indexer
{
class Main : IPlugin, ISavable, IPluginI18n
{

View File

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Wox.Plugin.Indexer.SearchHelper
namespace Microsoft.Plugin.Indexer.SearchHelper
{
public class SearchResult
{

View File

@@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Data.OleDb;
using Microsoft.Search.Interop;
namespace Wox.Plugin.Indexer.SearchHelper
namespace Microsoft.Plugin.Indexer.SearchHelper
{
public class WindowsSearchAPI
{

View File

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Wox.Plugin.Indexer
namespace Microsoft.Plugin.Indexer
{
public class Settings
{

View File

@@ -3,7 +3,7 @@ using System;
using System.Collections.Generic;
using System.Data.OleDb;
using Microsoft.Search.Interop;
using Wox.Plugin.Indexer.SearchHelper;
using Microsoft.Plugin.Indexer.SearchHelper;
namespace Wox.Test.Plugins
{

View File

@@ -39,7 +39,6 @@
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Plugins\Wox.Plugin.Indexer\Wox.Plugin.Indexer.csproj" />
<ProjectReference Include="..\Wox.Core\Wox.Core.csproj" />
<ProjectReference Include="..\Wox.Infrastructure\Wox.Infrastructure.csproj" />
<ProjectReference Include="..\Wox.Plugin\Wox.Plugin.csproj" />