diff options
| -rw-r--r-- | AleeBrowser/AleeBrowser.csproj | 20 | ||||
| -rw-r--r-- | AleeBrowser/FodyWeavers.xml | 4 | ||||
| -rw-r--r-- | AleeBrowser/Form1.Designer.cs | 101 | ||||
| -rw-r--r-- | AleeBrowser/Form1.cs | 26 | ||||
| -rw-r--r-- | AleeBrowser/Form1.resx | 3 | ||||
| -rw-r--r-- | AleeBrowser/Form2.Designer.cs | 89 | ||||
| -rw-r--r-- | AleeBrowser/Form2.cs | 30 | ||||
| -rw-r--r-- | AleeBrowser/Form2.resx | 146 | ||||
| -rw-r--r-- | AleeBrowser/packages.config | 2 |
9 files changed, 325 insertions, 96 deletions
diff --git a/AleeBrowser/AleeBrowser.csproj b/AleeBrowser/AleeBrowser.csproj index 98276c5..1ffcdd4 100644 --- a/AleeBrowser/AleeBrowser.csproj +++ b/AleeBrowser/AleeBrowser.csproj @@ -71,6 +71,10 @@ <SpecificVersion>False</SpecificVersion> <HintPath>bin\x86\Debug\CefSharp.WinForms.dll</HintPath> </Reference> + <Reference Include="Costura, Version=1.6.2.0, Culture=neutral, PublicKeyToken=9919ef960d84173d, processorArchitecture=MSIL"> + <HintPath>..\packages\Costura.Fody.1.6.2\lib\dotnet\Costura.dll</HintPath> + <Private>False</Private> + </Reference> <Reference Include="System" /> <Reference Include="System.Core" /> <Reference Include="System.DirectoryServices" /> @@ -91,11 +95,20 @@ <Compile Include="Form1.Designer.cs"> <DependentUpon>Form1.cs</DependentUpon> </Compile> + <Compile Include="Form2.cs"> + <SubType>Form</SubType> + </Compile> + <Compile Include="Form2.Designer.cs"> + <DependentUpon>Form2.cs</DependentUpon> + </Compile> <Compile Include="Program.cs" /> <Compile Include="Properties\AssemblyInfo.cs" /> <EmbeddedResource Include="Form1.resx"> <DependentUpon>Form1.cs</DependentUpon> </EmbeddedResource> + <EmbeddedResource Include="Form2.resx"> + <DependentUpon>Form2.cs</DependentUpon> + </EmbeddedResource> <EmbeddedResource Include="Properties\Resources.resx"> <Generator>ResXFileCodeGenerator</Generator> <LastGenOutput>Resources.Designer.cs</LastGenOutput> @@ -119,6 +132,9 @@ <ItemGroup> <None Include="App.config" /> </ItemGroup> + <ItemGroup> + <None Include="FodyWeavers.xml" /> + </ItemGroup> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> <Import Project="..\packages\cef.redist.x64.3.2987.1601\build\cef.redist.x64.targets" Condition="Exists('..\packages\cef.redist.x64.3.2987.1601\build\cef.redist.x64.targets')" /> <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> @@ -131,10 +147,14 @@ <Error Condition="!Exists('..\packages\CefSharp.Common.57.0.0\build\CefSharp.Common.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\CefSharp.Common.57.0.0\build\CefSharp.Common.targets'))" /> <Error Condition="!Exists('..\packages\CefSharp.WinForms.57.0.0\build\CefSharp.WinForms.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\CefSharp.WinForms.57.0.0\build\CefSharp.WinForms.props'))" /> <Error Condition="!Exists('..\packages\CefSharp.WinForms.57.0.0\build\CefSharp.WinForms.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\CefSharp.WinForms.57.0.0\build\CefSharp.WinForms.targets'))" /> + <Error Condition="!Exists('..\packages\Fody.2.0.0\build\dotnet\Fody.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Fody.2.0.0\build\dotnet\Fody.targets'))" /> + <Error Condition="!Exists('..\packages\Costura.Fody.1.6.2\build\dotnet\Costura.Fody.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Costura.Fody.1.6.2\build\dotnet\Costura.Fody.targets'))" /> </Target> <Import Project="..\packages\cef.redist.x86.3.2987.1601\build\cef.redist.x86.targets" Condition="Exists('..\packages\cef.redist.x86.3.2987.1601\build\cef.redist.x86.targets')" /> <Import Project="..\packages\CefSharp.Common.57.0.0\build\CefSharp.Common.targets" Condition="Exists('..\packages\CefSharp.Common.57.0.0\build\CefSharp.Common.targets')" /> <Import Project="..\packages\CefSharp.WinForms.57.0.0\build\CefSharp.WinForms.targets" Condition="Exists('..\packages\CefSharp.WinForms.57.0.0\build\CefSharp.WinForms.targets')" /> + <Import Project="..\packages\Fody.2.0.0\build\dotnet\Fody.targets" Condition="Exists('..\packages\Fody.2.0.0\build\dotnet\Fody.targets')" /> + <Import Project="..\packages\Costura.Fody.1.6.2\build\dotnet\Costura.Fody.targets" Condition="Exists('..\packages\Costura.Fody.1.6.2\build\dotnet\Costura.Fody.targets')" /> <!-- To modify your build process, add your task inside one of the targets below and uncomment it. Other similar extension points exist, see Microsoft.Common.targets. <Target Name="BeforeBuild"> diff --git a/AleeBrowser/FodyWeavers.xml b/AleeBrowser/FodyWeavers.xml new file mode 100644 index 0000000..c6e1b7c --- /dev/null +++ b/AleeBrowser/FodyWeavers.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?> +<Weavers> + <Costura /> +</Weavers>
\ No newline at end of file diff --git a/AleeBrowser/Form1.Designer.cs b/AleeBrowser/Form1.Designer.cs index f72ad3d..c2c776f 100644 --- a/AleeBrowser/Form1.Designer.cs +++ b/AleeBrowser/Form1.Designer.cs @@ -28,31 +28,16 @@ /// </summary> private void InitializeComponent() { - this.label1 = new System.Windows.Forms.Label(); this.button3 = new System.Windows.Forms.Button(); this.label2 = new System.Windows.Forms.Label(); this.button4 = new System.Windows.Forms.Button(); this.textBox1 = new System.Windows.Forms.TextBox(); this.button1 = new System.Windows.Forms.Button(); - this.statusStrip1 = new System.Windows.Forms.StatusStrip(); - this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar(); - this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel(); - this.button2 = new System.Windows.Forms.Button(); this.panel1 = new System.Windows.Forms.Panel(); this.directoryEntry1 = new System.DirectoryServices.DirectoryEntry(); - this.statusStrip1.SuspendLayout(); + this.label1 = new System.Windows.Forms.Label(); this.SuspendLayout(); // - // label1 - // - this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.label1.AutoSize = true; - this.label1.Location = new System.Drawing.Point(766, 530); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(196, 13); - this.label1.TabIndex = 0; - this.label1.Text = "Please note that AleeBrowser is in alpha"; - // // button3 // this.button3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); @@ -68,18 +53,19 @@ // this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.label2.AutoSize = true; - this.label2.Location = new System.Drawing.Point(819, 512); + this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label2.Location = new System.Drawing.Point(382, 534); this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(93, 13); + this.label2.Size = new System.Drawing.Size(213, 31); this.label2.TabIndex = 5; - this.label2.Text = "Alpha 0.2 Build 15"; + this.label2.Text = "AleeBrowser 1.0"; // // button4 // this.button4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.button4.Location = new System.Drawing.Point(26, 512); + this.button4.Location = new System.Drawing.Point(17, 537); this.button4.Name = "button4"; - this.button4.Size = new System.Drawing.Size(71, 29); + this.button4.Size = new System.Drawing.Size(71, 30); this.button4.TabIndex = 6; this.button4.Text = "About"; this.button4.UseVisualStyleBackColor = true; @@ -90,107 +76,76 @@ this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); - this.textBox1.Location = new System.Drawing.Point(17, 15); + this.textBox1.Location = new System.Drawing.Point(17, 17); this.textBox1.Name = "textBox1"; this.textBox1.Size = new System.Drawing.Size(889, 20); this.textBox1.TabIndex = 7; this.textBox1.Text = "http://"; + this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged); this.textBox1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox1_KeyPress); // // button1 // this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.button1.Location = new System.Drawing.Point(194, 512); + this.button1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F); + this.button1.Location = new System.Drawing.Point(106, 537); this.button1.Name = "button1"; - this.button1.Size = new System.Drawing.Size(71, 31); + this.button1.Size = new System.Drawing.Size(71, 30); this.button1.TabIndex = 10; this.button1.Text = "Exit"; this.button1.UseVisualStyleBackColor = true; this.button1.Click += new System.EventHandler(this.button1_Click); // - // statusStrip1 - // - this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.toolStripProgressBar1, - this.toolStripStatusLabel1}); - this.statusStrip1.Location = new System.Drawing.Point(0, 552); - this.statusStrip1.Name = "statusStrip1"; - this.statusStrip1.Size = new System.Drawing.Size(974, 22); - this.statusStrip1.TabIndex = 11; - this.statusStrip1.Text = "statusStrip1"; - // - // toolStripProgressBar1 - // - this.toolStripProgressBar1.Name = "toolStripProgressBar1"; - this.toolStripProgressBar1.Size = new System.Drawing.Size(100, 16); - this.toolStripProgressBar1.Click += new System.EventHandler(this.toolStripProgressBar1_Click); - // - // toolStripStatusLabel1 - // - this.toolStripStatusLabel1.Name = "toolStripStatusLabel1"; - this.toolStripStatusLabel1.Size = new System.Drawing.Size(82, 17); - this.toolStripStatusLabel1.Text = "Current Status"; - // - // button2 - // - this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.button2.Enabled = false; - this.button2.Location = new System.Drawing.Point(103, 510); - this.button2.Name = "button2"; - this.button2.Size = new System.Drawing.Size(85, 31); - this.button2.TabIndex = 12; - this.button2.Text = "Victorify"; - this.button2.UseVisualStyleBackColor = true; - this.button2.Click += new System.EventHandler(this.button2_Click); - // // panel1 // this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); - this.panel1.Location = new System.Drawing.Point(18, 47); + this.panel1.Location = new System.Drawing.Point(18, 54); this.panel1.Name = "panel1"; - this.panel1.Size = new System.Drawing.Size(934, 459); + this.panel1.Size = new System.Drawing.Size(934, 469); this.panel1.TabIndex = 13; // + // label1 + // + this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.label1.AutoSize = true; + this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label1.Location = new System.Drawing.Point(707, 534); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(245, 31); + this.label1.TabIndex = 0; + this.label1.Text = "Made by: AleeCorp"; + // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(974, 574); + this.Controls.Add(this.label1); this.Controls.Add(this.panel1); - this.Controls.Add(this.button2); - this.Controls.Add(this.statusStrip1); this.Controls.Add(this.button1); this.Controls.Add(this.textBox1); this.Controls.Add(this.button4); this.Controls.Add(this.label2); this.Controls.Add(this.button3); - this.Controls.Add(this.label1); this.Name = "Form1"; - this.Text = "AleeBrowser"; + this.Text = "AleeBrowser 1.0"; this.Load += new System.EventHandler(this.Form1_Load); - this.statusStrip1.ResumeLayout(false); - this.statusStrip1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion - - private System.Windows.Forms.Label label1; private System.Windows.Forms.Button button3; private System.Windows.Forms.Label label2; private System.Windows.Forms.Button button4; private System.Windows.Forms.TextBox textBox1; private System.Windows.Forms.Button button1; - private System.Windows.Forms.StatusStrip statusStrip1; - private System.Windows.Forms.ToolStripProgressBar toolStripProgressBar1; - private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1; - private System.Windows.Forms.Button button2; private System.Windows.Forms.Panel panel1; private System.DirectoryServices.DirectoryEntry directoryEntry1; + private System.Windows.Forms.Label label1; } } diff --git a/AleeBrowser/Form1.cs b/AleeBrowser/Form1.cs index 6e641e4..5738ca0 100644 --- a/AleeBrowser/Form1.cs +++ b/AleeBrowser/Form1.cs @@ -23,6 +23,7 @@ namespace AleeBrowser private void Form1_Load(object sender, EventArgs e) { + MessageBox.Show("Please note that this software is still working progress so don't expect things to work."); browser = new CefSharp.WinForms.ChromiumWebBrowser("http://alee14.ga"); { @@ -38,7 +39,8 @@ namespace AleeBrowser private void button4_Click(object sender, EventArgs e) { - MessageBox.Show("This browser is created by: AleeCorp"); + Form2 f2 = new Form2(); + f2.ShowDialog(); } private void button1_Click(object sender, EventArgs e) @@ -52,9 +54,6 @@ namespace AleeBrowser } private void NavigateToPage() { - button3.Enabled = false; - textBox1.Enabled = false; - toolStripProgressBar1.Text = "Navigation has started"; browser.Load(textBox1.Text); } @@ -66,17 +65,9 @@ namespace AleeBrowser } } - private void browser_DocumentCompleted(object sender, ChromiumWebBrowser.DocumentCompletedEventArgs e) - { - button3.Enabled = true; - textBox1.Enabled = true; - toolStripProgressBar1.Text = "Navigation Complete"; - } - private void browser_ProgressChanged(object sender, WebBrowserProgressChangedEventArgs e) { - if (e.CurrentProgress > 0 && e.MaximumProgress > 0) - toolStripProgressBar1.ProgressBar.Value = (int)(e.CurrentProgress * 100 / e.MaximumProgress); + } @@ -85,14 +76,9 @@ namespace AleeBrowser } - private void button2_Click(object sender, EventArgs e) + private void textBox1_TextChanged(object sender, EventArgs e) { - // foreach( HtmlElement image in browser.Document.Images) - // { - // image.SetAttribute("src", "https://yt3.ggpht.com/-Iuf1v4-SSSM/AAAAAAAAAAI/AAAAAAAAAAA/89IYeQw--wU/s900-c-k-no-mo-rj-c0xffffff/photo.jpg"); - // } + } } } -// This project was made in May 8th 2017 -// And here's the "before convert" file of AleeBrowser https://www.dropbox.com/s/16q7ay6otd4njw4/AleeBrowser.exe?dl=0 diff --git a/AleeBrowser/Form1.resx b/AleeBrowser/Form1.resx index fef6d8d..c109cd8 100644 --- a/AleeBrowser/Form1.resx +++ b/AleeBrowser/Form1.resx @@ -117,9 +117,6 @@ <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> - <metadata name="statusStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> - <value>17, 17</value> - </metadata> <metadata name="directoryEntry1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> <value>133, 17</value> </metadata> diff --git a/AleeBrowser/Form2.Designer.cs b/AleeBrowser/Form2.Designer.cs new file mode 100644 index 0000000..106cc01 --- /dev/null +++ b/AleeBrowser/Form2.Designer.cs @@ -0,0 +1,89 @@ +namespace AleeBrowser +{ + partial class Form2 + { + /// <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() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form2)); + this.label1 = new System.Windows.Forms.Label(); + this.label2 = new System.Windows.Forms.Label(); + this.button1 = new System.Windows.Forms.Button(); + this.SuspendLayout(); + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label1.Location = new System.Drawing.Point(12, 25); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(169, 25); + this.label1.TabIndex = 0; + this.label1.Text = "AleeBrowser 1.0"; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Location = new System.Drawing.Point(14, 62); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(584, 299); + this.label2.TabIndex = 1; + this.label2.Text = resources.GetString("label2.Text"); + // + // button1 + // + this.button1.Location = new System.Drawing.Point(187, 27); + this.button1.Name = "button1"; + this.button1.Size = new System.Drawing.Size(75, 23); + this.button1.TabIndex = 2; + this.button1.Text = "Close"; + this.button1.UseVisualStyleBackColor = true; + this.button1.Click += new System.EventHandler(this.button1_Click); + // + // Form2 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(605, 380); + this.ControlBox = false; + this.Controls.Add(this.button1); + this.Controls.Add(this.label2); + this.Controls.Add(this.label1); + this.Name = "Form2"; + this.Text = "About"; + this.Load += new System.EventHandler(this.Form2_Load); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.Label label1; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.Button button1; + } +}
\ No newline at end of file diff --git a/AleeBrowser/Form2.cs b/AleeBrowser/Form2.cs new file mode 100644 index 0000000..e48f335 --- /dev/null +++ b/AleeBrowser/Form2.cs @@ -0,0 +1,30 @@ +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 AleeBrowser +{ + public partial class Form2 : Form + { + public Form2() + { + InitializeComponent(); + } + + private void Form2_Load(object sender, EventArgs e) + { + + } + + private void button1_Click(object sender, EventArgs e) + { + this.Close(); + } + } +} diff --git a/AleeBrowser/Form2.resx b/AleeBrowser/Form2.resx new file mode 100644 index 0000000..11ee5ce --- /dev/null +++ b/AleeBrowser/Form2.resx @@ -0,0 +1,146 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <!-- + Microsoft ResX Schema + + Version 2.0 + + The primary goals of this format is to allow a simple XML format + that is mostly human readable. The generation and parsing of the + various data types are done through the TypeConverter classes + associated with the data types. + + Example: + + ... ado.net/XML headers & schema ... + <resheader name="resmimetype">text/microsoft-resx</resheader> + <resheader name="version">2.0</resheader> + <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> + <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> + <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> + <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> + <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> + <value>[base64 mime encoded serialized .NET Framework object]</value> + </data> + <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> + <comment>This is a comment</comment> + </data> + + There are any number of "resheader" rows that contain simple + name/value pairs. + + Each data row contains a name, and value. The row also contains a + type or mimetype. Type corresponds to a .NET class that support + text/value conversion through the TypeConverter architecture. + Classes that don't support this are serialized and stored with the + mimetype set. + + The mimetype is used for serialized objects, and tells the + ResXResourceReader how to depersist the object. This is currently not + extensible. For a given mimetype the value must be set accordingly: + + Note - application/x-microsoft.net.object.binary.base64 is the format + that the ResXResourceWriter will generate, however the reader can + read any of the formats listed below. + + mimetype: application/x-microsoft.net.object.binary.base64 + value : The object must be serialized with + : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.soap.base64 + value : The object must be serialized with + : System.Runtime.Serialization.Formatters.Soap.SoapFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.bytearray.base64 + value : The object must be serialized into a byte array + : using a System.ComponentModel.TypeConverter + : and then encoded with base64 encoding. + --> + <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> + <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> + <xsd:element name="root" msdata:IsDataSet="true"> + <xsd:complexType> + <xsd:choice maxOccurs="unbounded"> + <xsd:element name="metadata"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" /> + </xsd:sequence> + <xsd:attribute name="name" use="required" type="xsd:string" /> + <xsd:attribute name="type" type="xsd:string" /> + <xsd:attribute name="mimetype" type="xsd:string" /> + <xsd:attribute ref="xml:space" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="assembly"> + <xsd:complexType> + <xsd:attribute name="alias" type="xsd:string" /> + <xsd:attribute name="name" type="xsd:string" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="data"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> + <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> + <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> + <xsd:attribute ref="xml:space" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="resheader"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" /> + </xsd:complexType> + </xsd:element> + </xsd:choice> + </xsd:complexType> + </xsd:element> + </xsd:schema> + <resheader name="resmimetype"> + <value>text/microsoft-resx</value> + </resheader> + <resheader name="version"> + <value>2.0</value> + </resheader> + <resheader name="reader"> + <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> + <resheader name="writer"> + <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> + <data name="label2.Text" xml:space="preserve"> + <value>AleeBrowser 1.0 + +Copyright 2017 AleeCorp + +This project was made in May 8th 2017 + +This browser is using the web browser engine Cef from Chromium, + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and +associated documentation files (the "Software"), to deal in the Software without restriction, +including without limitation the rights to use, +copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom +the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, +INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR +THE USE OR OTHER DEALINGS IN THE SOFTWARE. +</value> + </data> +</root>
\ No newline at end of file diff --git a/AleeBrowser/packages.config b/AleeBrowser/packages.config index 92d8bc8..fb94be3 100644 --- a/AleeBrowser/packages.config +++ b/AleeBrowser/packages.config @@ -4,4 +4,6 @@ <package id="cef.redist.x86" version="3.2987.1601" targetFramework="net452" /> <package id="CefSharp.Common" version="57.0.0" targetFramework="net452" /> <package id="CefSharp.WinForms" version="57.0.0" targetFramework="net452" /> + <package id="Costura.Fody" version="1.6.2" targetFramework="net452" developmentDependency="true" /> + <package id="Fody" version="2.0.0" targetFramework="net452" developmentDependency="true" /> </packages>
\ No newline at end of file |
