Skip to content

Commit

Permalink
VE - Refactoring to be completly isolated from WD.Services repos. Nam…
Browse files Browse the repository at this point in the history
…espace and Assembly renaming
  • Loading branch information
Eli Zeitlin committed Oct 19, 2016
1 parent 558d201 commit 7712a35
Show file tree
Hide file tree
Showing 68 changed files with 3,478 additions and 110 deletions.
5 changes: 3 additions & 2 deletions Vault/Explorer/ActivationUri.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@
using System.Text.RegularExpressions;
using System.Threading;
using System.Windows.Forms;
using VaultLibrary;

namespace Microsoft.PS.Common.Vault.Explorer
namespace VaultExplorer
{
public class ActivationUri : VaultLinkUri
{
Expand Down Expand Up @@ -38,7 +39,7 @@ public void PerformAction(Vault vault)
{
switch (Action)
{
case Action.Default:
case VaultLibrary.Action.Default:
CopyToClipboard(vault);
break;
default:
Expand Down
2 changes: 1 addition & 1 deletion Vault/Explorer/AddFileEventArgs.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace Microsoft.PS.Common.Vault.Explorer
namespace VaultExplorer
{
public class AddFileEventArgs : EventArgs
{
Expand Down
2 changes: 1 addition & 1 deletion Vault/Explorer/CertificateDialog.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Vault/Explorer/CertificateDialog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
using System.Threading.Tasks;
using System.Windows.Forms;

namespace Microsoft.PS.Common.Vault.Explorer
namespace VaultExplorer
{
public partial class CertificateDialog : ItemDialogBase<PropertyObjectCertificate, CertificateBundle>
{
Expand Down
3 changes: 2 additions & 1 deletion Vault/Explorer/CertificateValueObject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using VaultLibrary;

namespace Microsoft.PS.Common.Vault.Explorer
namespace VaultExplorer
{
/// <summary>
/// Certificate (.cer, .crt, .pfx, .p12, .pfxb64, .p12b64) based secret value JSON object
Expand Down
2 changes: 1 addition & 1 deletion Vault/Explorer/ContentType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
using System.Text;
using System.Threading.Tasks;

namespace Microsoft.PS.Common.Vault.Explorer
namespace VaultExplorer
{
/// <summary>
/// See here:
Expand Down
3 changes: 2 additions & 1 deletion Vault/Explorer/CustomTag.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using VaultLibrary;

namespace Microsoft.PS.Common.Vault.Explorer
namespace VaultExplorer
{
[JsonObject]
public class CustomTag
Expand Down
2 changes: 1 addition & 1 deletion Vault/Explorer/DeleteTempFileInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Text;
using System.Threading.Tasks;

namespace Microsoft.PS.Common.Vault.Explorer
namespace VaultExplorer
{
/// <summary>
/// Deletes file if file location is under %TEMP% folder, to be used with using pattern
Expand Down
4 changes: 2 additions & 2 deletions Vault/Explorer/ExceptionDialog.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Vault/Explorer/ExceptionDialog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using System.Threading.Tasks;
using System.Windows.Forms;

namespace Microsoft.PS.Common.Vault.Explorer
namespace VaultExplorer
{
public partial class ExceptionDialog : FormTelemetry
{
Expand Down
3 changes: 2 additions & 1 deletion Vault/Explorer/FavoriteSecrets.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using VaultLibrary;

namespace Microsoft.PS.Common.Vault.Explorer
namespace VaultExplorer
{
[JsonObject]
public class FavoriteSecret
Expand Down
8 changes: 2 additions & 6 deletions Vault/Explorer/ISession.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using VaultLibrary;

namespace Microsoft.PS.Common.Vault.Explorer
namespace VaultExplorer
{
public interface ISession
{
Expand Down
4 changes: 2 additions & 2 deletions Vault/Explorer/ItemDialogBase.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Vault/Explorer/ItemDialogBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using System.Threading.Tasks;
using System.Windows.Forms;

namespace Microsoft.PS.Common.Vault.Explorer
namespace VaultExplorer
{
public enum ItemDialogBaseMode
{
Expand Down
6 changes: 3 additions & 3 deletions Vault/Explorer/ListViewItemBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
using VaultLibrary;

namespace Microsoft.PS.Common.Vault.Explorer
namespace VaultExplorer
{
/// <summary>
/// Base list view item which also presents itself nicely to PropertyGrid
Expand Down Expand Up @@ -69,7 +69,7 @@ protected ListViewItemBase(ISession session, int groupIndex,

public string Id => VaultHttpsUri.ToString();

public string ChangedBy => Common.Vault.Utils.GetChangedBy(Tags);
public string ChangedBy => VaultLibrary.Utils.GetChangedBy(Tags);

public string Md5 => Utils.GetMd5(Tags);

Expand Down
2 changes: 1 addition & 1 deletion Vault/Explorer/ListViewItemCertificate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
using System.Security.Cryptography.X509Certificates;
using Microsoft.Azure.KeyVault.Models;

namespace Microsoft.PS.Common.Vault.Explorer
namespace VaultExplorer
{
/// <summary>
/// Key Vault Certificate list view item which also presents itself nicely to PropertyGrid
Expand Down
2 changes: 1 addition & 1 deletion Vault/Explorer/ListViewItemSecret.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
using System.Linq;
using Microsoft.Azure.KeyVault.Models;

namespace Microsoft.PS.Common.Vault.Explorer
namespace VaultExplorer
{
/// <summary>
/// Secret list view item which also presents itself nicely to PropertyGrid
Expand Down
2 changes: 1 addition & 1 deletion Vault/Explorer/ListViewSecrets.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Vault/Explorer/ListViewSecrets.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
using System.Collections;
using System.Text.RegularExpressions;

namespace Microsoft.PS.Common.Vault.Explorer
namespace VaultExplorer
{
public partial class ListViewSecrets : ListView
{
Expand Down
Loading

0 comments on commit 7712a35

Please sign in to comment.