mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-05-12 05:34:06 +02:00
Move ProgramRegistrySearch to Migration.Helpers namespace
This commit is contained in:
parent
33ef0d06f7
commit
226e9bf228
@ -1,8 +1,8 @@
|
||||
using Microsoft.Win32;
|
||||
using System;
|
||||
using System;
|
||||
using System.Linq;
|
||||
using Microsoft.Win32;
|
||||
|
||||
namespace TweetDick.Migration{
|
||||
namespace TweetDick.Migration.Helpers{
|
||||
static class ProgramRegistrySearch{
|
||||
public static string FindByDisplayName(string displayName){
|
||||
Predicate<RegistryKey> predicate = key => displayName.Equals(key.GetValue("DisplayName") as string,StringComparison.OrdinalIgnoreCase);
|
@ -4,6 +4,7 @@
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
using TweetDick.Core;
|
||||
using TweetDick.Migration.Helpers;
|
||||
|
||||
namespace TweetDick.Migration{
|
||||
static class MigrationManager{
|
||||
|
@ -105,7 +105,7 @@
|
||||
</Compile>
|
||||
<Compile Include="Migration\MigrationDecision.cs" />
|
||||
<Compile Include="Migration\MigrationManager.cs" />
|
||||
<Compile Include="Migration\ProgramRegistrySearch.cs" />
|
||||
<Compile Include="Migration\Helpers\ProgramRegistrySearch.cs" />
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<None Include="Configuration\app.config" />
|
||||
|
Loading…
Reference in New Issue
Block a user