diff --git a/bitwarden-directory-connector.sln b/bitwarden-directory-connector.sln
index 9f7b62aa..0006f96e 100644
--- a/bitwarden-directory-connector.sln
+++ b/bitwarden-directory-connector.sln
@@ -1,7 +1,7 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
-VisualStudioVersion = 15.0.26430.4
+VisualStudioVersion = 15.0.26730.10
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Console", "src\Console\Console.csproj", "{DD4E5CD2-C9DD-4912-9A25-1600A07BF8C2}"
EndProject
@@ -9,8 +9,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Core", "src\Core\Core.cspro
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Service", "src\Service\Service.csproj", "{A8FD8CED-5510-4EBD-AACE-5D3CBB7516DB}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "App", "src\App\App.csproj", "{C4A631EE-19DF-4A10-8526-CB6996EFA853}"
-EndProject
Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "Setup", "src\Setup\Setup.vdproj", "{4D852DF8-9327-43D0-93AB-FA68D4F3414B}"
EndProject
Global
@@ -31,14 +29,13 @@ Global
{A8FD8CED-5510-4EBD-AACE-5D3CBB7516DB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A8FD8CED-5510-4EBD-AACE-5D3CBB7516DB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A8FD8CED-5510-4EBD-AACE-5D3CBB7516DB}.Release|Any CPU.Build.0 = Release|Any CPU
- {C4A631EE-19DF-4A10-8526-CB6996EFA853}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {C4A631EE-19DF-4A10-8526-CB6996EFA853}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {C4A631EE-19DF-4A10-8526-CB6996EFA853}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {C4A631EE-19DF-4A10-8526-CB6996EFA853}.Release|Any CPU.Build.0 = Release|Any CPU
{4D852DF8-9327-43D0-93AB-FA68D4F3414B}.Debug|Any CPU.ActiveCfg = Debug
{4D852DF8-9327-43D0-93AB-FA68D4F3414B}.Release|Any CPU.ActiveCfg = Release
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {AB7EF6F7-C38B-4E66-BBF9-1F6915896CB0}
+ EndGlobalSection
EndGlobal
diff --git a/src/App/Alert.Designer.cs b/src/App/Alert.Designer.cs
deleted file mode 100644
index d7a4276e..00000000
--- a/src/App/Alert.Designer.cs
+++ /dev/null
@@ -1,72 +0,0 @@
-namespace App
-{
- partial class Alert
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if(disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- this.label1 = new System.Windows.Forms.Label();
- this.button1 = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label1
- //
- this.label1.Location = new System.Drawing.Point(12, 20);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(279, 77);
- this.label1.TabIndex = 0;
- this.label1.Text = "label1";
- this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // button1
- //
- this.button1.Location = new System.Drawing.Point(15, 116);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(276, 23);
- this.button1.TabIndex = 1;
- this.button1.Text = "button1";
- this.button1.UseVisualStyleBackColor = true;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // Alert
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(303, 162);
- this.Controls.Add(this.button1);
- this.Controls.Add(this.label1);
- this.Name = "Alert";
- this.Text = "Alert";
- this.ResumeLayout(false);
-
- }
-
- #endregion
-
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button button1;
- }
-}
\ No newline at end of file
diff --git a/src/App/Alert.cs b/src/App/Alert.cs
deleted file mode 100644
index 1afe6c12..00000000
--- a/src/App/Alert.cs
+++ /dev/null
@@ -1,33 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Data;
-using System.Drawing;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows.Forms;
-
-namespace App
-{
- public partial class Alert : Form
- {
- public bool ButtonClicked { get; set; }
-
- public Alert(string title, string label, string buttonText = "Ok")
- {
- InitializeComponent();
-
- Text = title;
- label1.Text = label;
- button1.Text = buttonText;
- }
-
- private void button1_Click(object sender, EventArgs e)
- {
- ButtonClicked = true;
- DialogResult = DialogResult.OK;
- Close();
- }
- }
-}
diff --git a/src/App/Alert.resx b/src/App/Alert.resx
deleted file mode 100644
index 1af7de15..00000000
--- a/src/App/Alert.resx
+++ /dev/null
@@ -1,120 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- text/microsoft-resx
-
-
- 2.0
-
-
- System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
\ No newline at end of file
diff --git a/src/App/App.config b/src/App/App.config
deleted file mode 100644
index 443afce1..00000000
--- a/src/App/App.config
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/App/App.csproj b/src/App/App.csproj
deleted file mode 100644
index a1cf17d9..00000000
--- a/src/App/App.csproj
+++ /dev/null
@@ -1,106 +0,0 @@
-
-
-
-
- Debug
- AnyCPU
- {C4A631EE-19DF-4A10-8526-CB6996EFA853}
- WinExe
- App
- App
- v4.5.2
- 512
- true
-
-
- AnyCPU
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
-
-
- AnyCPU
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Form
-
-
- Alert.cs
-
-
- Form
-
-
- Main.cs
-
-
-
- Form
-
-
- Prompt.cs
-
-
-
- Alert.cs
-
-
- Main.cs
-
-
- Prompt.cs
-
-
- ResXFileCodeGenerator
- Resources.Designer.cs
- Designer
-
-
- True
- Resources.resx
-
-
- SettingsSingleFileGenerator
- Settings.Designer.cs
-
-
- True
- Settings.settings
- True
-
-
-
-
-
-
-
- {ae082484-a34c-4b3a-a69f-49e5ef298b27}
- Core
-
-
-
-
\ No newline at end of file
diff --git a/src/App/Main.Designer.cs b/src/App/Main.Designer.cs
deleted file mode 100644
index 628d8151..00000000
--- a/src/App/Main.Designer.cs
+++ /dev/null
@@ -1,422 +0,0 @@
-namespace App
-{
- partial class Main
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if(disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- this.tabControl1 = new System.Windows.Forms.TabControl();
- this.tabPage1 = new System.Windows.Forms.TabPage();
- this.tabPage2 = new System.Windows.Forms.TabPage();
- this.tabPage3 = new System.Windows.Forms.TabPage();
- this.tabPage4 = new System.Windows.Forms.TabPage();
- this.tabPage5 = new System.Windows.Forms.TabPage();
- this.tabPage6 = new System.Windows.Forms.TabPage();
- this.label1 = new System.Windows.Forms.Label();
- this.pictureBox1 = new System.Windows.Forms.PictureBox();
- this.label2 = new System.Windows.Forms.Label();
- this.linkLabel1 = new System.Windows.Forms.LinkLabel();
- this.panel1 = new System.Windows.Forms.Panel();
- this.button2 = new System.Windows.Forms.Button();
- this.button3 = new System.Windows.Forms.Button();
- this.label3 = new System.Windows.Forms.Label();
- this.label4 = new System.Windows.Forms.Label();
- this.label5 = new System.Windows.Forms.Label();
- this.textBox1 = new System.Windows.Forms.TextBox();
- this.label6 = new System.Windows.Forms.Label();
- this.textBox2 = new System.Windows.Forms.TextBox();
- this.button4 = new System.Windows.Forms.Button();
- this.radioButton1 = new System.Windows.Forms.RadioButton();
- this.radioButton2 = new System.Windows.Forms.RadioButton();
- this.radioButton3 = new System.Windows.Forms.RadioButton();
- this.loginButton = new System.Windows.Forms.Button();
- this.label7 = new System.Windows.Forms.Label();
- this.usernameTextBox = new System.Windows.Forms.TextBox();
- this.label8 = new System.Windows.Forms.Label();
- this.passwordTextBox = new System.Windows.Forms.MaskedTextBox();
- this.tabControl1.SuspendLayout();
- this.tabPage1.SuspendLayout();
- this.tabPage2.SuspendLayout();
- this.tabPage4.SuspendLayout();
- this.tabPage5.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
- this.panel1.SuspendLayout();
- this.SuspendLayout();
- //
- // tabControl1
- //
- this.tabControl1.Controls.Add(this.tabPage1);
- this.tabControl1.Controls.Add(this.tabPage2);
- this.tabControl1.Controls.Add(this.tabPage3);
- this.tabControl1.Controls.Add(this.tabPage4);
- this.tabControl1.Controls.Add(this.tabPage5);
- this.tabControl1.Controls.Add(this.tabPage6);
- this.tabControl1.Location = new System.Drawing.Point(12, 132);
- this.tabControl1.Multiline = true;
- this.tabControl1.Name = "tabControl1";
- this.tabControl1.Padding = new System.Drawing.Point(10, 10);
- this.tabControl1.SelectedIndex = 0;
- this.tabControl1.Size = new System.Drawing.Size(579, 368);
- this.tabControl1.TabIndex = 0;
- //
- // tabPage1
- //
- this.tabPage1.Controls.Add(this.panel1);
- this.tabPage1.Location = new System.Drawing.Point(4, 36);
- this.tabPage1.Name = "tabPage1";
- this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage1.Size = new System.Drawing.Size(571, 328);
- this.tabPage1.TabIndex = 0;
- this.tabPage1.Text = "Log In";
- this.tabPage1.UseVisualStyleBackColor = true;
- //
- // tabPage2
- //
- this.tabPage2.Controls.Add(this.radioButton3);
- this.tabPage2.Controls.Add(this.radioButton2);
- this.tabPage2.Controls.Add(this.radioButton1);
- this.tabPage2.Location = new System.Drawing.Point(4, 36);
- this.tabPage2.Name = "tabPage2";
- this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage2.Size = new System.Drawing.Size(571, 328);
- this.tabPage2.TabIndex = 1;
- this.tabPage2.Text = "Directory Settings";
- this.tabPage2.UseVisualStyleBackColor = true;
- //
- // tabPage3
- //
- this.tabPage3.Location = new System.Drawing.Point(4, 36);
- this.tabPage3.Name = "tabPage3";
- this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage3.Size = new System.Drawing.Size(571, 328);
- this.tabPage3.TabIndex = 2;
- this.tabPage3.Text = "Sync Settings";
- this.tabPage3.UseVisualStyleBackColor = true;
- //
- // tabPage4
- //
- this.tabPage4.Controls.Add(this.button4);
- this.tabPage4.Controls.Add(this.textBox2);
- this.tabPage4.Controls.Add(this.label6);
- this.tabPage4.Controls.Add(this.textBox1);
- this.tabPage4.Controls.Add(this.label5);
- this.tabPage4.Location = new System.Drawing.Point(4, 36);
- this.tabPage4.Name = "tabPage4";
- this.tabPage4.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage4.Size = new System.Drawing.Size(571, 328);
- this.tabPage4.TabIndex = 3;
- this.tabPage4.Text = "Environment";
- this.tabPage4.UseVisualStyleBackColor = true;
- //
- // tabPage5
- //
- this.tabPage5.Controls.Add(this.label4);
- this.tabPage5.Controls.Add(this.label3);
- this.tabPage5.Controls.Add(this.button3);
- this.tabPage5.Controls.Add(this.button2);
- this.tabPage5.Location = new System.Drawing.Point(4, 36);
- this.tabPage5.Name = "tabPage5";
- this.tabPage5.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage5.Size = new System.Drawing.Size(571, 328);
- this.tabPage5.TabIndex = 4;
- this.tabPage5.Text = "Service Worker";
- this.tabPage5.UseVisualStyleBackColor = true;
- //
- // tabPage6
- //
- this.tabPage6.Location = new System.Drawing.Point(4, 36);
- this.tabPage6.Name = "tabPage6";
- this.tabPage6.Padding = new System.Windows.Forms.Padding(3);
- this.tabPage6.Size = new System.Drawing.Size(571, 328);
- this.tabPage6.TabIndex = 5;
- this.tabPage6.Text = "Sync";
- this.tabPage6.UseVisualStyleBackColor = true;
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label1.Location = new System.Drawing.Point(85, 12);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(274, 25);
- this.label1.TabIndex = 1;
- this.label1.Text = "bitwarden Directory Connector";
- //
- // pictureBox1
- //
- this.pictureBox1.Location = new System.Drawing.Point(12, 12);
- this.pictureBox1.Name = "pictureBox1";
- this.pictureBox1.Size = new System.Drawing.Size(64, 62);
- this.pictureBox1.TabIndex = 2;
- this.pictureBox1.TabStop = false;
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(87, 41);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(69, 13);
- this.label2.TabIndex = 3;
- this.label2.Text = "Version 1.0.0";
- //
- // linkLabel1
- //
- this.linkLabel1.AutoSize = true;
- this.linkLabel1.Location = new System.Drawing.Point(87, 59);
- this.linkLabel1.Name = "linkLabel1";
- this.linkLabel1.Size = new System.Drawing.Size(112, 13);
- this.linkLabel1.TabIndex = 4;
- this.linkLabel1.TabStop = true;
- this.linkLabel1.Text = "https://bitwarden.com";
- this.linkLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // panel1
- //
- this.panel1.Controls.Add(this.passwordTextBox);
- this.panel1.Controls.Add(this.loginButton);
- this.panel1.Controls.Add(this.label7);
- this.panel1.Controls.Add(this.usernameTextBox);
- this.panel1.Controls.Add(this.label8);
- this.panel1.Location = new System.Drawing.Point(6, 6);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(559, 151);
- this.panel1.TabIndex = 0;
- //
- // button2
- //
- this.button2.Location = new System.Drawing.Point(141, 96);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(271, 23);
- this.button2.TabIndex = 0;
- this.button2.Text = "Start Service";
- this.button2.UseVisualStyleBackColor = true;
- //
- // button3
- //
- this.button3.Location = new System.Drawing.Point(141, 125);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(271, 23);
- this.button3.TabIndex = 1;
- this.button3.Text = "Stop Service";
- this.button3.UseVisualStyleBackColor = true;
- //
- // label3
- //
- this.label3.Location = new System.Drawing.Point(141, 20);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(271, 18);
- this.label3.TabIndex = 2;
- this.label3.Text = "Current Status";
- this.label3.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- //
- // label4
- //
- this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.label4.Location = new System.Drawing.Point(141, 50);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(271, 23);
- this.label4.TabIndex = 3;
- this.label4.Text = "Running";
- this.label4.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.Location = new System.Drawing.Point(3, 20);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(94, 13);
- this.label5.TabIndex = 0;
- this.label5.Text = "API Endpoint URL";
- //
- // textBox1
- //
- this.textBox1.Location = new System.Drawing.Point(6, 36);
- this.textBox1.Name = "textBox1";
- this.textBox1.Size = new System.Drawing.Size(294, 20);
- this.textBox1.TabIndex = 1;
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.Location = new System.Drawing.Point(3, 70);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(111, 13);
- this.label6.TabIndex = 2;
- this.label6.Text = "Identity Endpoint URL";
- //
- // textBox2
- //
- this.textBox2.Location = new System.Drawing.Point(6, 86);
- this.textBox2.Name = "textBox2";
- this.textBox2.Size = new System.Drawing.Size(294, 20);
- this.textBox2.TabIndex = 3;
- //
- // button4
- //
- this.button4.Location = new System.Drawing.Point(6, 126);
- this.button4.Name = "button4";
- this.button4.Size = new System.Drawing.Size(75, 23);
- this.button4.TabIndex = 4;
- this.button4.Text = "Save";
- this.button4.UseVisualStyleBackColor = true;
- //
- // radioButton1
- //
- this.radioButton1.AutoSize = true;
- this.radioButton1.Location = new System.Drawing.Point(6, 49);
- this.radioButton1.Name = "radioButton1";
- this.radioButton1.Size = new System.Drawing.Size(100, 17);
- this.radioButton1.TabIndex = 0;
- this.radioButton1.TabStop = true;
- this.radioButton1.Text = "Active Directory";
- this.radioButton1.UseVisualStyleBackColor = true;
- //
- // radioButton2
- //
- this.radioButton2.AutoSize = true;
- this.radioButton2.Location = new System.Drawing.Point(6, 72);
- this.radioButton2.Name = "radioButton2";
- this.radioButton2.Size = new System.Drawing.Size(130, 17);
- this.radioButton2.TabIndex = 1;
- this.radioButton2.TabStop = true;
- this.radioButton2.Text = "Azure Active Directory";
- this.radioButton2.UseVisualStyleBackColor = true;
- //
- // radioButton3
- //
- this.radioButton3.AutoSize = true;
- this.radioButton3.Location = new System.Drawing.Point(6, 95);
- this.radioButton3.Name = "radioButton3";
- this.radioButton3.Size = new System.Drawing.Size(82, 17);
- this.radioButton3.TabIndex = 2;
- this.radioButton3.TabStop = true;
- this.radioButton3.Text = "Other LDAP";
- this.radioButton3.UseVisualStyleBackColor = true;
- //
- // loginButton
- //
- this.loginButton.Location = new System.Drawing.Point(3, 105);
- this.loginButton.Name = "loginButton";
- this.loginButton.Size = new System.Drawing.Size(75, 23);
- this.loginButton.TabIndex = 9;
- this.loginButton.Text = "Log In";
- this.loginButton.UseVisualStyleBackColor = true;
- this.loginButton.Click += new System.EventHandler(this.loginButton_Click);
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.Location = new System.Drawing.Point(0, 63);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(53, 13);
- this.label7.TabIndex = 7;
- this.label7.Text = "Password";
- //
- // usernameTextBox
- //
- this.usernameTextBox.Location = new System.Drawing.Point(3, 39);
- this.usernameTextBox.Name = "usernameTextBox";
- this.usernameTextBox.Size = new System.Drawing.Size(294, 20);
- this.usernameTextBox.TabIndex = 6;
- //
- // label8
- //
- this.label8.AutoSize = true;
- this.label8.Location = new System.Drawing.Point(0, 23);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(55, 13);
- this.label8.TabIndex = 5;
- this.label8.Text = "Username";
- //
- // passwordTextBox
- //
- this.passwordTextBox.Location = new System.Drawing.Point(3, 79);
- this.passwordTextBox.Name = "passwordTextBox";
- this.passwordTextBox.Size = new System.Drawing.Size(294, 20);
- this.passwordTextBox.TabIndex = 10;
- this.passwordTextBox.UseSystemPasswordChar = true;
- //
- // Main
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(603, 512);
- this.Controls.Add(this.linkLabel1);
- this.Controls.Add(this.label2);
- this.Controls.Add(this.pictureBox1);
- this.Controls.Add(this.label1);
- this.Controls.Add(this.tabControl1);
- this.Name = "Main";
- this.Text = "Main";
- this.Load += new System.EventHandler(this.Main_Load);
- this.tabControl1.ResumeLayout(false);
- this.tabPage1.ResumeLayout(false);
- this.tabPage2.ResumeLayout(false);
- this.tabPage2.PerformLayout();
- this.tabPage4.ResumeLayout(false);
- this.tabPage4.PerformLayout();
- this.tabPage5.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
- this.panel1.ResumeLayout(false);
- this.panel1.PerformLayout();
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.TabControl tabControl1;
- private System.Windows.Forms.TabPage tabPage1;
- private System.Windows.Forms.TabPage tabPage2;
- private System.Windows.Forms.TabPage tabPage3;
- private System.Windows.Forms.TabPage tabPage4;
- private System.Windows.Forms.TabPage tabPage5;
- private System.Windows.Forms.TabPage tabPage6;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.PictureBox pictureBox1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.LinkLabel linkLabel1;
- private System.Windows.Forms.Panel panel1;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Button button3;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.MaskedTextBox passwordTextBox;
- private System.Windows.Forms.Button loginButton;
- private System.Windows.Forms.Label label7;
- private System.Windows.Forms.TextBox usernameTextBox;
- private System.Windows.Forms.Label label8;
- private System.Windows.Forms.RadioButton radioButton3;
- private System.Windows.Forms.RadioButton radioButton2;
- private System.Windows.Forms.RadioButton radioButton1;
- private System.Windows.Forms.Button button4;
- private System.Windows.Forms.TextBox textBox2;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.TextBox textBox1;
- private System.Windows.Forms.Label label5;
- }
-}
\ No newline at end of file
diff --git a/src/App/Main.cs b/src/App/Main.cs
deleted file mode 100644
index 377985ec..00000000
--- a/src/App/Main.cs
+++ /dev/null
@@ -1,87 +0,0 @@
-using Bit.Core.Models;
-using Bit.Core.Services;
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Data;
-using System.Drawing;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows.Forms;
-
-namespace App
-{
- public partial class Main : Form
- {
- public Main()
- {
- InitializeComponent();
- }
-
- private void Main_Load(object sender, EventArgs e)
- {
-
- }
-
- private async void loginButton_Click(object sender, EventArgs e)
- {
- var result = await AuthService.Instance.LogInAsync(usernameTextBox.Text, passwordTextBox.Text);
-
- if(result.TwoFactorRequired)
- {
- string token = null;
- using(var prompt = new Prompt("Verification Code", "Enter your two-step verification code", "Submit"))
- {
- var promptResult = prompt.ShowDialog();
- if(promptResult == DialogResult.OK)
- {
- token = prompt.ReturnValue;
- }
- }
-
- result = await AuthService.Instance.LogInTwoFactorWithHashAsync(
- Bit.Core.Enums.TwoFactorProviderType.Authenticator, token, usernameTextBox.Text,
- result.MasterPasswordHash);
- }
-
- if(result.Success && result.Organizations.Count > 1)
- {
- Organization org = null;
-
- var orgs = new Dictionary();
- for(int i = 0; i < result.Organizations.Count; i++)
- {
- orgs.Add(result.Organizations[i].Id, result.Organizations[i].Name);
- }
-
- // TODO: alert about org
-
- if(org == null)
- {
- result.Success = false;
- result.ErrorMessage = "Organization not found.";
- AuthService.Instance.LogOut();
- }
- else
- {
- SettingsService.Instance.Organization = org;
- }
- }
-
- if(result.Success)
- {
-
- }
- else
- {
- using(var prompt = new Alert("Error", result.ErrorMessage))
- {
- var promptResult = prompt.ShowDialog();
- }
- }
-
- passwordTextBox.Text = null;
- }
- }
-}
diff --git a/src/App/Main.resx b/src/App/Main.resx
deleted file mode 100644
index 1af7de15..00000000
--- a/src/App/Main.resx
+++ /dev/null
@@ -1,120 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- text/microsoft-resx
-
-
- 2.0
-
-
- System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
\ No newline at end of file
diff --git a/src/App/Program.cs b/src/App/Program.cs
deleted file mode 100644
index 025f1777..00000000
--- a/src/App/Program.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Threading.Tasks;
-using System.Windows.Forms;
-
-namespace App
-{
- static class Program
- {
- [STAThread]
- static void Main()
- {
- Application.EnableVisualStyles();
- Application.SetCompatibleTextRenderingDefault(false);
- Application.Run(new Main());
- }
- }
-}
diff --git a/src/App/Prompt.Designer.cs b/src/App/Prompt.Designer.cs
deleted file mode 100644
index da52e993..00000000
--- a/src/App/Prompt.Designer.cs
+++ /dev/null
@@ -1,83 +0,0 @@
-namespace App
-{
- partial class Prompt
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if(disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- this.label1 = new System.Windows.Forms.Label();
- this.textBox1 = new System.Windows.Forms.TextBox();
- this.button1 = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label1
- //
- this.label1.Location = new System.Drawing.Point(12, 9);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(224, 41);
- this.label1.TabIndex = 0;
- this.label1.Text = "label1";
- this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // textBox1
- //
- this.textBox1.Location = new System.Drawing.Point(12, 63);
- this.textBox1.Name = "textBox1";
- this.textBox1.Size = new System.Drawing.Size(224, 20);
- this.textBox1.TabIndex = 1;
- //
- // button1
- //
- this.button1.Location = new System.Drawing.Point(12, 89);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(224, 23);
- this.button1.TabIndex = 2;
- this.button1.Text = "Ok";
- this.button1.UseVisualStyleBackColor = true;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // Prompt
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(248, 135);
- this.Controls.Add(this.button1);
- this.Controls.Add(this.textBox1);
- this.Controls.Add(this.label1);
- this.Name = "Prompt";
- this.Text = "Prompt";
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.TextBox textBox1;
- private System.Windows.Forms.Button button1;
- }
-}
\ No newline at end of file
diff --git a/src/App/Prompt.cs b/src/App/Prompt.cs
deleted file mode 100644
index f5573128..00000000
--- a/src/App/Prompt.cs
+++ /dev/null
@@ -1,32 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Data;
-using System.Drawing;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows.Forms;
-
-namespace App
-{
- public partial class Prompt : Form
- {
- public string ReturnValue { get; set; }
-
- public Prompt(string title, string label, string buttonText)
- {
- InitializeComponent();
- Text = title;
- label1.Text = label;
- button1.Text = buttonText;
- }
-
- private void button1_Click(object sender, EventArgs e)
- {
- ReturnValue = textBox1.Text;
- DialogResult = DialogResult.OK;
- Close();
- }
- }
-}
diff --git a/src/App/Prompt.resx b/src/App/Prompt.resx
deleted file mode 100644
index 1af7de15..00000000
--- a/src/App/Prompt.resx
+++ /dev/null
@@ -1,120 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- text/microsoft-resx
-
-
- 2.0
-
-
- System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
\ No newline at end of file
diff --git a/src/App/Properties/AssemblyInfo.cs b/src/App/Properties/AssemblyInfo.cs
deleted file mode 100644
index ef100acf..00000000
--- a/src/App/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,36 +0,0 @@
-using System.Reflection;
-using System.Runtime.CompilerServices;
-using System.Runtime.InteropServices;
-
-// General Information about an assembly is controlled through the following
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
-[assembly: AssemblyTitle("App")]
-[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("")]
-[assembly: AssemblyProduct("App")]
-[assembly: AssemblyCopyright("Copyright © 2017")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
-
-// Setting ComVisible to false makes the types in this assembly not visible
-// to COM components. If you need to access a type in this assembly from
-// COM, set the ComVisible attribute to true on that type.
-[assembly: ComVisible(false)]
-
-// The following GUID is for the ID of the typelib if this project is exposed to COM
-[assembly: Guid("c4a631ee-19df-4a10-8526-cb6996efa853")]
-
-// Version information for an assembly consists of the following four values:
-//
-// Major Version
-// Minor Version
-// Build Number
-// Revision
-//
-// You can specify all the values or you can default the Build and Revision Numbers
-// by using the '*' as shown below:
-// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/src/App/Properties/Resources.Designer.cs b/src/App/Properties/Resources.Designer.cs
deleted file mode 100644
index bae8463e..00000000
--- a/src/App/Properties/Resources.Designer.cs
+++ /dev/null
@@ -1,71 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.42000
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-namespace App.Properties
-{
-
-
- ///
- /// A strongly-typed resource class, for looking up localized strings, etc.
- ///
- // This class was auto-generated by the StronglyTypedResourceBuilder
- // class via a tool like ResGen or Visual Studio.
- // To add or remove a member, edit your .ResX file then rerun ResGen
- // with the /str option, or rebuild your VS project.
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
- internal class Resources
- {
-
- private static global::System.Resources.ResourceManager resourceMan;
-
- private static global::System.Globalization.CultureInfo resourceCulture;
-
- [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
- internal Resources()
- {
- }
-
- ///
- /// Returns the cached ResourceManager instance used by this class.
- ///
- [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
- internal static global::System.Resources.ResourceManager ResourceManager
- {
- get
- {
- if((resourceMan == null))
- {
- global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("App.Properties.Resources", typeof(Resources).Assembly);
- resourceMan = temp;
- }
- return resourceMan;
- }
- }
-
- ///
- /// Overrides the current thread's CurrentUICulture property for all
- /// resource lookups using this strongly typed resource class.
- ///
- [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
- internal static global::System.Globalization.CultureInfo Culture
- {
- get
- {
- return resourceCulture;
- }
- set
- {
- resourceCulture = value;
- }
- }
- }
-}
diff --git a/src/App/Properties/Resources.resx b/src/App/Properties/Resources.resx
deleted file mode 100644
index af7dbebb..00000000
--- a/src/App/Properties/Resources.resx
+++ /dev/null
@@ -1,117 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- text/microsoft-resx
-
-
- 2.0
-
-
- System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
\ No newline at end of file
diff --git a/src/App/Properties/Settings.Designer.cs b/src/App/Properties/Settings.Designer.cs
deleted file mode 100644
index 20be92cf..00000000
--- a/src/App/Properties/Settings.Designer.cs
+++ /dev/null
@@ -1,30 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.42000
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-namespace App.Properties
-{
-
-
- [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
- internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
- {
-
- private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
-
- public static Settings Default
- {
- get
- {
- return defaultInstance;
- }
- }
- }
-}
diff --git a/src/App/Properties/Settings.settings b/src/App/Properties/Settings.settings
deleted file mode 100644
index 39645652..00000000
--- a/src/App/Properties/Settings.settings
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
-
diff --git a/src/Console/App.config b/src/Console/App.config
index 443afce1..6bcb7b7a 100644
--- a/src/Console/App.config
+++ b/src/Console/App.config
@@ -1,14 +1,14 @@
-
+
-
+
-
-
+
+
-
\ No newline at end of file
+
diff --git a/src/Console/Console.csproj b/src/Console/Console.csproj
index ccd2eb1d..0ee8f0e5 100644
--- a/src/Console/Console.csproj
+++ b/src/Console/Console.csproj
@@ -8,9 +8,10 @@
Exe
Bit.Console
Console
- v4.5.2
+ v4.6.1
512
true
+
AnyCPU
diff --git a/src/Core/Core.csproj b/src/Core/Core.csproj
index 787b58f6..6c53e6d4 100644
--- a/src/Core/Core.csproj
+++ b/src/Core/Core.csproj
@@ -9,8 +9,9 @@
Properties
Bit.Core
Core
- v4.5.2
+ v4.6.1
512
+
true
@@ -33,41 +34,40 @@
..\..\packages\BouncyCastle.1.8.1\lib\BouncyCastle.Crypto.dll
-
- ..\..\packages\Google.Apis.1.25.0\lib\net45\Google.Apis.dll
+
+ ..\..\packages\Google.Apis.1.28.0\lib\net45\Google.Apis.dll
-
- ..\..\packages\Google.Apis.Admin.Directory.directory_v1.1.25.0.844\lib\net45\Google.Apis.Admin.Directory.directory_v1.dll
+
+ ..\..\packages\Google.Apis.Admin.Directory.directory_v1.1.28.0.934\lib\net45\Google.Apis.Admin.Directory.directory_v1.dll
-
- ..\..\packages\Google.Apis.Auth.1.25.0\lib\net45\Google.Apis.Auth.dll
+
+ ..\..\packages\Google.Apis.Auth.1.28.0\lib\net45\Google.Apis.Auth.dll
-
- ..\..\packages\Google.Apis.Auth.1.25.0\lib\net45\Google.Apis.Auth.PlatformServices.dll
+
+ ..\..\packages\Google.Apis.Auth.1.28.0\lib\net45\Google.Apis.Auth.PlatformServices.dll
-
- ..\..\packages\Google.Apis.Core.1.25.0\lib\net45\Google.Apis.Core.dll
+
+ ..\..\packages\Google.Apis.Core.1.28.0\lib\net45\Google.Apis.Core.dll
-
- ..\..\packages\Google.Apis.1.25.0\lib\net45\Google.Apis.PlatformServices.dll
+
+ ..\..\packages\Google.Apis.1.28.0\lib\net45\Google.Apis.PlatformServices.dll
-
- ..\..\packages\Microsoft.Graph.1.3.0\lib\net45\Microsoft.Graph.dll
+
+ ..\..\packages\Microsoft.Graph.1.5.1\lib\net45\Microsoft.Graph.dll
-
- ..\..\packages\Microsoft.Graph.Core.1.4.0\lib\net45\Microsoft.Graph.Core.dll
+
+ ..\..\packages\Microsoft.Graph.Core.1.6.1\lib\net45\Microsoft.Graph.Core.dll
-
- ..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.3.13.9\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll
+
+ ..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.3.16.0\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll
-
- ..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.3.13.9\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll
+
+ ..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.3.16.0\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll
- ..\..\packages\Newtonsoft.Json.10.0.2\lib\net45\Newtonsoft.Json.dll
+ ..\..\packages\Newtonsoft.Json.10.0.3\lib\net45\Newtonsoft.Json.dll
-
@@ -89,7 +89,6 @@
-
diff --git a/src/Core/Services/GSuiteDirectoryService.cs b/src/Core/Services/GSuiteDirectoryService.cs
index 2a29ee61..c9286178 100644
--- a/src/Core/Services/GSuiteDirectoryService.cs
+++ b/src/Core/Services/GSuiteDirectoryService.cs
@@ -10,8 +10,6 @@ using Bit.Core.Utilities;
using System.Linq;
using Google.Apis.Admin.Directory.directory_v1.Data;
using Google.Apis.Requests;
-using Google.Apis.Json;
-using System.Net;
namespace Bit.Core.Services
{
@@ -27,9 +25,16 @@ namespace Bit.Core.Services
var secretFilePath = Path.Combine(Constants.BaseStoragePath, SettingsService.Instance.Server.GSuite.SecretFile);
using(var stream = new FileStream(secretFilePath, FileMode.Open, FileAccess.Read))
{
- //creds = GoogleCredential.FromStream(stream).CreateScoped(scopes);
- var credParams = NewtonsoftJsonSerializer.Instance.Deserialize(stream);
- creds = CreateServiceAccountCredential(credParams);
+ var scopes = new List
+ {
+ DirectoryService.Scope.AdminDirectoryUserReadonly,
+ DirectoryService.Scope.AdminDirectoryGroupReadonly,
+ DirectoryService.Scope.AdminDirectoryGroupMemberReadonly
+ };
+
+ creds = GoogleCredential.FromStream(stream)
+ .CreateScoped(scopes)
+ .CreateWithUser(SettingsService.Instance.Server.GSuite.AdminUser);
}
_service = new DirectoryService(new BaseClientService.Initializer
@@ -297,28 +302,5 @@ namespace Bit.Core.Services
return false;
}
-
- private ServiceAccountCredential CreateServiceAccountCredential(JsonCredentialParameters credParams)
- {
- var scopes = new List
- {
- DirectoryService.Scope.AdminDirectoryUserReadonly,
- DirectoryService.Scope.AdminDirectoryGroupReadonly,
- DirectoryService.Scope.AdminDirectoryGroupMemberReadonly
- };
-
- if(credParams.Type != JsonCredentialParameters.ServiceAccountCredentialType ||
- string.IsNullOrEmpty(credParams.ClientEmail) ||
- string.IsNullOrEmpty(credParams.PrivateKey))
- {
- throw new InvalidOperationException("JSON data does not represent a valid service account credential.");
- }
-
- var initializer = new ServiceAccountCredential.Initializer(credParams.ClientEmail);
- initializer.User = SettingsService.Instance.Server.GSuite.AdminUser;
- initializer.Scopes = scopes;
-
- return new ServiceAccountCredential(initializer.FromPrivateKey(credParams.PrivateKey));
- }
}
}
diff --git a/src/Core/Services/IDirectoryService.cs b/src/Core/Services/IDirectoryService.cs
index 02f4f93f..f7c16338 100644
--- a/src/Core/Services/IDirectoryService.cs
+++ b/src/Core/Services/IDirectoryService.cs
@@ -1,8 +1,6 @@
using Bit.Core.Models;
using System;
using System.Collections.Generic;
-using System.Linq;
-using System.Text;
using System.Threading.Tasks;
namespace Bit.Core.Services
diff --git a/src/Core/app.config b/src/Core/app.config
index dde2c3cc..6bcb7b7a 100644
--- a/src/Core/app.config
+++ b/src/Core/app.config
@@ -1,11 +1,14 @@
-
+
+
+
+
-
-
+
+
-
\ No newline at end of file
+
diff --git a/src/Core/packages.config b/src/Core/packages.config
index 0320ae16..2eab3722 100644
--- a/src/Core/packages.config
+++ b/src/Core/packages.config
@@ -1,14 +1,14 @@
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Service/App.config b/src/Service/App.config
index 443afce1..6bcb7b7a 100644
--- a/src/Service/App.config
+++ b/src/Service/App.config
@@ -1,14 +1,14 @@
-
+
-
+
-
-
+
+
-
\ No newline at end of file
+
diff --git a/src/Core/Installer.cs b/src/Service/Installer.cs
similarity index 96%
rename from src/Core/Installer.cs
rename to src/Service/Installer.cs
index 13c35aa8..9ef19c93 100644
--- a/src/Core/Installer.cs
+++ b/src/Service/Installer.cs
@@ -1,10 +1,6 @@
using System;
-using System.Collections.Generic;
using System.ComponentModel;
-using System.Linq;
using System.ServiceProcess;
-using System.Text;
-using System.Threading.Tasks;
using System.Configuration.Install;
using System.Diagnostics;
using System.IO;
@@ -12,7 +8,7 @@ using System.Security.AccessControl;
using System.Security.Principal;
using Bit.Core.Utilities;
-namespace Core
+namespace Service
{
[RunInstaller(true)]
[DesignerCategory("Code")]
diff --git a/src/Service/Service.csproj b/src/Service/Service.csproj
index d4eaf99a..f34865bc 100644
--- a/src/Service/Service.csproj
+++ b/src/Service/Service.csproj
@@ -8,9 +8,10 @@
WinExe
Service
Service
- v4.5.2
+ v4.6.1
512
true
+
AnyCPU
@@ -33,6 +34,7 @@
+
@@ -43,6 +45,7 @@
+
diff --git a/src/Setup/Setup.vdproj b/src/Setup/Setup.vdproj
index ca60d779..2a616c3a 100644
--- a/src/Setup/Setup.vdproj
+++ b/src/Setup/Setup.vdproj
@@ -27,12 +27,6 @@
}
"Entry"
{
- "MsmKey" = "8:_0182B245CB49D6D121F218AD9B51B61E"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
"MsmKey" = "8:_01E8D142AEA6FE600383B5B2DD059828"
"OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
@@ -40,18 +34,6 @@
"Entry"
{
"MsmKey" = "8:_01E8D142AEA6FE600383B5B2DD059828"
- "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_01E8D142AEA6FE600383B5B2DD059828"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_01E8D142AEA6FE600383B5B2DD059828"
"OwnerKey" = "8:_F44BED80D7FA78C84BD0165FA65762DB"
"MsmSig" = "8:_UNDEFINED"
}
@@ -70,11 +52,35 @@
"Entry"
{
"MsmKey" = "8:_01E8D142AEA6FE600383B5B2DD059828"
+ "OwnerKey" = "8:_4A11C7D06AC7348FEBA0E461C79D0710"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_01E8D142AEA6FE600383B5B2DD059828"
+ "OwnerKey" = "8:_D50FF64662E4744969D43AC04158080C"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_01E8D142AEA6FE600383B5B2DD059828"
+ "OwnerKey" = "8:_3FAB52733F9156DF2D4341ADF163F307"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_01E8D142AEA6FE600383B5B2DD059828"
"OwnerKey" = "8:_ABAAF01D71C0623588BF9114BAB8F55A"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
+ "MsmKey" = "8:_01E8D142AEA6FE600383B5B2DD059828"
+ "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
"MsmKey" = "8:_0275340817839E66ADF6A7F37A84FA3E"
"OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
@@ -87,12 +93,6 @@
}
"Entry"
{
- "MsmKey" = "8:_0275340817839E66ADF6A7F37A84FA3E"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
"MsmKey" = "8:_08FB6439DDFC1FDE681326F0A5D3C96E"
"OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
@@ -105,12 +105,6 @@
}
"Entry"
{
- "MsmKey" = "8:_08FB6439DDFC1FDE681326F0A5D3C96E"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
"MsmKey" = "8:_0FBE28076ABD5E5D5C15CC4E69DDA210"
"OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
@@ -123,12 +117,6 @@
}
"Entry"
{
- "MsmKey" = "8:_0FBE28076ABD5E5D5C15CC4E69DDA210"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
"MsmKey" = "8:_1882805049789549026FF91EEB85E76E"
"OwnerKey" = "8:_F44BED80D7FA78C84BD0165FA65762DB"
"MsmSig" = "8:_UNDEFINED"
@@ -147,24 +135,6 @@
}
"Entry"
{
- "MsmKey" = "8:_1937EBB9E72D15DB8B24E24ECCCA2E34"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_1937EBB9E72D15DB8B24E24ECCCA2E34"
- "OwnerKey" = "8:_62961836EBD5DE2C67B881D60D5FD720"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_1937EBB9E72D15DB8B24E24ECCCA2E34"
- "OwnerKey" = "8:_938451235648294BEBE571FFF4F66A01"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
"MsmKey" = "8:_2407CF4BE0A8BBBD8128315EBAD1A2D1"
"OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
@@ -172,25 +142,13 @@
"Entry"
{
"MsmKey" = "8:_2407CF4BE0A8BBBD8128315EBAD1A2D1"
- "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_2407CF4BE0A8BBBD8128315EBAD1A2D1"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_2407CF4BE0A8BBBD8128315EBAD1A2D1"
"OwnerKey" = "8:_F44BED80D7FA78C84BD0165FA65762DB"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
"MsmKey" = "8:_2407CF4BE0A8BBBD8128315EBAD1A2D1"
- "OwnerKey" = "8:_62961836EBD5DE2C67B881D60D5FD720"
+ "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
@@ -202,23 +160,17 @@
"Entry"
{
"MsmKey" = "8:_265EAFD2CE54CD0E81453C2F9A56640F"
- "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_265EAFD2CE54CD0E81453C2F9A56640F"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_265EAFD2CE54CD0E81453C2F9A56640F"
"OwnerKey" = "8:_F44BED80D7FA78C84BD0165FA65762DB"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
+ "MsmKey" = "8:_265EAFD2CE54CD0E81453C2F9A56640F"
+ "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
"MsmKey" = "8:_27C6577DD182E9E1D4784535FD0258B6"
"OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
@@ -231,18 +183,6 @@
}
"Entry"
{
- "MsmKey" = "8:_27C6577DD182E9E1D4784535FD0258B6"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_27C6577DD182E9E1D4784535FD0258B6"
- "OwnerKey" = "8:_F44BED80D7FA78C84BD0165FA65762DB"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
"MsmKey" = "8:_2A1B066D2EFB8950646A7A539F081817"
"OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
@@ -255,12 +195,6 @@
}
"Entry"
{
- "MsmKey" = "8:_2A1B066D2EFB8950646A7A539F081817"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
"MsmKey" = "8:_30340A05D82021FD4136C0CEC144B2D6"
"OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
@@ -273,12 +207,6 @@
}
"Entry"
{
- "MsmKey" = "8:_30340A05D82021FD4136C0CEC144B2D6"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
"MsmKey" = "8:_30F53C78DA952AE4CB9727F442F6F9DE"
"OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
@@ -291,24 +219,12 @@
}
"Entry"
{
- "MsmKey" = "8:_30F53C78DA952AE4CB9727F442F6F9DE"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
"MsmKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"OwnerKey" = "8:_UNDEFINED"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "OwnerKey" = "8:_UNDEFINED"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
"MsmKey" = "8:_3E088BF00EAF1C60E0C4B83996DEAC3E"
"OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
@@ -321,8 +237,38 @@
}
"Entry"
{
- "MsmKey" = "8:_3E088BF00EAF1C60E0C4B83996DEAC3E"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
+ "MsmKey" = "8:_3FAB52733F9156DF2D4341ADF163F307"
+ "OwnerKey" = "8:_E3D590371CE0F6366FD0A35B831E8139"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_3FAB52733F9156DF2D4341ADF163F307"
+ "OwnerKey" = "8:_ABAAF01D71C0623588BF9114BAB8F55A"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_3FAB52733F9156DF2D4341ADF163F307"
+ "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_3FAB52733F9156DF2D4341ADF163F307"
+ "OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_3FAB52733F9156DF2D4341ADF163F307"
+ "OwnerKey" = "8:_4A11C7D06AC7348FEBA0E461C79D0710"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_3FAB52733F9156DF2D4341ADF163F307"
+ "OwnerKey" = "8:_D50FF64662E4744969D43AC04158080C"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
@@ -339,12 +285,6 @@
}
"Entry"
{
- "MsmKey" = "8:_443863898BDB49D4EF8651FDBB1C7B53"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
"MsmKey" = "8:_44450CE3640027821E47A1CECC11C91E"
"OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
@@ -352,49 +292,19 @@
"Entry"
{
"MsmKey" = "8:_44450CE3640027821E47A1CECC11C91E"
- "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_44450CE3640027821E47A1CECC11C91E"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_44450CE3640027821E47A1CECC11C91E"
"OwnerKey" = "8:_F44BED80D7FA78C84BD0165FA65762DB"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
"MsmKey" = "8:_44450CE3640027821E47A1CECC11C91E"
- "OwnerKey" = "8:_62961836EBD5DE2C67B881D60D5FD720"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_44450CE3640027821E47A1CECC11C91E"
- "OwnerKey" = "8:_938451235648294BEBE571FFF4F66A01"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_4591637273DEA0B2129BDF9E24CD86BF"
- "OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_4591637273DEA0B2129BDF9E24CD86BF"
"OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
"MsmKey" = "8:_4591637273DEA0B2129BDF9E24CD86BF"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
+ "OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
@@ -405,6 +315,12 @@
}
"Entry"
{
+ "MsmKey" = "8:_4591637273DEA0B2129BDF9E24CD86BF"
+ "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
"MsmKey" = "8:_46537051EA442DE6949EBE0B294F5717"
"OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
@@ -417,8 +333,20 @@
}
"Entry"
{
- "MsmKey" = "8:_46537051EA442DE6949EBE0B294F5717"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
+ "MsmKey" = "8:_4A11C7D06AC7348FEBA0E461C79D0710"
+ "OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_4A11C7D06AC7348FEBA0E461C79D0710"
+ "OwnerKey" = "8:_ABAAF01D71C0623588BF9114BAB8F55A"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_4A11C7D06AC7348FEBA0E461C79D0710"
+ "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
@@ -429,30 +357,6 @@
}
"Entry"
{
- "MsmKey" = "8:_51DFC538915718DE3E74A95FF39DC749"
- "OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_51DFC538915718DE3E74A95FF39DC749"
- "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_51DFC538915718DE3E74A95FF39DC749"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_51DFC538915718DE3E74A95FF39DC749"
- "OwnerKey" = "8:_ABAAF01D71C0623588BF9114BAB8F55A"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
"MsmKey" = "8:_543177851933B27715C10251AFB92835"
"OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
@@ -460,31 +364,19 @@
"Entry"
{
"MsmKey" = "8:_543177851933B27715C10251AFB92835"
- "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_543177851933B27715C10251AFB92835"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_543177851933B27715C10251AFB92835"
"OwnerKey" = "8:_F44BED80D7FA78C84BD0165FA65762DB"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
"MsmKey" = "8:_543177851933B27715C10251AFB92835"
- "OwnerKey" = "8:_62961836EBD5DE2C67B881D60D5FD720"
+ "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_543177851933B27715C10251AFB92835"
- "OwnerKey" = "8:_938451235648294BEBE571FFF4F66A01"
+ "MsmKey" = "8:_62961836EBD5DE2C67B881D60D5FD720"
+ "OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
@@ -501,18 +393,6 @@
}
"Entry"
{
- "MsmKey" = "8:_62961836EBD5DE2C67B881D60D5FD720"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_62961836EBD5DE2C67B881D60D5FD720"
- "OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
"MsmKey" = "8:_6D1D2E383A613AE1C3EA51B76F88899A"
"OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
@@ -525,12 +405,6 @@
}
"Entry"
{
- "MsmKey" = "8:_6D1D2E383A613AE1C3EA51B76F88899A"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
"MsmKey" = "8:_7242EAFDEF49B0392455E01BE5BFE5C8"
"OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
@@ -538,31 +412,13 @@
"Entry"
{
"MsmKey" = "8:_7242EAFDEF49B0392455E01BE5BFE5C8"
- "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_7242EAFDEF49B0392455E01BE5BFE5C8"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_7242EAFDEF49B0392455E01BE5BFE5C8"
"OwnerKey" = "8:_F44BED80D7FA78C84BD0165FA65762DB"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
"MsmKey" = "8:_7242EAFDEF49B0392455E01BE5BFE5C8"
- "OwnerKey" = "8:_62961836EBD5DE2C67B881D60D5FD720"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_7242EAFDEF49B0392455E01BE5BFE5C8"
- "OwnerKey" = "8:_938451235648294BEBE571FFF4F66A01"
+ "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
@@ -574,23 +430,17 @@
"Entry"
{
"MsmKey" = "8:_7B1B281664CB0717BC824A153FD5E072"
- "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_7B1B281664CB0717BC824A153FD5E072"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_7B1B281664CB0717BC824A153FD5E072"
"OwnerKey" = "8:_F44BED80D7FA78C84BD0165FA65762DB"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
+ "MsmKey" = "8:_7B1B281664CB0717BC824A153FD5E072"
+ "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
"MsmKey" = "8:_7E9CF283F281C6AF8F6180DF0AE704FC"
"OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
@@ -598,47 +448,23 @@
"Entry"
{
"MsmKey" = "8:_7E9CF283F281C6AF8F6180DF0AE704FC"
+ "OwnerKey" = "8:_F44BED80D7FA78C84BD0165FA65762DB"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_7E9CF283F281C6AF8F6180DF0AE704FC"
"OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_7E9CF283F281C6AF8F6180DF0AE704FC"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_7E9CF283F281C6AF8F6180DF0AE704FC"
- "OwnerKey" = "8:_F44BED80D7FA78C84BD0165FA65762DB"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_7E9CF283F281C6AF8F6180DF0AE704FC"
- "OwnerKey" = "8:_938451235648294BEBE571FFF4F66A01"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_81E0C6096F5BE3A513D8F910C793CD05"
- "OwnerKey" = "8:_938451235648294BEBE571FFF4F66A01"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
"MsmKey" = "8:_81E0C6096F5BE3A513D8F910C793CD05"
"OwnerKey" = "8:_F44BED80D7FA78C84BD0165FA65762DB"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_81E0C6096F5BE3A513D8F910C793CD05"
- "OwnerKey" = "8:_62961836EBD5DE2C67B881D60D5FD720"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
"MsmKey" = "8:_825BBC40331A31B7EA83E45C16C7CAB0"
"OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
@@ -651,12 +477,6 @@
}
"Entry"
{
- "MsmKey" = "8:_825BBC40331A31B7EA83E45C16C7CAB0"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
"MsmKey" = "8:_89981CCDA2054138A68D552C31B6E5CC"
"OwnerKey" = "8:_UNDEFINED"
"MsmSig" = "8:_UNDEFINED"
@@ -675,48 +495,12 @@
}
"Entry"
{
- "MsmKey" = "8:_8CD2F401BC3E004DCA37820ED0B44EB2"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_8F4B2B4A05B106CB2880FD2DC469FF06"
- "OwnerKey" = "8:_938451235648294BEBE571FFF4F66A01"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_8F4B2B4A05B106CB2880FD2DC469FF06"
- "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_8F4B2B4A05B106CB2880FD2DC469FF06"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_8F4B2B4A05B106CB2880FD2DC469FF06"
+ "MsmKey" = "8:_938451235648294BEBE571FFF4F66A01"
"OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_8F4B2B4A05B106CB2880FD2DC469FF06"
- "OwnerKey" = "8:_ABAAF01D71C0623588BF9114BAB8F55A"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_8F4B2B4A05B106CB2880FD2DC469FF06"
- "OwnerKey" = "8:_62961836EBD5DE2C67B881D60D5FD720"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
"MsmKey" = "8:_938451235648294BEBE571FFF4F66A01"
"OwnerKey" = "8:_ABAAF01D71C0623588BF9114BAB8F55A"
"MsmSig" = "8:_UNDEFINED"
@@ -730,18 +514,6 @@
"Entry"
{
"MsmKey" = "8:_938451235648294BEBE571FFF4F66A01"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_938451235648294BEBE571FFF4F66A01"
- "OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_938451235648294BEBE571FFF4F66A01"
"OwnerKey" = "8:_62961836EBD5DE2C67B881D60D5FD720"
"MsmSig" = "8:_UNDEFINED"
}
@@ -759,12 +531,6 @@
}
"Entry"
{
- "MsmKey" = "8:_9A7811BB6EEAD0434EE418E8AA10524D"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
"MsmKey" = "8:_9D5ED790738913E8669BD0368A954B6B"
"OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
@@ -777,12 +543,6 @@
}
"Entry"
{
- "MsmKey" = "8:_9D5ED790738913E8669BD0368A954B6B"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
"MsmKey" = "8:_9DB71553DBB0DB8643AE041E8FA9C084"
"OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
@@ -790,31 +550,13 @@
"Entry"
{
"MsmKey" = "8:_9DB71553DBB0DB8643AE041E8FA9C084"
- "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_9DB71553DBB0DB8643AE041E8FA9C084"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_9DB71553DBB0DB8643AE041E8FA9C084"
"OwnerKey" = "8:_F44BED80D7FA78C84BD0165FA65762DB"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
"MsmKey" = "8:_9DB71553DBB0DB8643AE041E8FA9C084"
- "OwnerKey" = "8:_62961836EBD5DE2C67B881D60D5FD720"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_9DB71553DBB0DB8643AE041E8FA9C084"
- "OwnerKey" = "8:_938451235648294BEBE571FFF4F66A01"
+ "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
@@ -826,25 +568,13 @@
"Entry"
{
"MsmKey" = "8:_A57738E0484DC581E16CB66FC430582B"
- "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_A57738E0484DC581E16CB66FC430582B"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_A57738E0484DC581E16CB66FC430582B"
"OwnerKey" = "8:_F44BED80D7FA78C84BD0165FA65762DB"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
"MsmKey" = "8:_A57738E0484DC581E16CB66FC430582B"
- "OwnerKey" = "8:_938451235648294BEBE571FFF4F66A01"
+ "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
@@ -861,12 +591,6 @@
}
"Entry"
{
- "MsmKey" = "8:_ABAAF01D71C0623588BF9114BAB8F55A"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
"MsmKey" = "8:_ABF79C264F322B798A5C206FE0AFF349"
"OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
@@ -874,43 +598,37 @@
"Entry"
{
"MsmKey" = "8:_ABF79C264F322B798A5C206FE0AFF349"
- "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_ABF79C264F322B798A5C206FE0AFF349"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_ABF79C264F322B798A5C206FE0AFF349"
"OwnerKey" = "8:_F44BED80D7FA78C84BD0165FA65762DB"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
"MsmKey" = "8:_ABF79C264F322B798A5C206FE0AFF349"
- "OwnerKey" = "8:_938451235648294BEBE571FFF4F66A01"
+ "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_BB1554AFA76408C7FC2F77857C965F42"
+ "MsmKey" = "8:_B3244676DE282534966AB955EE6FC5A6"
"OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_BB1554AFA76408C7FC2F77857C965F42"
+ "MsmKey" = "8:_B3244676DE282534966AB955EE6FC5A6"
+ "OwnerKey" = "8:_ABAAF01D71C0623588BF9114BAB8F55A"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_B3244676DE282534966AB955EE6FC5A6"
"OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
"MsmKey" = "8:_BB1554AFA76408C7FC2F77857C965F42"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
+ "OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
@@ -922,7 +640,7 @@
"Entry"
{
"MsmKey" = "8:_BB1554AFA76408C7FC2F77857C965F42"
- "OwnerKey" = "8:_938451235648294BEBE571FFF4F66A01"
+ "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
@@ -939,8 +657,8 @@
}
"Entry"
{
- "MsmKey" = "8:_BEA768E8AAE69CC7F609A52EE5A0FD10"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
+ "MsmKey" = "8:_BF4801B0EEB45D9834E1CCF4BFC2873D"
+ "OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
@@ -957,18 +675,6 @@
}
"Entry"
{
- "MsmKey" = "8:_BF4801B0EEB45D9834E1CCF4BFC2873D"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_BF4801B0EEB45D9834E1CCF4BFC2873D"
- "OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
"MsmKey" = "8:_BF4C8F58F976C1E93AAB53B6C5580F65"
"OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
@@ -976,31 +682,13 @@
"Entry"
{
"MsmKey" = "8:_BF4C8F58F976C1E93AAB53B6C5580F65"
- "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_BF4C8F58F976C1E93AAB53B6C5580F65"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_BF4C8F58F976C1E93AAB53B6C5580F65"
"OwnerKey" = "8:_F44BED80D7FA78C84BD0165FA65762DB"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
"MsmKey" = "8:_BF4C8F58F976C1E93AAB53B6C5580F65"
- "OwnerKey" = "8:_62961836EBD5DE2C67B881D60D5FD720"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_BF4C8F58F976C1E93AAB53B6C5580F65"
- "OwnerKey" = "8:_938451235648294BEBE571FFF4F66A01"
+ "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
@@ -1017,12 +705,6 @@
}
"Entry"
{
- "MsmKey" = "8:_C1C22DA67498093D0E3DEEEF2836601A"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
"MsmKey" = "8:_C835D8E43A286BF4C515518FEC9E30D0"
"OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
@@ -1035,12 +717,6 @@
}
"Entry"
{
- "MsmKey" = "8:_C835D8E43A286BF4C515518FEC9E30D0"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
"MsmKey" = "8:_C8A396F677AF76A2DBF1CE474633329C"
"OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
@@ -1048,23 +724,17 @@
"Entry"
{
"MsmKey" = "8:_C8A396F677AF76A2DBF1CE474633329C"
- "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_C8A396F677AF76A2DBF1CE474633329C"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_C8A396F677AF76A2DBF1CE474633329C"
"OwnerKey" = "8:_F44BED80D7FA78C84BD0165FA65762DB"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
+ "MsmKey" = "8:_C8A396F677AF76A2DBF1CE474633329C"
+ "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
"MsmKey" = "8:_C9582B9E7FD53AFD918010DD18F94A92"
"OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
@@ -1077,12 +747,6 @@
}
"Entry"
{
- "MsmKey" = "8:_C9582B9E7FD53AFD918010DD18F94A92"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
"MsmKey" = "8:_D01E37B16D2E4377520D1AA6F9CA9839"
"OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
@@ -1095,12 +759,6 @@
}
"Entry"
{
- "MsmKey" = "8:_D01E37B16D2E4377520D1AA6F9CA9839"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
"MsmKey" = "8:_D061B51A01ECBE445B4EC3E6E9C2F01B"
"OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
@@ -1113,8 +771,32 @@
}
"Entry"
{
- "MsmKey" = "8:_D061B51A01ECBE445B4EC3E6E9C2F01B"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
+ "MsmKey" = "8:_D50FF64662E4744969D43AC04158080C"
+ "OwnerKey" = "8:_E3D590371CE0F6366FD0A35B831E8139"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D50FF64662E4744969D43AC04158080C"
+ "OwnerKey" = "8:_ABAAF01D71C0623588BF9114BAB8F55A"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D50FF64662E4744969D43AC04158080C"
+ "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D50FF64662E4744969D43AC04158080C"
+ "OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_D50FF64662E4744969D43AC04158080C"
+ "OwnerKey" = "8:_4A11C7D06AC7348FEBA0E461C79D0710"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
@@ -1126,25 +808,13 @@
"Entry"
{
"MsmKey" = "8:_D63E18EA32770126C1E3D80DFD567CD1"
- "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_D63E18EA32770126C1E3D80DFD567CD1"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_D63E18EA32770126C1E3D80DFD567CD1"
"OwnerKey" = "8:_F44BED80D7FA78C84BD0165FA65762DB"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
"MsmKey" = "8:_D63E18EA32770126C1E3D80DFD567CD1"
- "OwnerKey" = "8:_938451235648294BEBE571FFF4F66A01"
+ "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
@@ -1161,12 +831,6 @@
}
"Entry"
{
- "MsmKey" = "8:_D8AFC690823A08D465720E01A352E6E2"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
"MsmKey" = "8:_DB3817E94AA389132974274DDAC317E6"
"OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
@@ -1179,12 +843,6 @@
}
"Entry"
{
- "MsmKey" = "8:_DB3817E94AA389132974274DDAC317E6"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
"MsmKey" = "8:_E065232E54F28035E61F5171F52E669B"
"OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
@@ -1197,26 +855,26 @@
}
"Entry"
{
- "MsmKey" = "8:_E065232E54F28035E61F5171F52E669B"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_E5DF191BE23E573F0B35147F3D2E63AD"
+ "MsmKey" = "8:_E3D590371CE0F6366FD0A35B831E8139"
"OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_E5DF191BE23E573F0B35147F3D2E63AD"
+ "MsmKey" = "8:_E3D590371CE0F6366FD0A35B831E8139"
+ "OwnerKey" = "8:_ABAAF01D71C0623588BF9114BAB8F55A"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_E3D590371CE0F6366FD0A35B831E8139"
"OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
"MsmKey" = "8:_E5DF191BE23E573F0B35147F3D2E63AD"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
+ "OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
@@ -1227,20 +885,14 @@
}
"Entry"
{
- "MsmKey" = "8:_E60259AF2311C1F7421BCC117AA0AF03"
- "OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_E60259AF2311C1F7421BCC117AA0AF03"
+ "MsmKey" = "8:_E5DF191BE23E573F0B35147F3D2E63AD"
"OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
"MsmKey" = "8:_E60259AF2311C1F7421BCC117AA0AF03"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
+ "OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
@@ -1252,119 +904,125 @@
"Entry"
{
"MsmKey" = "8:_E60259AF2311C1F7421BCC117AA0AF03"
+ "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_EC32C06C6CB4A3996B7B8BCF4EF3FEFA"
+ "OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_EC32C06C6CB4A3996B7B8BCF4EF3FEFA"
+ "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_ECEB7F6800AD6D22498BAE6B45D59CFC"
+ "OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_ECEB7F6800AD6D22498BAE6B45D59CFC"
+ "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_ECF3FE142D8D57DC0A1F0315333F6AD0"
+ "OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_ECF3FE142D8D57DC0A1F0315333F6AD0"
+ "OwnerKey" = "8:_F44BED80D7FA78C84BD0165FA65762DB"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_ECF3FE142D8D57DC0A1F0315333F6AD0"
+ "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_EDD36CAB66EE012146050175128FA500"
+ "OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_EDD36CAB66EE012146050175128FA500"
+ "OwnerKey" = "8:_F44BED80D7FA78C84BD0165FA65762DB"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_EDD36CAB66EE012146050175128FA500"
+ "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_EE45B18DB4B0D6FA778B296A627BBC68"
"OwnerKey" = "8:_62961836EBD5DE2C67B881D60D5FD720"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_E60259AF2311C1F7421BCC117AA0AF03"
+ "MsmKey" = "8:_EE45B18DB4B0D6FA778B296A627BBC68"
"OwnerKey" = "8:_938451235648294BEBE571FFF4F66A01"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_EC32C06C6CB4A3996B7B8BCF4EF3FEFA"
- "OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
+ "MsmKey" = "8:_EE45B18DB4B0D6FA778B296A627BBC68"
+ "OwnerKey" = "8:_4A11C7D06AC7348FEBA0E461C79D0710"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_EC32C06C6CB4A3996B7B8BCF4EF3FEFA"
+ "MsmKey" = "8:_EE45B18DB4B0D6FA778B296A627BBC68"
+ "OwnerKey" = "8:_E3D590371CE0F6366FD0A35B831E8139"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_EE45B18DB4B0D6FA778B296A627BBC68"
+ "OwnerKey" = "8:_D50FF64662E4744969D43AC04158080C"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_EE45B18DB4B0D6FA778B296A627BBC68"
+ "OwnerKey" = "8:_3FAB52733F9156DF2D4341ADF163F307"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_EE45B18DB4B0D6FA778B296A627BBC68"
+ "OwnerKey" = "8:_ABAAF01D71C0623588BF9114BAB8F55A"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_EE45B18DB4B0D6FA778B296A627BBC68"
"OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_EC32C06C6CB4A3996B7B8BCF4EF3FEFA"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_ECEB7F6800AD6D22498BAE6B45D59CFC"
+ "MsmKey" = "8:_EE45B18DB4B0D6FA778B296A627BBC68"
"OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_ECEB7F6800AD6D22498BAE6B45D59CFC"
- "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_ECEB7F6800AD6D22498BAE6B45D59CFC"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_ECF3FE142D8D57DC0A1F0315333F6AD0"
- "OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_ECF3FE142D8D57DC0A1F0315333F6AD0"
- "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_ECF3FE142D8D57DC0A1F0315333F6AD0"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_ECF3FE142D8D57DC0A1F0315333F6AD0"
- "OwnerKey" = "8:_F44BED80D7FA78C84BD0165FA65762DB"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_ECF3FE142D8D57DC0A1F0315333F6AD0"
- "OwnerKey" = "8:_62961836EBD5DE2C67B881D60D5FD720"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_ECF3FE142D8D57DC0A1F0315333F6AD0"
- "OwnerKey" = "8:_938451235648294BEBE571FFF4F66A01"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_EDD36CAB66EE012146050175128FA500"
- "OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_EDD36CAB66EE012146050175128FA500"
- "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_EDD36CAB66EE012146050175128FA500"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_EDD36CAB66EE012146050175128FA500"
- "OwnerKey" = "8:_F44BED80D7FA78C84BD0165FA65762DB"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_EDD36CAB66EE012146050175128FA500"
- "OwnerKey" = "8:_938451235648294BEBE571FFF4F66A01"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
"MsmKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
"OwnerKey" = "8:_UNDEFINED"
"MsmSig" = "8:_UNDEFINED"
@@ -1372,6 +1030,12 @@
"Entry"
{
"MsmKey" = "8:_F44BED80D7FA78C84BD0165FA65762DB"
+ "OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_F44BED80D7FA78C84BD0165FA65762DB"
"OwnerKey" = "8:_ABAAF01D71C0623588BF9114BAB8F55A"
"MsmSig" = "8:_UNDEFINED"
}
@@ -1384,18 +1048,6 @@
"Entry"
{
"MsmKey" = "8:_F44BED80D7FA78C84BD0165FA65762DB"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_F44BED80D7FA78C84BD0165FA65762DB"
- "OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_F44BED80D7FA78C84BD0165FA65762DB"
"OwnerKey" = "8:_BF4801B0EEB45D9834E1CCF4BFC2873D"
"MsmSig" = "8:_UNDEFINED"
}
@@ -1413,12 +1065,6 @@
}
"Entry"
{
- "MsmKey" = "8:_F573CF28A115C1A949C33C2D70E19768"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
"MsmKey" = "8:_F776A32204F43995E3D2DCD7E955974F"
"OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
@@ -1431,74 +1077,74 @@
}
"Entry"
{
- "MsmKey" = "8:_F776A32204F43995E3D2DCD7E955974F"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
+ "MsmKey" = "8:_F839A17AE7B05BB65C25428B7F0E1CBB"
+ "OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_F776A32204F43995E3D2DCD7E955974F"
+ "MsmKey" = "8:_F839A17AE7B05BB65C25428B7F0E1CBB"
+ "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_FBFA0FE89258CFD8C95093D548E9A3AA"
+ "OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_FBFA0FE89258CFD8C95093D548E9A3AA"
+ "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_BF4801B0EEB45D9834E1CCF4BFC2873D"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
+ "MsmKey" = "8:_UNDEFINED"
"OwnerKey" = "8:_62961836EBD5DE2C67B881D60D5FD720"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_F776A32204F43995E3D2DCD7E955974F"
+ "MsmKey" = "8:_UNDEFINED"
"OwnerKey" = "8:_938451235648294BEBE571FFF4F66A01"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
- "MsmKey" = "8:_F839A17AE7B05BB65C25428B7F0E1CBB"
- "OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_F839A17AE7B05BB65C25428B7F0E1CBB"
- "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_F839A17AE7B05BB65C25428B7F0E1CBB"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_FBFA0FE89258CFD8C95093D548E9A3AA"
- "OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_FBFA0FE89258CFD8C95093D548E9A3AA"
- "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
- "MsmSig" = "8:_UNDEFINED"
- }
- "Entry"
- {
- "MsmKey" = "8:_FBFA0FE89258CFD8C95093D548E9A3AA"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
+ "MsmKey" = "8:_UNDEFINED"
+ "OwnerKey" = "8:_4A11C7D06AC7348FEBA0E461C79D0710"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
"MsmKey" = "8:_UNDEFINED"
- "OwnerKey" = "8:_3C6F5AA45818456F957B56E21EBDE97F"
+ "OwnerKey" = "8:_E3D590371CE0F6366FD0A35B831E8139"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
"MsmKey" = "8:_UNDEFINED"
- "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
+ "OwnerKey" = "8:_D50FF64662E4744969D43AC04158080C"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
"MsmKey" = "8:_UNDEFINED"
- "OwnerKey" = "8:_3D190E0A0985449C8C27F3FCC81A5D85"
+ "OwnerKey" = "8:_3FAB52733F9156DF2D4341ADF163F307"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
@@ -1510,7 +1156,7 @@
"Entry"
{
"MsmKey" = "8:_UNDEFINED"
- "OwnerKey" = "8:_BF4801B0EEB45D9834E1CCF4BFC2873D"
+ "OwnerKey" = "8:_F31597008F2B4030A5045D94C55F1BFE"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
@@ -1528,13 +1174,13 @@
"Entry"
{
"MsmKey" = "8:_UNDEFINED"
- "OwnerKey" = "8:_8F4B2B4A05B106CB2880FD2DC469FF06"
+ "OwnerKey" = "8:_EE45B18DB4B0D6FA778B296A627BBC68"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
"MsmKey" = "8:_UNDEFINED"
- "OwnerKey" = "8:_51DFC538915718DE3E74A95FF39DC749"
+ "OwnerKey" = "8:_B3244676DE282534966AB955EE6FC5A6"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
@@ -2434,6 +2080,32 @@
"IsDependency" = "11:TRUE"
"IsolateTo" = "8:"
}
+ "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3FAB52733F9156DF2D4341ADF163F307"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:Google.Apis.Core, Version=1.28.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ }
+ "SourcePath" = "8:Google.Apis.Core.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_195A3C659FB74030BD0F825A0E4FE2A6"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:TRUE"
+ "IsolateTo" = "8:"
+ }
"{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_443863898BDB49D4EF8651FDBB1C7B53"
{
"AssemblyRegister" = "3:1"
@@ -2558,6 +2230,32 @@
"IsDependency" = "11:TRUE"
"IsolateTo" = "8:"
}
+ "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4A11C7D06AC7348FEBA0E461C79D0710"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:Google.Apis.Auth, Version=1.28.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ }
+ "SourcePath" = "8:Google.Apis.Auth.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_195A3C659FB74030BD0F825A0E4FE2A6"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:TRUE"
+ "IsolateTo" = "8:"
+ }
"{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4F101A164D944C2BB911D6902498BD53"
{
"SourcePath" = "8:icon.ico"
@@ -2578,37 +2276,6 @@
"IsDependency" = "11:FALSE"
"IsolateTo" = "8:"
}
- "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_51DFC538915718DE3E74A95FF39DC749"
- {
- "AssemblyRegister" = "3:1"
- "AssemblyIsInGAC" = "11:FALSE"
- "AssemblyAsmDisplayName" = "8:BouncyCastle.Crypto, Version=1.8.1.0, Culture=neutral, PublicKeyToken=0e99375e54769942"
- "ScatterAssemblies"
- {
- "_51DFC538915718DE3E74A95FF39DC749"
- {
- "Name" = "8:BouncyCastle.Crypto.dll"
- "Attributes" = "3:512"
- }
- }
- "SourcePath" = "8:BouncyCastle.Crypto.dll"
- "TargetName" = "8:"
- "Tag" = "8:"
- "Folder" = "8:_195A3C659FB74030BD0F825A0E4FE2A6"
- "Condition" = "8:"
- "Transitive" = "11:FALSE"
- "Vital" = "11:TRUE"
- "ReadOnly" = "11:FALSE"
- "Hidden" = "11:FALSE"
- "System" = "11:FALSE"
- "Permanent" = "11:FALSE"
- "SharedLegacy" = "11:FALSE"
- "PackageAs" = "3:1"
- "Register" = "3:1"
- "Exclude" = "11:FALSE"
- "IsDependency" = "11:TRUE"
- "IsolateTo" = "8:"
- }
"{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_543177851933B27715C10251AFB92835"
{
"AssemblyRegister" = "3:1"
@@ -2644,14 +2311,9 @@
{
"AssemblyRegister" = "3:1"
"AssemblyIsInGAC" = "11:FALSE"
- "AssemblyAsmDisplayName" = "8:Microsoft.Graph, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
+ "AssemblyAsmDisplayName" = "8:Microsoft.Graph, Version=1.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
"ScatterAssemblies"
{
- "_62961836EBD5DE2C67B881D60D5FD720"
- {
- "Name" = "8:Microsoft.Graph.dll"
- "Attributes" = "3:512"
- }
}
"SourcePath" = "8:Microsoft.Graph.dll"
"TargetName" = "8:"
@@ -2908,49 +2570,13 @@
"IsDependency" = "11:TRUE"
"IsolateTo" = "8:"
}
- "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8F4B2B4A05B106CB2880FD2DC469FF06"
- {
- "AssemblyRegister" = "3:1"
- "AssemblyIsInGAC" = "11:FALSE"
- "AssemblyAsmDisplayName" = "8:Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL"
- "ScatterAssemblies"
- {
- "_8F4B2B4A05B106CB2880FD2DC469FF06"
- {
- "Name" = "8:Newtonsoft.Json.dll"
- "Attributes" = "3:512"
- }
- }
- "SourcePath" = "8:Newtonsoft.Json.dll"
- "TargetName" = "8:"
- "Tag" = "8:"
- "Folder" = "8:_195A3C659FB74030BD0F825A0E4FE2A6"
- "Condition" = "8:"
- "Transitive" = "11:FALSE"
- "Vital" = "11:TRUE"
- "ReadOnly" = "11:FALSE"
- "Hidden" = "11:FALSE"
- "System" = "11:FALSE"
- "Permanent" = "11:FALSE"
- "SharedLegacy" = "11:FALSE"
- "PackageAs" = "3:1"
- "Register" = "3:1"
- "Exclude" = "11:FALSE"
- "IsDependency" = "11:TRUE"
- "IsolateTo" = "8:"
- }
"{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_938451235648294BEBE571FFF4F66A01"
{
"AssemblyRegister" = "3:1"
"AssemblyIsInGAC" = "11:FALSE"
- "AssemblyAsmDisplayName" = "8:Microsoft.Graph.Core, Version=1.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
+ "AssemblyAsmDisplayName" = "8:Microsoft.Graph.Core, Version=1.6.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
"ScatterAssemblies"
{
- "_938451235648294BEBE571FFF4F66A01"
- {
- "Name" = "8:Microsoft.Graph.Core.dll"
- "Attributes" = "3:512"
- }
}
"SourcePath" = "8:Microsoft.Graph.Core.dll"
"TargetName" = "8:"
@@ -3101,11 +2727,6 @@
"AssemblyAsmDisplayName" = "8:Core, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"
"ScatterAssemblies"
{
- "_ABAAF01D71C0623588BF9114BAB8F55A"
- {
- "Name" = "8:Core.dll"
- "Attributes" = "3:512"
- }
}
"SourcePath" = "8:Core.dll"
"TargetName" = "8:"
@@ -3156,6 +2777,37 @@
"IsDependency" = "11:TRUE"
"IsolateTo" = "8:"
}
+ "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B3244676DE282534966AB955EE6FC5A6"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:BouncyCastle.Crypto, Version=1.8.1.0, Culture=neutral, PublicKeyToken=0e99375e54769942"
+ "ScatterAssemblies"
+ {
+ "_B3244676DE282534966AB955EE6FC5A6"
+ {
+ "Name" = "8:BouncyCastle.Crypto.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:BouncyCastle.Crypto.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_195A3C659FB74030BD0F825A0E4FE2A6"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:TRUE"
+ "IsolateTo" = "8:"
+ }
"{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BB1554AFA76408C7FC2F77857C965F42"
{
"AssemblyRegister" = "3:1"
@@ -3222,14 +2874,9 @@
{
"AssemblyRegister" = "3:1"
"AssemblyIsInGAC" = "11:FALSE"
- "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.Clients.ActiveDirectory.Platform, Version=3.13.9.1126, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
+ "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.Clients.ActiveDirectory.Platform, Version=3.16.0.14, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
"ScatterAssemblies"
{
- "_BF4801B0EEB45D9834E1CCF4BFC2873D"
- {
- "Name" = "8:Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll"
- "Attributes" = "3:512"
- }
}
"SourcePath" = "8:Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll"
"TargetName" = "8:"
@@ -3466,6 +3113,32 @@
"IsDependency" = "11:TRUE"
"IsolateTo" = "8:"
}
+ "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D50FF64662E4744969D43AC04158080C"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:Google.Apis, Version=1.28.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ }
+ "SourcePath" = "8:Google.Apis.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_195A3C659FB74030BD0F825A0E4FE2A6"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:TRUE"
+ "IsolateTo" = "8:"
+ }
"{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D63E18EA32770126C1E3D80DFD567CD1"
{
"AssemblyRegister" = "3:1"
@@ -3590,6 +3263,32 @@
"IsDependency" = "11:TRUE"
"IsolateTo" = "8:"
}
+ "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E3D590371CE0F6366FD0A35B831E8139"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:Google.Apis.Admin.Directory.directory_v1, Version=1.28.0.934, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ }
+ "SourcePath" = "8:Google.Apis.Admin.Directory.directory_v1.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_195A3C659FB74030BD0F825A0E4FE2A6"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:TRUE"
+ "IsolateTo" = "8:"
+ }
"{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E5DF191BE23E573F0B35147F3D2E63AD"
{
"AssemblyRegister" = "3:1"
@@ -3776,18 +3475,44 @@
"IsDependency" = "11:TRUE"
"IsolateTo" = "8:"
}
+ "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EE45B18DB4B0D6FA778B296A627BBC68"
+ {
+ "AssemblyRegister" = "3:1"
+ "AssemblyIsInGAC" = "11:FALSE"
+ "AssemblyAsmDisplayName" = "8:Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL"
+ "ScatterAssemblies"
+ {
+ "_EE45B18DB4B0D6FA778B296A627BBC68"
+ {
+ "Name" = "8:Newtonsoft.Json.dll"
+ "Attributes" = "3:512"
+ }
+ }
+ "SourcePath" = "8:Newtonsoft.Json.dll"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_195A3C659FB74030BD0F825A0E4FE2A6"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:TRUE"
+ "IsolateTo" = "8:"
+ }
"{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F44BED80D7FA78C84BD0165FA65762DB"
{
"AssemblyRegister" = "3:1"
"AssemblyIsInGAC" = "11:FALSE"
- "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.Clients.ActiveDirectory, Version=3.13.9.1126, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
+ "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.Clients.ActiveDirectory, Version=3.16.0.14, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
"ScatterAssemblies"
{
- "_F44BED80D7FA78C84BD0165FA65762DB"
- {
- "Name" = "8:Microsoft.IdentityModel.Clients.ActiveDirectory.dll"
- "Attributes" = "3:512"
- }
}
"SourcePath" = "8:Microsoft.IdentityModel.Clients.ActiveDirectory.dll"
"TargetName" = "8:"
@@ -3988,7 +3713,7 @@
"Name" = "8:Microsoft Visual Studio"
"ProductName" = "8:bitwarden Directory Connector"
"ProductCode" = "8:{1E27A7B6-8CA5-4C8E-8DC8-A354AFF221FC}"
- "PackageCode" = "8:{77B6E8FB-4912-4DA7-84A6-C33C7197F402}"
+ "PackageCode" = "8:{AD8C28F5-DAED-42F2-B1C1-5B22B104D475}"
"UpgradeCode" = "8:{AD840539-416A-4C0F-9549-8D9EE828F80B}"
"AspNetVersion" = "8:4.0.30319.0"
"RestartWWWService" = "11:FALSE"
@@ -4573,34 +4298,6 @@
{
}
}
- "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_3D190E0A0985449C8C27F3FCC81A5D85"
- {
- "SourcePath" = "8:..\\App\\obj\\Debug\\App.exe"
- "TargetName" = "8:"
- "Tag" = "8:"
- "Folder" = "8:_195A3C659FB74030BD0F825A0E4FE2A6"
- "Condition" = "8:"
- "Transitive" = "11:FALSE"
- "Vital" = "11:TRUE"
- "ReadOnly" = "11:FALSE"
- "Hidden" = "11:FALSE"
- "System" = "11:FALSE"
- "Permanent" = "11:FALSE"
- "SharedLegacy" = "11:FALSE"
- "PackageAs" = "3:1"
- "Register" = "3:1"
- "Exclude" = "11:FALSE"
- "IsDependency" = "11:FALSE"
- "IsolateTo" = "8:"
- "ProjectOutputGroupRegister" = "3:1"
- "OutputConfiguration" = "8:"
- "OutputGroupCanonicalName" = "8:Built"
- "OutputProjectGuid" = "8:{C4A631EE-19DF-4A10-8526-CB6996EFA853}"
- "ShowKeyOutput" = "11:TRUE"
- "ExcludeFilters"
- {
- }
- }
"{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_F31597008F2B4030A5045D94C55F1BFE"
{
"SourcePath" = "8:..\\Service\\obj\\Debug\\Service.exe"