mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 14:07:46 +08:00
moved some cred repo classes to a sub-namespace
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
using System.Linq;
|
||||
using mRemoteNG.Credential;
|
||||
using mRemoteNG.Credential.Repositories;
|
||||
using mRemoteNG.Specs.Utilities;
|
||||
using NUnit.Framework;
|
||||
using TechTalk.SpecFlow;
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Security;
|
||||
using mRemoteNG.Credential;
|
||||
using mRemoteNG.Credential.Repositories;
|
||||
using NSubstitute;
|
||||
using NUnit.Framework;
|
||||
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using mRemoteNG.Credential;
|
||||
using mRemoteNG.Credential.Repositories;
|
||||
using NSubstitute;
|
||||
using NUnit.Framework;
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -3,7 +3,7 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Security;
|
||||
|
||||
namespace mRemoteNG.Credential
|
||||
namespace mRemoteNG.Credential.Repositories
|
||||
{
|
||||
public class CompositeRepositoryUnlocker
|
||||
{
|
||||
@@ -1,6 +1,6 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace mRemoteNG.Credential
|
||||
namespace mRemoteNG.Credential.Repositories
|
||||
{
|
||||
public class CredentialRepoUnlockerBuilder
|
||||
{
|
||||
@@ -1,6 +1,6 @@
|
||||
using System;
|
||||
|
||||
namespace mRemoteNG.Credential
|
||||
namespace mRemoteNG.Credential.Repositories
|
||||
{
|
||||
public class CredentialRepositoryChangedArgs : EventArgs
|
||||
{
|
||||
@@ -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
|
||||
{
|
||||
@@ -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
|
||||
{
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
{
|
||||
|
||||
@@ -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();
|
||||
|
||||
@@ -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();
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
using System.Collections.Generic;
|
||||
using mRemoteNG.Credential;
|
||||
using mRemoteNG.Credential.Repositories;
|
||||
|
||||
namespace mRemoteNG.UI.Forms
|
||||
{
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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" />
|
||||
|
||||
Reference in New Issue
Block a user