1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Console
{
public class ConsoleCommandExecutionResult
{
public String WorkingFolder { get; set; }
public String Output { get; set; }
public List<ConsoleSuggestion> Suggestions { get; set; }
public ConsoleCommandExecutionResult()
{
Suggestions = new List<ConsoleSuggestion>();
}
}
}
lor: #888888 } /* Comment.Hashbang */
.highlight .cm { color: #888888 } /* Comment.Multiline */
.highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */
.highlight .cpf { color: #888888 } /* Comment.PreprocFile */
.highlight .c1 { color: #888888 } /* Comment.Single */
.highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .ges { font-weight: bold; font-style: italic } /* Generic.EmphStrong */
.highlight .gr { color: #aa0000 } /* Generic.Error */
.highlight .gh { color: #333333 } /* Generic.Heading */
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
.highlight .go { color: #888888 } /* Generic.Output */
.highlight .gp { color: #555555 } /* Generic.Prompt */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #666666 } /* Generic.Subheading */
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
.highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */
.highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */
.highlight .kp { color: #008800 } /* Keyword.Pseudo */
.highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */
.highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */
.highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */
.highlight .na { color: #336699 } /* Name.Attribute */
.highlight .nb { color: #003388 } /* Name.Builtin */
.highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */
.highlight .no { color: #003366; font-weight: bold } /* Name.Constant */
.highlight .nd { color: #555555 } /* Name.Decorator */
.highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */
.highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */
.highlight .nl { color: #336699; font-style: italic } /* Name.Label */
.highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */
.highlight .py { color: #336699; font-weight: bold } /* Name.Property */
.highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */
.highlight .nv { color: #336699 } /* Name.Variable */
.highlight .ow { color: #008800 } /* Operator.Word */
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
.highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */
.highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */
.highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */
.highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */
.highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */
.highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */
.highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */
.highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */
.highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */
.highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */
.highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */
.highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */
.highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */
.highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */
.highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */
.highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */
.highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */
.highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */
.highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */
.highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */
.highlight .vc { color: #336699 } /* Name.Variable.Class */
.highlight .vg { color: #dd7700 } /* Name.Variable.Global */
.highlight .vi { color: #3333bb } /* Name.Variable.Instance */
.highlight .vm { color: #336699 } /* Name.Variable.Magic */
.highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */namespace Tango.BuildExtensions
{
partial class BuildForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.panel1 = new System.Windows.Forms.Panel();
this.btnCancel = new System.Windows.Forms.Button();
this.btnOK = new System.Windows.Forms.Button();
this.chkBuildSolution = new System.Windows.Forms.CheckBox();
this.chkUpdateAndBuildPMR = new System.Windows.Forms.CheckBox();
this.chkGeneratePMR = new System.Windows.Forms.CheckBox();
this.chkGenerateObservables = new System.Windows.Forms.CheckBox();
this.chkUpdateDatabase = new System.Windows.Forms.CheckBox();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.chkSQLite = new System.Windows.Forms.CheckBox();
this.panel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// panel1
//
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.panel1.Controls.Add(this.chkSQLite);
this.panel1.Controls.Add(this.btnCancel);
this.panel1.Controls.Add(this.btnOK);
this.panel1.Controls.Add(this.chkBuildSolution);
this.panel1.Controls.Add(this.chkUpdateAndBuildPMR);
this.panel1.Controls.Add(this.chkGeneratePMR);
this.panel1.Controls.Add(this.chkGenerateObservables);
this.panel1.Controls.Add(this.chkUpdateDatabase);
this.panel1.Controls.Add(this.pictureBox1);
this.panel1.Controls.Add(this.label2);
this.panel1.Controls.Add(this.label1);
this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel1.Location = new System.Drawing.Point(0, 0);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(596, 327);
this.panel1.TabIndex = 2;
//
// btnCancel
//
this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnCancel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
this.btnCancel.Cursor = System.Windows.Forms.Cursors.Arrow;
this.btnCancel.FlatAppearance.BorderSize = 0;
this.btnCancel.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(15)))), ((int)(((byte)(15)))), ((int)(((byte)(15)))));
this.btnCancel.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(60)))), ((int)(((byte)(60)))), ((int)(((byte)(60)))));
this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnCancel.Location = new System.Drawing.Point(349, 272);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(114, 42);
this.btnCancel.TabIndex = 11;
this.btnCancel.Text = "CANCEL";
this.btnCancel.UseVisualStyleBackColor = false;
//
// btnOK
//
this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnOK.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
this.btnOK.Cursor = System.Windows.Forms.Cursors.Arrow;
this.btnOK.FlatAppearance.BorderSize = 0;
this.btnOK.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(15)))), ((int)(((byte)(15)))), ((int)(((byte)(15)))));
this.btnOK.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(60)))), ((int)(((byte)(60)))), ((int)(((byte)(60)))));
this.btnOK.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnOK.Location = new System.Drawing.Point(469, 272);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(114, 42);
this.btnOK.TabIndex = 10;
this.btnOK.Text = "START";
this.btnOK.UseVisualStyleBackColor = false;
//
// chkBuildSolution
//
this.chkBuildSolution.AutoSize = true;
this.chkBuildSolution.Cursor = System.Windows.Forms.Cursors.Arrow;
this.chkBuildSolution.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.chkBuildSolution.Location = new System.Drawing.Point(27, 222);
this.chkBuildSolution.Name = "chkBuildSolution";
this.chkBuildSolution.Size = new System.Drawing.Size(111, 20);
this.chkBuildSolution.TabIndex = 9;
this.chkBuildSolution.Text = "Build Solution.";
this.chkBuildSolution.UseVisualStyleBackColor = true;
//
// chkUpdateAndBuildPMR
//
this.chkUpdateAndBuildPMR.AutoSize = true;
this.chkUpdateAndBuildPMR.Cursor = System.Windows.Forms.Cursors.Arrow;
this.chkUpdateAndBuildPMR.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.chkUpdateAndBuildPMR.Location = new System.Drawing.Point(27, 170);
this.chkUpdateAndBuildPMR.Name = "chkUpdateAndBuildPMR";
this.chkUpdateAndBuildPMR.Size = new System.Drawing.Size(233, 20);
this.chkUpdateAndBuildPMR.TabIndex = 8;
this.chkUpdateAndBuildPMR.Text = "Update and build PMR messages.";
this.chkUpdateAndBuildPMR.UseVisualStyleBackColor = true;
//
// chkGeneratePMR
//
this.chkGeneratePMR.AutoSize = true;
this.chkGeneratePMR.Cursor = System.Windows.Forms.Cursors.Arrow;
this.chkGeneratePMR.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.chkGeneratePMR.Location = new System.Drawing.Point(27, 144);
this.chkGeneratePMR.Name = "chkGeneratePMR";
this.chkGeneratePMR.Size = new System.Drawing.Size(215, 20);
this.chkGeneratePMR.TabIndex = 7;
this.chkGeneratePMR.Text = "Generate auto PMR messages.";
this.chkGeneratePMR.UseVisualStyleBackColor = true;
//
// chkGenerateObservables
//
this.chkGenerateObservables.AutoSize = true;
this.chkGenerateObservables.Cursor = System.Windows.Forms.Cursors.Arrow;
this.chkGenerateObservables.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.chkGenerateObservables.Location = new System.Drawing.Point(27, 118);
this.chkGenerateObservables.Name = "chkGenerateObservables";
this.chkGenerateObservables.Size = new System.Drawing.Size(223, 20);
this.chkGenerateObservables.TabIndex = 6;
this.chkGenerateObservables.Text = "Generate and build observables.";
this.chkGenerateObservables.UseVisualStyleBackColor = true;
//
// chkUpdateDatabase
//
this.chkUpdateDatabase.AutoSize = true;
this.chkUpdateDatabase.Cursor = System.Windows.Forms.Cursors.Arrow;
this.chkUpdateDatabase.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.chkUpdateDatabase.Location = new System.Drawing.Point(27, 92);
this.chkUpdateDatabase.Name = "chkUpdateDatabase";
this.chkUpdateDatabase.Size = new System.Drawing.Size(181, 20);
this.chkUpdateDatabase.TabIndex = 5;
this.chkUpdateDatabase.Text = "Update database entities.";
this.chkUpdateDatabase.UseVisualStyleBackColor = true;
//
// pictureBox1
//
this.pictureBox1.Cursor = System.Windows.Forms.Cursors.Arrow;
this.pictureBox1.Image = global::Tango.BuildExtensions.Properties.Resources.machine_trans_small;
this.pictureBox1.Location = new System.Drawing.Point(499, 47);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(63, 68);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox1.TabIndex = 4;
this.pictureBox1.TabStop = false;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Cursor = System.Windows.Forms.Cursors.Arrow;
this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label2.Location = new System.Drawing.Point(24, 47);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(266, 16);
this.label2.TabIndex = 1;
this.label2.Text = "Select the components you want to initialize.";
//
// label1
//
this.label1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
this.label1.Cursor = System.Windows.Forms.Cursors.Arrow;
this.label1.Dock = System.Windows.Forms.DockStyle.Top;
this.label1.Location = new System.Drawing.Point(0, 0);
this.label1.Margin = new System.Windows.Forms.Padding(0);
this.label1.Name = "label1";
this.label1.Padding = new System.Windows.Forms.Padding(5, 0, 0, 0);
this.label1.Size = new System.Drawing.Size(594, 29);
this.label1.TabIndex = 0;
this.label1.Text = "Tango Build Engine";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// chkSQLite
//
this.chkSQLite.AutoSize = true;
this.chkSQLite.Cursor = System.Windows.Forms.Cursors.Arrow;
this.chkSQLite.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.chkSQLite.Location = new System.Drawing.Point(27, 196);
this.chkSQLite.Name = "chkSQLite";
this.chkSQLite.Size = new System.Drawing.Size(252, 20);
this.chkSQLite.TabIndex = 12;
this.chkSQLite.Text = "Generate SQLite DB from SQL Server.";
this.chkSQLite.UseVisualStyleBackColor = true;
//
// BuildForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
this.ClientSize = new System.Drawing.Size(596, 327);
this.ControlBox = false;
this.Controls.Add(this.panel1);
this.ForeColor = System.Drawing.Color.Gainsboro;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "BuildForm";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Tango Build Engine";
this.TopMost = true;
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.CheckBox chkUpdateDatabase;
private System.Windows.Forms.CheckBox chkGenerateObservables;
private System.Windows.Forms.CheckBox chkGeneratePMR;
private System.Windows.Forms.CheckBox chkUpdateAndBuildPMR;
private System.Windows.Forms.CheckBox chkBuildSolution;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.CheckBox chkSQLite;
}
}
|