From 60615f80e7098048f92bfc5e8a8d9e5362c970e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tommy=20=C3=96man?= Date: Mon, 7 Jan 2019 15:52:21 +0100 Subject: [PATCH] Add project files. --- tomcatAnalys.sln | 25 ++++ tomcatAnalys/App.config | 6 + tomcatAnalys/Program.cs | 22 ++++ tomcatAnalys/Properties/AssemblyInfo.cs | 36 +++++ tomcatAnalys/Properties/Resources.Designer.cs | 71 ++++++++++ tomcatAnalys/Properties/Resources.resx | 117 +++++++++++++++++ tomcatAnalys/Properties/Settings.Designer.cs | 30 +++++ tomcatAnalys/Properties/Settings.settings | 7 + tomcatAnalys/frmFileShower.Designer.cs | 91 +++++++++++++ tomcatAnalys/frmFileShower.cs | 29 +++++ tomcatAnalys/frmFileShower.resx | 120 +++++++++++++++++ tomcatAnalys/frmStart.Designer.cs | 117 +++++++++++++++++ tomcatAnalys/frmStart.cs | 119 +++++++++++++++++ tomcatAnalys/frmStart.resx | 123 ++++++++++++++++++ tomcatAnalys/tomcatAnalys.csproj | 92 +++++++++++++ 15 files changed, 1005 insertions(+) create mode 100644 tomcatAnalys.sln create mode 100644 tomcatAnalys/App.config create mode 100644 tomcatAnalys/Program.cs create mode 100644 tomcatAnalys/Properties/AssemblyInfo.cs create mode 100644 tomcatAnalys/Properties/Resources.Designer.cs create mode 100644 tomcatAnalys/Properties/Resources.resx create mode 100644 tomcatAnalys/Properties/Settings.Designer.cs create mode 100644 tomcatAnalys/Properties/Settings.settings create mode 100644 tomcatAnalys/frmFileShower.Designer.cs create mode 100644 tomcatAnalys/frmFileShower.cs create mode 100644 tomcatAnalys/frmFileShower.resx create mode 100644 tomcatAnalys/frmStart.Designer.cs create mode 100644 tomcatAnalys/frmStart.cs create mode 100644 tomcatAnalys/frmStart.resx create mode 100644 tomcatAnalys/tomcatAnalys.csproj diff --git a/tomcatAnalys.sln b/tomcatAnalys.sln new file mode 100644 index 0000000..27bf7b2 --- /dev/null +++ b/tomcatAnalys.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.28010.2036 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "tomcatAnalys", "tomcatAnalys\tomcatAnalys.csproj", "{E31FE1B4-F055-4D9B-A848-D172565DCD67}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {E31FE1B4-F055-4D9B-A848-D172565DCD67}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E31FE1B4-F055-4D9B-A848-D172565DCD67}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E31FE1B4-F055-4D9B-A848-D172565DCD67}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E31FE1B4-F055-4D9B-A848-D172565DCD67}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {03090141-8735-42F5-8EAC-2DB9D81FD75C} + EndGlobalSection +EndGlobal diff --git a/tomcatAnalys/App.config b/tomcatAnalys/App.config new file mode 100644 index 0000000..731f6de --- /dev/null +++ b/tomcatAnalys/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/tomcatAnalys/Program.cs b/tomcatAnalys/Program.cs new file mode 100644 index 0000000..23c4f5d --- /dev/null +++ b/tomcatAnalys/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace tomcatAnalys +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new frmStart()); + } + } +} diff --git a/tomcatAnalys/Properties/AssemblyInfo.cs b/tomcatAnalys/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..76083a6 --- /dev/null +++ b/tomcatAnalys/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +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("tomcatAnalys")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("tomcatAnalys")] +[assembly: AssemblyCopyright("Copyright © 2019")] +[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("e31fe1b4-f055-4d9b-a848-d172565dcd67")] + +// 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/tomcatAnalys/Properties/Resources.Designer.cs b/tomcatAnalys/Properties/Resources.Designer.cs new file mode 100644 index 0000000..72cb951 --- /dev/null +++ b/tomcatAnalys/Properties/Resources.Designer.cs @@ -0,0 +1,71 @@ +//------------------------------------------------------------------------------ +// +// 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 tomcatAnalys.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("tomcatAnalys.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/tomcatAnalys/Properties/Resources.resx b/tomcatAnalys/Properties/Resources.resx new file mode 100644 index 0000000..af7dbeb --- /dev/null +++ b/tomcatAnalys/Properties/Resources.resx @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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/tomcatAnalys/Properties/Settings.Designer.cs b/tomcatAnalys/Properties/Settings.Designer.cs new file mode 100644 index 0000000..ab39e1a --- /dev/null +++ b/tomcatAnalys/Properties/Settings.Designer.cs @@ -0,0 +1,30 @@ +//------------------------------------------------------------------------------ +// +// 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 tomcatAnalys.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/tomcatAnalys/Properties/Settings.settings b/tomcatAnalys/Properties/Settings.settings new file mode 100644 index 0000000..3964565 --- /dev/null +++ b/tomcatAnalys/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/tomcatAnalys/frmFileShower.Designer.cs b/tomcatAnalys/frmFileShower.Designer.cs new file mode 100644 index 0000000..df4086f --- /dev/null +++ b/tomcatAnalys/frmFileShower.Designer.cs @@ -0,0 +1,91 @@ +namespace tomcatAnalys +{ + partial class frmFileShower + { + /// + /// 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.txtFileShower = new System.Windows.Forms.TextBox(); + this.lblShowerFileName = new System.Windows.Forms.Label(); + this.btnClose = new System.Windows.Forms.Button(); + this.SuspendLayout(); + // + // txtFileShower + // + this.txtFileShower.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.txtFileShower.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.txtFileShower.Location = new System.Drawing.Point(13, 52); + this.txtFileShower.Multiline = true; + this.txtFileShower.Name = "txtFileShower"; + this.txtFileShower.ScrollBars = System.Windows.Forms.ScrollBars.Both; + this.txtFileShower.Size = new System.Drawing.Size(788, 455); + this.txtFileShower.TabIndex = 0; + this.txtFileShower.WordWrap = false; + // + // lblShowerFileName + // + this.lblShowerFileName.AutoSize = true; + this.lblShowerFileName.Location = new System.Drawing.Point(13, 13); + this.lblShowerFileName.Name = "lblShowerFileName"; + this.lblShowerFileName.Size = new System.Drawing.Size(58, 13); + this.lblShowerFileName.TabIndex = 1; + this.lblShowerFileName.Text = ""; + // + // btnClose + // + this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.btnClose.Location = new System.Drawing.Point(725, 514); + this.btnClose.Name = "btnClose"; + this.btnClose.Size = new System.Drawing.Size(75, 23); + this.btnClose.TabIndex = 2; + this.btnClose.Text = "Avsluta"; + this.btnClose.UseVisualStyleBackColor = true; + this.btnClose.Click += new System.EventHandler(this.btnClose_Click); + // + // frmFileShower + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(813, 551); + this.Controls.Add(this.btnClose); + this.Controls.Add(this.lblShowerFileName); + this.Controls.Add(this.txtFileShower); + this.Name = "frmFileShower"; + this.Text = "frmFileShower"; + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.TextBox txtFileShower; + private System.Windows.Forms.Label lblShowerFileName; + private System.Windows.Forms.Button btnClose; + } +} \ No newline at end of file diff --git a/tomcatAnalys/frmFileShower.cs b/tomcatAnalys/frmFileShower.cs new file mode 100644 index 0000000..b297050 --- /dev/null +++ b/tomcatAnalys/frmFileShower.cs @@ -0,0 +1,29 @@ +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 tomcatAnalys +{ + public partial class frmFileShower : Form + { + public string FileShowerFileName { + set { lblShowerFileName.Text = value; } } + public TextBox FileShowerBox { get; set; } + public frmFileShower() + { + InitializeComponent(); + FileShowerBox = this.txtFileShower; + } + + private void btnClose_Click(object sender, EventArgs e) + { + this.Close(); + } + } +} diff --git a/tomcatAnalys/frmFileShower.resx b/tomcatAnalys/frmFileShower.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/tomcatAnalys/frmFileShower.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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/tomcatAnalys/frmStart.Designer.cs b/tomcatAnalys/frmStart.Designer.cs new file mode 100644 index 0000000..d9171ff --- /dev/null +++ b/tomcatAnalys/frmStart.Designer.cs @@ -0,0 +1,117 @@ +namespace tomcatAnalys +{ + partial class frmStart + { + /// + /// 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.lblFileName = new System.Windows.Forms.Label(); + this.btnChooseFile = new System.Windows.Forms.Button(); + this.openAnalysefileDialog = new System.Windows.Forms.OpenFileDialog(); + this.lbInstances = new System.Windows.Forms.ListBox(); + this.btnClose = new System.Windows.Forms.Button(); + this.btnAnalyse = new System.Windows.Forms.Button(); + this.SuspendLayout(); + // + // lblFileName + // + this.lblFileName.AutoSize = true; + this.lblFileName.Location = new System.Drawing.Point(108, 17); + this.lblFileName.Name = "lblFileName"; + this.lblFileName.Size = new System.Drawing.Size(52, 13); + this.lblFileName.TabIndex = 0; + this.lblFileName.Text = ""; + // + // btnChooseFile + // + this.btnChooseFile.Location = new System.Drawing.Point(12, 12); + this.btnChooseFile.Name = "btnChooseFile"; + this.btnChooseFile.Size = new System.Drawing.Size(75, 23); + this.btnChooseFile.TabIndex = 1; + this.btnChooseFile.Text = "Välj fil"; + this.btnChooseFile.UseVisualStyleBackColor = true; + this.btnChooseFile.Click += new System.EventHandler(this.btnChooseFile_Click); + // + // openAnalysefileDialog + // + this.openAnalysefileDialog.FileName = "openFileDialog1"; + // + // lbInstances + // + this.lbInstances.FormattingEnabled = true; + this.lbInstances.Location = new System.Drawing.Point(13, 98); + this.lbInstances.Name = "lbInstances"; + this.lbInstances.Size = new System.Drawing.Size(744, 407); + this.lbInstances.TabIndex = 2; + // + // btnClose + // + this.btnClose.Location = new System.Drawing.Point(682, 514); + this.btnClose.Name = "btnClose"; + this.btnClose.Size = new System.Drawing.Size(75, 23); + this.btnClose.TabIndex = 3; + this.btnClose.Text = "Avsluta"; + this.btnClose.UseVisualStyleBackColor = true; + this.btnClose.Click += new System.EventHandler(this.btnClose_Click); + // + // btnAnalyse + // + this.btnAnalyse.Location = new System.Drawing.Point(12, 42); + this.btnAnalyse.Name = "btnAnalyse"; + this.btnAnalyse.Size = new System.Drawing.Size(75, 23); + this.btnAnalyse.TabIndex = 4; + this.btnAnalyse.Text = "Analysera"; + this.btnAnalyse.UseVisualStyleBackColor = true; + this.btnAnalyse.Click += new System.EventHandler(this.btnAnalyse_Click); + // + // frmStart + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(769, 549); + this.Controls.Add(this.btnAnalyse); + this.Controls.Add(this.btnClose); + this.Controls.Add(this.lbInstances); + this.Controls.Add(this.btnChooseFile); + this.Controls.Add(this.lblFileName); + this.Name = "frmStart"; + this.Text = "Analysera Tomcat log"; + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.Label lblFileName; + private System.Windows.Forms.Button btnChooseFile; + private System.Windows.Forms.OpenFileDialog openAnalysefileDialog; + private System.Windows.Forms.ListBox lbInstances; + private System.Windows.Forms.Button btnClose; + private System.Windows.Forms.Button btnAnalyse; + } +} + diff --git a/tomcatAnalys/frmStart.cs b/tomcatAnalys/frmStart.cs new file mode 100644 index 0000000..2efff07 --- /dev/null +++ b/tomcatAnalys/frmStart.cs @@ -0,0 +1,119 @@ +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; +using System.IO; + +namespace tomcatAnalys +{ + public partial class frmStart : Form + { + frmFileShower fileWindow = new frmFileShower(); + public frmStart() + { + InitializeComponent(); + btnAnalyse.Enabled = false; + } + + private void btnChooseFile_Click(object sender, EventArgs e) + { + openAnalysefileDialog.Title = "Välj Analysfil !"; + if (openAnalysefileDialog.ShowDialog() == DialogResult.OK) + { + lblFileName.Text = openAnalysefileDialog.FileName; + btnAnalyse.Enabled = true; + } + } + + private void btnAnalyse_Click(object sender, EventArgs e) + { + fileWindow.FileShowerFileName = lblFileName.Text; + fileWindow.FileShowerBox.Text = File.ReadAllText(lblFileName.Text); + fileWindow.FileShowerBox.Text = fileWindow.FileShowerBox.Text.Replace("\n", "\r\n"); + List tmpXml = null; + bool spara = false; + foreach (var rad in fileWindow.FileShowerBox.Lines) + { + if (rad.Contains("")) + { + spara = true; + tmpXml = new List(); + } + if (rad.Contains("")) + { + spara = false; + tmpXml.Add(rad); + analyseXml(tmpXml); + } + if (spara) + { + tmpXml.Add(rad); + } + + + } + + fileWindow.ShowDialog(); + } + + private void analyseXml(List tmpXml) + { + string garanti = ""; + string jobnr = ""; + bool hasClaims = true; + foreach (var row in tmpXml) + { + if (row.Contains("name=\"hasClaims\">false<")) + { + hasClaims = false; + break; + } + if (row.Contains("")) + { + foreach (var str in row.Split(new[] { "", "" }, StringSplitOptions.RemoveEmptyEntries)) + { + if (!string.IsNullOrWhiteSpace(str)) + { + garanti = str; + } + } + } + if (row.Contains("")) + { + foreach(var str in row.Split(new[] { "", "" }, StringSplitOptions.RemoveEmptyEntries)) + { + if (!string.IsNullOrWhiteSpace(str)) + { + jobnr = str; + } + } + + lbInstances.Items.Add(new ListItem() { GarantiNr = garanti, GarantiJob = jobnr, xmlRader = tmpXml.ToArray() }); + } + + } + } + + private void btnClose_Click(object sender, EventArgs e) + { + this.Close(); + } + } + + public class ListItem + { + public string GarantiNr { get; set; } + public string GarantiJob { get; set; } + public string[] xmlRader { get; set; } + public override string ToString() + { + string returStr = $"Garanti: {GarantiNr} Jobnr: {GarantiJob} ex: {xmlRader[6].Substring(0, 50) + "..."}"; + return returStr; + } + } +} diff --git a/tomcatAnalys/frmStart.resx b/tomcatAnalys/frmStart.resx new file mode 100644 index 0000000..f68a4ff --- /dev/null +++ b/tomcatAnalys/frmStart.resx @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + 17, 17 + + \ No newline at end of file diff --git a/tomcatAnalys/tomcatAnalys.csproj b/tomcatAnalys/tomcatAnalys.csproj new file mode 100644 index 0000000..b62680a --- /dev/null +++ b/tomcatAnalys/tomcatAnalys.csproj @@ -0,0 +1,92 @@ + + + + + Debug + AnyCPU + {E31FE1B4-F055-4D9B-A848-D172565DCD67} + WinExe + tomcatAnalys + tomcatAnalys + v4.6.1 + 512 + true + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + Form + + + frmFileShower.cs + + + Form + + + frmStart.cs + + + + + frmFileShower.cs + + + frmStart.cs + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + + + \ No newline at end of file