moved some cred repo classes to a sub-namespace

This commit is contained in:
David Sparer
2017-05-03 17:54:51 -06:00
parent 873bc3f582
commit 467ceb89b1
17 changed files with 27 additions and 17 deletions

View File

@@ -1,5 +1,5 @@
using System.Linq;
using mRemoteNG.Credential;
using mRemoteNG.Credential.Repositories;
using mRemoteNG.Specs.Utilities;
using NUnit.Framework;
using TechTalk.SpecFlow;

View File

@@ -1,6 +1,7 @@
using System.Collections.Generic;
using System.Security;
using mRemoteNG.Credential;
using mRemoteNG.Credential.Repositories;
using NSubstitute;
using NUnit.Framework;

View File

@@ -2,6 +2,7 @@
using System.Collections.Generic;
using System.Linq;
using mRemoteNG.Credential;
using mRemoteNG.Credential.Repositories;
using NSubstitute;
using NUnit.Framework;

View File

@@ -19,6 +19,7 @@ using System.Windows.Forms;
using System.Xml;
using mRemoteNG.Config.Connections.Multiuser;
using mRemoteNG.Credential;
using mRemoteNG.Credential.Repositories;
using mRemoteNG.Messages.MessageWriters;
using mRemoteNG.Security;
using mRemoteNG.Security.SymmetricEncryption;

View File

@@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Security;
namespace mRemoteNG.Credential
namespace mRemoteNG.Credential.Repositories
{
public class CompositeRepositoryUnlocker
{

View File

@@ -1,6 +1,6 @@
using System.Collections.Generic;
namespace mRemoteNG.Credential
namespace mRemoteNG.Credential.Repositories
{
public class CredentialRepoUnlockerBuilder
{

View File

@@ -1,6 +1,6 @@
using System;
namespace mRemoteNG.Credential
namespace mRemoteNG.Credential.Repositories
{
public class CredentialRepositoryChangedArgs : EventArgs
{

View File

@@ -1,9 +1,8 @@
using System;
using System.ComponentModel;
using System.Security;
using mRemoteNG.Credential.Repositories;
namespace mRemoteNG.Credential
namespace mRemoteNG.Credential.Repositories
{
public class CredentialRepositoryConfig : ICredentialRepositoryConfig
{

View File

@@ -4,8 +4,7 @@ using System.Collections.Generic;
using System.Linq;
using mRemoteNG.Tools.CustomCollections;
namespace mRemoteNG.Credential
namespace mRemoteNG.Credential.Repositories
{
public class CredentialRepositoryList : ICredentialRepositoryList
{

View File

@@ -2,6 +2,7 @@
using System.Collections.Generic;
using BrightIdeasSoftware;
using mRemoteNG.Credential;
using mRemoteNG.Credential.Repositories;
using mRemoteNG.Tools.CustomCollections;
using mRemoteNG.UI.Controls.PageSequence;

View File

@@ -4,6 +4,7 @@ using System.Linq;
using System.Windows.Forms;
using BrightIdeasSoftware;
using mRemoteNG.Credential;
using mRemoteNG.Credential.Repositories;
using mRemoteNG.Tools.CustomCollections;
namespace mRemoteNG.UI.Controls

View File

@@ -3,6 +3,7 @@ using System.Drawing;
using System.Linq;
using System.Windows.Forms;
using mRemoteNG.Credential;
using mRemoteNG.Credential.Repositories;
namespace mRemoteNG.UI.Forms
{

View File

@@ -1,4 +1,6 @@
namespace mRemoteNG.UI.Forms.CredentialManagerPages
using mRemoteNG.Credential.Repositories;
namespace mRemoteNG.UI.Forms.CredentialManagerPages
{
partial class CredentialRepositoriesPage
{
@@ -28,7 +30,7 @@
/// </summary>
private void InitializeComponent()
{
mRemoteNG.Credential.CredentialRepositoryList credentialRepositoryList1 = new mRemoteNG.Credential.CredentialRepositoryList();
CredentialRepositoryList credentialRepositoryList1 = new CredentialRepositoryList();
this.buttonAdd = new System.Windows.Forms.Button();
this.buttonRemove = new System.Windows.Forms.Button();
this.buttonEdit = new System.Windows.Forms.Button();

View File

@@ -1,4 +1,6 @@
namespace mRemoteNG.UI.Forms.CredentialManagerPages
using mRemoteNG.Credential.Repositories;
namespace mRemoteNG.UI.Forms.CredentialManagerPages
{
partial class CredentialRepositorySelectionPage
{
@@ -28,7 +30,7 @@
/// </summary>
private void InitializeComponent()
{
mRemoteNG.Credential.CredentialRepositoryList credentialRepositoryList1 = new mRemoteNG.Credential.CredentialRepositoryList();
CredentialRepositoryList credentialRepositoryList1 = new CredentialRepositoryList();
this.credentialRepositoryListView = new mRemoteNG.UI.Controls.CredentialRepositoryListView();
this.buttonContinue = new System.Windows.Forms.Button();
this.buttonBack = new System.Windows.Forms.Button();

View File

@@ -1,5 +1,6 @@
using System.Collections.Generic;
using mRemoteNG.Credential;
using mRemoteNG.Credential.Repositories;
namespace mRemoteNG.UI.Forms
{

View File

@@ -2,6 +2,7 @@
using System.Windows.Forms;
using mRemoteNG.App;
using mRemoteNG.Credential;
using mRemoteNG.Credential.Repositories;
using mRemoteNG.UI.Forms;
using mRemoteNG.UI.Forms.CredentialManagerPages;

View File

@@ -215,11 +215,11 @@
<Compile Include="Connection\Protocol\Http\Connection.Protocol.HTTPS.CertEvent.cs" />
<Compile Include="Connection\Protocol\ProtocolFactory.cs" />
<Compile Include="Connection\Protocol\VNC\VNCEnum.cs" />
<Compile Include="Credential\CompositeRepositoryUnlocker.cs" />
<Compile Include="Credential\Repositories\CompositeRepositoryUnlocker.cs" />
<Compile Include="Credential\CredentialChangedEventArgs.cs" />
<Compile Include="Credential\CredentialDeletionMsgBoxConfirmer.cs" />
<Compile Include="Credential\CredentialDomainUserComparer.cs" />
<Compile Include="Credential\CredentialRepoUnlockerBuilder.cs" />
<Compile Include="Credential\Repositories\CredentialRepoUnlockerBuilder.cs" />
<Compile Include="Credential\CredentialServiceFactory.cs" />
<Compile Include="Credential\CredentialsService.cs" />
<Compile Include="Security\Factories\CryptoProviderFactoryFromSettings.cs" />
@@ -230,11 +230,11 @@
<Compile Include="Security\RandomGenerator.cs" />
<Compile Include="Tools\CustomCollections\IFullyNotifiableList.cs" />
<Compile Include="Tools\CustomCollections\FullyObservableCollection.cs" />
<Compile Include="Credential\CredentialRepositoryChangedArgs.cs" />
<Compile Include="Credential\CredentialRepositoryList.cs" />
<Compile Include="Credential\Repositories\CredentialRepositoryChangedArgs.cs" />
<Compile Include="Credential\Repositories\CredentialRepositoryList.cs" />
<Compile Include="Credential\CredentialRecord.cs" />
<Compile Include="Credential\CredentialRecordTypeConverter.cs" />
<Compile Include="Credential\CredentialRepositoryConfig.cs" />
<Compile Include="Credential\Repositories\CredentialRepositoryConfig.cs" />
<Compile Include="Credential\ICredentialRecord.cs" />
<Compile Include="Credential\ICredentialRepositoryList.cs" />
<Compile Include="Credential\ICredentialRepository.cs" />