commit 63e6d18f3a994659dd37173875e35a14d1e0b49c Author: Hoeglinger Eugen Date: Thu Aug 18 16:52:38 2022 +0200 Initialized - Auslesen aller NX Logdateien aus einem definierten Verzeichnis - Anzeigen der Aktuellen NX Logdatei - Anzeigen der letzten Logdatei - Anzeigen einer beliebigen Logdatei - Liste aller Logdateien im Verzeichnis diff --git a/.vs/NxLogfile.git/FileContentIndex/ceb22e4c-6502-4b03-bcaf-06ecb9c4f815.vsidx b/.vs/NxLogfile.git/FileContentIndex/ceb22e4c-6502-4b03-bcaf-06ecb9c4f815.vsidx new file mode 100644 index 0000000..64cafc1 Binary files /dev/null and b/.vs/NxLogfile.git/FileContentIndex/ceb22e4c-6502-4b03-bcaf-06ecb9c4f815.vsidx differ diff --git a/.vs/NxLogfile.git/FileContentIndex/d02f38b0-ade1-442a-bbbd-7bb2984b33cf.vsidx b/.vs/NxLogfile.git/FileContentIndex/d02f38b0-ade1-442a-bbbd-7bb2984b33cf.vsidx new file mode 100644 index 0000000..08da6d3 Binary files /dev/null and b/.vs/NxLogfile.git/FileContentIndex/d02f38b0-ade1-442a-bbbd-7bb2984b33cf.vsidx differ diff --git a/.vs/NxLogfile.git/FileContentIndex/f5a7d15a-f927-40d9-8b17-23da60f6498c.vsidx b/.vs/NxLogfile.git/FileContentIndex/f5a7d15a-f927-40d9-8b17-23da60f6498c.vsidx new file mode 100644 index 0000000..ea2919a Binary files /dev/null and b/.vs/NxLogfile.git/FileContentIndex/f5a7d15a-f927-40d9-8b17-23da60f6498c.vsidx differ diff --git a/.vs/NxLogfile.git/FileContentIndex/read.lock b/.vs/NxLogfile.git/FileContentIndex/read.lock new file mode 100644 index 0000000..e69de29 diff --git a/.vs/NxLogfile.git/v17/.suo b/.vs/NxLogfile.git/v17/.suo new file mode 100644 index 0000000..f0c7458 Binary files /dev/null and b/.vs/NxLogfile.git/v17/.suo differ diff --git a/NxLogfile.git.sln b/NxLogfile.git.sln new file mode 100644 index 0000000..1bb9b6b --- /dev/null +++ b/NxLogfile.git.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.3.32811.315 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NxLogfile", "NxLogfile\NxLogfile.csproj", "{A758C647-4B02-46FB-8D78-B4120AA5381A}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Test_NxLogfile", "Test_NxLogfile\Test_NxLogfile.csproj", "{84C68D89-4B6B-4501-B369-514EF161622E}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A758C647-4B02-46FB-8D78-B4120AA5381A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A758C647-4B02-46FB-8D78-B4120AA5381A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A758C647-4B02-46FB-8D78-B4120AA5381A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A758C647-4B02-46FB-8D78-B4120AA5381A}.Release|Any CPU.Build.0 = Release|Any CPU + {84C68D89-4B6B-4501-B369-514EF161622E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {84C68D89-4B6B-4501-B369-514EF161622E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {84C68D89-4B6B-4501-B369-514EF161622E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {84C68D89-4B6B-4501-B369-514EF161622E}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {DD5E96E7-BD54-4D32-B892-F6C79F263A77} + EndGlobalSection +EndGlobal diff --git a/NxLogfile/NxLogfile.cs b/NxLogfile/NxLogfile.cs new file mode 100644 index 0000000..4fb51c5 --- /dev/null +++ b/NxLogfile/NxLogfile.cs @@ -0,0 +1,245 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Reflection; +using System.Text; +using System.Threading.Tasks; +using Eugen.ESystem.IO; + +namespace Eugen.NX +{ + public class NxLogfile + { + #region Version und Copyright + // Version und Copyright + static string dllName = Path.GetFileNameWithoutExtension(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase); //Den Programmnamen auslesen + static string dllVersion = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString(); + static object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCopyrightAttribute), false); + static string copyright = GenerateCopyright(); + + //Assembly Datum und Zeit + static DateTime value = AssemblyDateTime(); + static string date = value.ToShortDateString(); + static string time = value.ToLongTimeString(); + + private static DateTime AssemblyDateTime() + { + var version = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version; + var buildDateTime = new DateTime(2000, 1, 1).Add(new TimeSpan(TimeSpan.TicksPerDay * version.Build + TimeSpan.TicksPerSecond * 2 * version.Revision)); + //Tage seit dem 1. Januar 2000 und Sekunden seit Mitternacht, (multiplizier mit 2 ergibt das Original) + return buildDateTime; + } + + private static string CurrentYear() + { + DateTime dtn = DateTime.Now; + return dtn.Year.ToString(); + } + + private static string StartYear() + { + string startYear = ""; + if (((AssemblyCopyrightAttribute)attributes[0]).Copyright.Contains("Copyright © ")) + { + startYear = ((AssemblyCopyrightAttribute)attributes[0]).Copyright.Replace("Copyright © ", ""); + while (startYear.StartsWith(" ")) + { + startYear = startYear.Remove(0, 1); + } + + if (startYear.Contains("-")) + { + startYear = startYear.Remove(startYear.IndexOf("-")); + } + else + { + startYear = startYear.Remove(startYear.IndexOf(" ")); + } + return startYear; + } + else + { + DateTime dtn = DateTime.Now; + return dtn.Year.ToString(); + } + } + + private static string GenerateCopyright() + { + string startYear = StartYear(); + string currentYear = CurrentYear(); + + if (startYear == currentYear) + { + return ((AssemblyCopyrightAttribute)attributes[0]).Copyright; + } + else + { + string temp = ((AssemblyCopyrightAttribute)attributes[0]).Copyright; + string start = temp.Remove(temp.IndexOf(startYear) - 1); + string end = (temp.Remove(0, temp.IndexOf(" by"))); + + return String.Concat(start, " ", startYear, "-", currentYear, end); + } + } + #endregion + + #region DLL-Info + /// + /// Contains the name of the dll file. + /// + public static string DllName { private set; get; } + + /// + /// Contains the version of the dll file. + /// + public static string DllVersion { private set; get; } + + /// + /// Contains the copyright notice. + /// + public static string Copyright { private set; get; } + + /// + /// Contains the name-, version- and copyright-information of the dll file. + /// + public static string[] DllInfo { private set; get; } + + private static void SetDllInfo() + { + //Name, Version und Copyright setzen + DllName = dllName; + DllVersion = dllVersion; + Copyright = copyright; + + string[] dllInfo = new string[3]; + dllInfo[0] = dllName; + dllInfo[1] = dllVersion; + dllInfo[2] = copyright; + DllInfo = dllInfo; + } + + protected string ProgramName { private set; get; } + protected string ProgramVersion { private set; get; } + protected string ProgramCopyright { private set; get; } + #endregion + + /// + /// Sets the DLL information + /// + static NxLogfile() + { + SetDllInfo(); + } + + /// + /// Reads out all NX log files stored in the specified directory + /// + /// Directory in which the NX log files are stored + public NxLogfile(string nxLogFilePath) + { + SetDllInfo(); + LogFileExtension = "syslog"; + NxLogFilePath = nxLogFilePath; + NxLogFiles = ReadNxLogfiles(NxLogFilePath, LogFileExtension); + CurrentNxLogFile = NxLogFiles[0]; + LastNxLogFile = NxLogFiles[1]; + } + + private string NxLogFilePath { set; get; } //Verzeichnis in dem die NX-Logdateien gespeichert sind + + /// + /// All NX log files stored in 'NxLogFilePath' (sorted) + /// + public string[] NxLogFiles { private set; get; } //Alle in 'NxLogFilePath' gespeicherten NX-Logdateien (sortiert) + + /// + /// The current NX log file + /// + public string CurrentNxLogFile { private set; get; } //Die aktuelle NX-Logdatei + + /// + /// The last NX log file + /// + public string LastNxLogFile { private set; get; } //Die letzte (aus der vorigen Sitzung) NX-Logdatei + private string LogFileExtension { set; get; } //Dateiendung einer NX-Logdatei + + /// + /// Shows the specified log file + /// + /// The log file to display + /// + public void ShowNxLogFile(string fileName) + { + if (File.Exists(fileName)) + { + ShowTextFile.Show(fileName); + } + else + { + throw new FileNotFoundException(); + } + } + + /// + /// Writes the log file to a string + /// + /// The log file to write + /// A string + /// If the log file was not found + public string GetNxLogFileAsString(string fileName) + { + try + { + return File.ReadAllText(fileName); + } + catch (Exception) + { + throw new FileNotFoundException(); + } + } + + private string[] ReadNxLogfiles(string path, string logFileExtension) + { + List logfiles = new List(); + + try + { + foreach (string file in Directory.GetFiles(path)) + { + if (file.EndsWith(logFileExtension)) + { + FileInfo f1 = new FileInfo(file); + logfiles.Add(new Logfile { FileName = file, CreationTime = f1.CreationTime.ToString() }); + } + } + } + catch (Exception) + { + throw new FileNotFoundException(); + } + + var sortedLogfiles = logfiles.OrderBy(o => o.CreationTime).ToList(); + sortedLogfiles.Reverse(); + + string[] logFileList = new string[sortedLogfiles.Count]; + + int x = 0; + + foreach (var file in sortedLogfiles) + { + logFileList[x] = file.FileName; + x++; + } + + return logFileList; + } + } + + class Logfile + { + public string FileName { get; set; } + public string CreationTime { get; set; } + } +} diff --git a/NxLogfile/NxLogfile.csproj b/NxLogfile/NxLogfile.csproj new file mode 100644 index 0000000..4061060 --- /dev/null +++ b/NxLogfile/NxLogfile.csproj @@ -0,0 +1,52 @@ + + + + + Debug + AnyCPU + {A758C647-4B02-46FB-8D78-B4120AA5381A} + Library + Properties + Eugen.NX + henxlogf + v4.8 + 512 + false + + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + ..\..\ShowTextFile.git\ShowTextFile\bin\Debug\heshowtf.dll + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/NxLogfile/Properties/AssemblyInfo.cs b/NxLogfile/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..cdc933f --- /dev/null +++ b/NxLogfile/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// Allgemeine Informationen über eine Assembly werden über die folgenden +// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, +// die einer Assembly zugeordnet sind. +[assembly: AssemblyTitle("NxLogfile")] +[assembly: AssemblyDescription("Anzeigen der NX Logdatei")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("NxLogfile")] +[assembly: AssemblyCopyright("Copyright © 2022 by Eugen Höglinger")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Durch Festlegen von ComVisible auf FALSE werden die Typen in dieser Assembly +// für COM-Komponenten unsichtbar. Wenn Sie auf einen Typ in dieser Assembly von +// COM aus zugreifen müssen, sollten Sie das ComVisible-Attribut für diesen Typ auf "True" festlegen. +[assembly: ComVisible(false)] + +// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird +[assembly: Guid("a758c647-4b02-46fb-8d78-b4120aa5381a")] + +// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: +// +// Hauptversion +// Nebenversion +// Buildnummer +// Revision +// +// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden, +// indem Sie "*" wie unten gezeigt eingeben: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.*")] +//[assembly: AssemblyFileVersion("1.0.0.0")] //Wenn auskommentiert, dann gleich wie AssemblyVersion! diff --git a/NxLogfile/bin/Debug/henxlogf.dll b/NxLogfile/bin/Debug/henxlogf.dll new file mode 100644 index 0000000..8b130e4 Binary files /dev/null and b/NxLogfile/bin/Debug/henxlogf.dll differ diff --git a/NxLogfile/bin/Debug/henxlogf.pdb b/NxLogfile/bin/Debug/henxlogf.pdb new file mode 100644 index 0000000..b159b45 Binary files /dev/null and b/NxLogfile/bin/Debug/henxlogf.pdb differ diff --git a/NxLogfile/bin/Debug/heshowtf.dll b/NxLogfile/bin/Debug/heshowtf.dll new file mode 100644 index 0000000..3b21263 Binary files /dev/null and b/NxLogfile/bin/Debug/heshowtf.dll differ diff --git a/NxLogfile/bin/Debug/heshowtf.pdb b/NxLogfile/bin/Debug/heshowtf.pdb new file mode 100644 index 0000000..4aa1bc7 Binary files /dev/null and b/NxLogfile/bin/Debug/heshowtf.pdb differ diff --git a/NxLogfile/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs b/NxLogfile/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs new file mode 100644 index 0000000..057ed7f --- /dev/null +++ b/NxLogfile/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] diff --git a/NxLogfile/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs b/NxLogfile/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs new file mode 100644 index 0000000..3cf0af3 --- /dev/null +++ b/NxLogfile/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")] diff --git a/NxLogfile/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/NxLogfile/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..e00b2f0 Binary files /dev/null and b/NxLogfile/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/NxLogfile/obj/Debug/NxLogfile.csproj.AssemblyReference.cache b/NxLogfile/obj/Debug/NxLogfile.csproj.AssemblyReference.cache new file mode 100644 index 0000000..3bccbd9 Binary files /dev/null and b/NxLogfile/obj/Debug/NxLogfile.csproj.AssemblyReference.cache differ diff --git a/NxLogfile/obj/Debug/NxLogfile.csproj.CopyComplete b/NxLogfile/obj/Debug/NxLogfile.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/NxLogfile/obj/Debug/NxLogfile.csproj.CoreCompileInputs.cache b/NxLogfile/obj/Debug/NxLogfile.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..14433bf --- /dev/null +++ b/NxLogfile/obj/Debug/NxLogfile.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +d72bfea08d748c4293f0427b59fa2974f32fe0fb diff --git a/NxLogfile/obj/Debug/NxLogfile.csproj.FileListAbsolute.txt b/NxLogfile/obj/Debug/NxLogfile.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..efaafc9 --- /dev/null +++ b/NxLogfile/obj/Debug/NxLogfile.csproj.FileListAbsolute.txt @@ -0,0 +1,9 @@ +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\NxLogfile.git\NxLogfile\obj\Debug\NxLogfile.csproj.AssemblyReference.cache +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\NxLogfile.git\NxLogfile\obj\Debug\NxLogfile.csproj.CoreCompileInputs.cache +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\NxLogfile.git\NxLogfile\bin\Debug\henxlogf.dll +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\NxLogfile.git\NxLogfile\bin\Debug\henxlogf.pdb +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\NxLogfile.git\NxLogfile\bin\Debug\heshowtf.dll +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\NxLogfile.git\NxLogfile\bin\Debug\heshowtf.pdb +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\NxLogfile.git\NxLogfile\obj\Debug\NxLogfile.csproj.CopyComplete +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\NxLogfile.git\NxLogfile\obj\Debug\henxlogf.dll +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\NxLogfile.git\NxLogfile\obj\Debug\henxlogf.pdb diff --git a/NxLogfile/obj/Debug/_IsIncrementalBuild b/NxLogfile/obj/Debug/_IsIncrementalBuild new file mode 100644 index 0000000..ff132f0 --- /dev/null +++ b/NxLogfile/obj/Debug/_IsIncrementalBuild @@ -0,0 +1 @@ +obj\Debug\\_IsIncrementalBuild diff --git a/NxLogfile/obj/Debug/henxlogf.dll b/NxLogfile/obj/Debug/henxlogf.dll new file mode 100644 index 0000000..8b130e4 Binary files /dev/null and b/NxLogfile/obj/Debug/henxlogf.dll differ diff --git a/NxLogfile/obj/Debug/henxlogf.pdb b/NxLogfile/obj/Debug/henxlogf.pdb new file mode 100644 index 0000000..b159b45 Binary files /dev/null and b/NxLogfile/obj/Debug/henxlogf.pdb differ diff --git a/Test_NxLogfile/App.config b/Test_NxLogfile/App.config new file mode 100644 index 0000000..5ffd8f8 --- /dev/null +++ b/Test_NxLogfile/App.config @@ -0,0 +1,6 @@ + + + + + + diff --git a/Test_NxLogfile/Form1.Designer.cs b/Test_NxLogfile/Form1.Designer.cs new file mode 100644 index 0000000..a4bedc0 --- /dev/null +++ b/Test_NxLogfile/Form1.Designer.cs @@ -0,0 +1,155 @@ +namespace Test_NxLogfile +{ + partial class Form1 + { + /// + /// Erforderliche Designervariable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Verwendete Ressourcen bereinigen. + /// + /// True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Vom Windows Form-Designer generierter Code + + /// + /// Erforderliche Methode für die Designerunterstützung. + /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden. + /// + private void InitializeComponent() + { + this.buttonShowInfo = new System.Windows.Forms.Button(); + this.groupBoxProgramInfo = new System.Windows.Forms.GroupBox(); + this.labelProgramInfo = new System.Windows.Forms.Label(); + this.groupBoxDLLInfo = new System.Windows.Forms.GroupBox(); + this.labelDLLInfo = new System.Windows.Forms.Label(); + this.labelResult = new System.Windows.Forms.Label(); + this.labelAllLogs = new System.Windows.Forms.Label(); + this.labelCretionTime = new System.Windows.Forms.Label(); + this.groupBoxProgramInfo.SuspendLayout(); + this.groupBoxDLLInfo.SuspendLayout(); + this.SuspendLayout(); + // + // buttonShowInfo + // + this.buttonShowInfo.Location = new System.Drawing.Point(12, 287); + this.buttonShowInfo.Name = "buttonShowInfo"; + this.buttonShowInfo.Size = new System.Drawing.Size(776, 23); + this.buttonShowInfo.TabIndex = 0; + this.buttonShowInfo.Text = "Start"; + this.buttonShowInfo.UseVisualStyleBackColor = true; + this.buttonShowInfo.Click += new System.EventHandler(this.buttonShowInfo_Click); + // + // groupBoxProgramInfo + // + this.groupBoxProgramInfo.Controls.Add(this.labelProgramInfo); + this.groupBoxProgramInfo.Location = new System.Drawing.Point(12, 372); + this.groupBoxProgramInfo.Name = "groupBoxProgramInfo"; + this.groupBoxProgramInfo.Size = new System.Drawing.Size(385, 66); + this.groupBoxProgramInfo.TabIndex = 11; + this.groupBoxProgramInfo.TabStop = false; + this.groupBoxProgramInfo.Text = "Programm Information"; + // + // labelProgramInfo + // + this.labelProgramInfo.AutoSize = true; + this.labelProgramInfo.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.labelProgramInfo.Location = new System.Drawing.Point(7, 20); + this.labelProgramInfo.Name = "labelProgramInfo"; + this.labelProgramInfo.Size = new System.Drawing.Size(16, 13); + this.labelProgramInfo.TabIndex = 0; + this.labelProgramInfo.Text = "..."; + // + // groupBoxDLLInfo + // + this.groupBoxDLLInfo.Controls.Add(this.labelDLLInfo); + this.groupBoxDLLInfo.Location = new System.Drawing.Point(403, 372); + this.groupBoxDLLInfo.Name = "groupBoxDLLInfo"; + this.groupBoxDLLInfo.Size = new System.Drawing.Size(385, 66); + this.groupBoxDLLInfo.TabIndex = 12; + this.groupBoxDLLInfo.TabStop = false; + this.groupBoxDLLInfo.Text = "DLL Information"; + // + // labelDLLInfo + // + this.labelDLLInfo.AutoSize = true; + this.labelDLLInfo.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.labelDLLInfo.Location = new System.Drawing.Point(7, 20); + this.labelDLLInfo.Name = "labelDLLInfo"; + this.labelDLLInfo.Size = new System.Drawing.Size(16, 13); + this.labelDLLInfo.TabIndex = 0; + this.labelDLLInfo.Text = "..."; + // + // labelResult + // + this.labelResult.AutoSize = true; + this.labelResult.Location = new System.Drawing.Point(12, 13); + this.labelResult.Name = "labelResult"; + this.labelResult.Size = new System.Drawing.Size(16, 13); + this.labelResult.TabIndex = 13; + this.labelResult.Text = "..."; + // + // labelAllLogs + // + this.labelAllLogs.AutoSize = true; + this.labelAllLogs.Location = new System.Drawing.Point(403, 13); + this.labelAllLogs.Name = "labelAllLogs"; + this.labelAllLogs.Size = new System.Drawing.Size(16, 13); + this.labelAllLogs.TabIndex = 14; + this.labelAllLogs.Text = "..."; + // + // labelCretionTime + // + this.labelCretionTime.AutoSize = true; + this.labelCretionTime.Location = new System.Drawing.Point(634, 13); + this.labelCretionTime.Name = "labelCretionTime"; + this.labelCretionTime.Size = new System.Drawing.Size(16, 13); + this.labelCretionTime.TabIndex = 15; + this.labelCretionTime.Text = "..."; + // + // Form1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(800, 450); + this.Controls.Add(this.labelCretionTime); + this.Controls.Add(this.labelAllLogs); + this.Controls.Add(this.labelResult); + this.Controls.Add(this.groupBoxProgramInfo); + this.Controls.Add(this.groupBoxDLLInfo); + this.Controls.Add(this.buttonShowInfo); + this.Name = "Form1"; + this.Text = "Test_InfoBox"; + this.Load += new System.EventHandler(this.Form1_Load); + this.groupBoxProgramInfo.ResumeLayout(false); + this.groupBoxProgramInfo.PerformLayout(); + this.groupBoxDLLInfo.ResumeLayout(false); + this.groupBoxDLLInfo.PerformLayout(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.Button buttonShowInfo; + private System.Windows.Forms.GroupBox groupBoxProgramInfo; + private System.Windows.Forms.Label labelProgramInfo; + private System.Windows.Forms.GroupBox groupBoxDLLInfo; + private System.Windows.Forms.Label labelDLLInfo; + private System.Windows.Forms.Label labelResult; + private System.Windows.Forms.Label labelAllLogs; + private System.Windows.Forms.Label labelCretionTime; + } +} + diff --git a/Test_NxLogfile/Form1.cs b/Test_NxLogfile/Form1.cs new file mode 100644 index 0000000..d8179e5 --- /dev/null +++ b/Test_NxLogfile/Form1.cs @@ -0,0 +1,164 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.IO; +using System.Linq; +using System.Reflection; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; +using Eugen.NX; +using static System.Net.WebRequestMethods; + +namespace Test_NxLogfile +{ + public partial class Form1 : Form + { + #region Version und Copyright + // Version und Copyright + string programName = Path.GetFileNameWithoutExtension(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase); //Den Programmnamen auslesen + string programVersion = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString(); + static object[] attributes = System.Reflection.Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCopyrightAttribute), false); + string copyright = GenerateCopyright(); + string icon = Application.StartupPath + "\\Info.bmp"; + //Assembly Datum und Zeit + static DateTime value = AssemblyDateTime(); + string date = value.ToShortDateString(); + string time = value.ToLongTimeString(); + private static DateTime AssemblyDateTime() + { + var version = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version; + var buildDateTime = new DateTime(2000, 1, 1).Add(new TimeSpan(TimeSpan.TicksPerDay * version.Build + TimeSpan.TicksPerSecond * 2 * version.Revision)); + //Tage seit dem 1. Januar 2000 und Sekunden seit Mitternacht, (multiplizier mit 2 ergibt das Original) + return buildDateTime; + } + + private static string CurrentYear() + { + DateTime dtn = DateTime.Now; + return dtn.Year.ToString(); + } + + private static string StartYear() + { + //string startYear = ((AssemblyCopyrightAttribute)attributes[0]).Copyright; + //return startYear.Remove(0, startYear.LastIndexOf(" ") + 1); + string startYear = ""; + if (((AssemblyCopyrightAttribute)attributes[0]).Copyright.Contains("Copyright © ")) + { + startYear = ((AssemblyCopyrightAttribute)attributes[0]).Copyright.Replace("Copyright © ", ""); + while (startYear.StartsWith(" ")) + { + startYear = startYear.Remove(0, 1); + } + startYear = startYear.Remove(startYear.IndexOf(" ")); + return startYear; + } + else + { + DateTime dtn = DateTime.Now; + return dtn.Year.ToString(); + } + } + + private static string GenerateCopyright() + { + string startYear = StartYear(); + string currentYear = CurrentYear(); + + if (startYear == currentYear) + { + return ((AssemblyCopyrightAttribute)attributes[0]).Copyright; + } + else + { + //return String.Concat(((AssemblyCopyrightAttribute)attributes[0]).Copyright, "-", currentYear); + return ((AssemblyCopyrightAttribute)attributes[0]).Copyright.Replace(startYear, String.Concat(startYear, "-", currentYear)); + } + } + #endregion + + #region Programm-Info + /// + /// Contains the name of the program file + /// + public static string ProgramName { set; get; } + + /// + /// Contains the version of the program file + /// + public static string ProgramVersion { set; get; } + + /// + /// Contains the copyright notice + /// + public static string Copyright { set; get; } + + private void SetProgramInfo() + { + //Name, Version und Copyright setzen + ProgramName = programName; + ProgramVersion = programVersion; + Copyright = copyright; + } + #endregion + + public Form1() + { + SetProgramInfo(); + InitializeComponent(); + } + + private void Form1_Load(object sender, EventArgs e) + { + labelProgramInfo.Text = String.Concat(ProgramName, "\r\n", ProgramVersion, "\r\n", Copyright); // Zeigt die Programm-Information an + + labelDLLInfo.Text = String.Concat(NxLogfile.DllName, "\r\n", NxLogfile.DllVersion, "\r\n", NxLogfile.Copyright); // Zeigt die DLL-Information an + } + + private void buttonShowInfo_Click(object sender, EventArgs e) + { + // + // Diese Zeilen gehört in das Programm kopiert + // + // Aufruf des Programms + + try + { + //Die aktuelle und die letzte NX Logdatei anzeigen + var logs = new NxLogfile("C:\\Temp\\portal"); + string result = ""; + result += "Current Logfile:\n" + logs.CurrentNxLogFile; + result += "\n\nLast Logfile:\n" + logs.LastNxLogFile; + + labelResult.Text = result; + + //Alle NX Logdateien und das Erzeugungsdatum anzeigen + string allLogs = "All Logfiles:"; + string allCreationTimes = " "; + foreach (string item in logs.NxLogFiles) + { + allLogs += "\n" + item; + FileInfo f1 = new FileInfo(item); + allCreationTimes += "\n" + f1.CreationTime.ToString(); + } + + labelAllLogs.Text = allLogs; + labelCretionTime.Text = allCreationTimes; + + //Die aktuelle NX Logdatei anzeigen + logs.ShowNxLogFile(logs.CurrentNxLogFile); + } + catch (Exception) + { + MessageBox.Show("Die angegeben NX Logdatei wurde nicht gefunden!"); + } + + + // + // + } + } +} diff --git a/Test_NxLogfile/Form1.resx b/Test_NxLogfile/Form1.resx new file mode 100644 index 0000000..29dcb1b --- /dev/null +++ b/Test_NxLogfile/Form1.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/Test_NxLogfile/Program.cs b/Test_NxLogfile/Program.cs new file mode 100644 index 0000000..ed60cbe --- /dev/null +++ b/Test_NxLogfile/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Test_NxLogfile +{ + internal static class Program + { + /// + /// Der Haupteinstiegspunkt für die Anwendung. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +} diff --git a/Test_NxLogfile/Properties/AssemblyInfo.cs b/Test_NxLogfile/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..096c9f8 --- /dev/null +++ b/Test_NxLogfile/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// Allgemeine Informationen über eine Assembly werden über die folgenden +// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, +// die einer Assembly zugeordnet sind. +[assembly: AssemblyTitle("Test_NxLogfile")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Test_NxLogfile")] +[assembly: AssemblyCopyright("Copyright © 2022 by Eugen Höglinger")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Durch Festlegen von ComVisible auf FALSE werden die Typen in dieser Assembly +// für COM-Komponenten unsichtbar. Wenn Sie auf einen Typ in dieser Assembly von +// COM aus zugreifen müssen, sollten Sie das ComVisible-Attribut für diesen Typ auf "True" festlegen. +[assembly: ComVisible(false)] + +// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird +[assembly: Guid("84c68d89-4b6b-4501-b369-514ef161622e")] + +// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: +// +// Hauptversion +// Nebenversion +// Buildnummer +// Revision +// +// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden, +// übernehmen, indem Sie "*" eingeben: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.*")] +//[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Test_NxLogfile/Properties/Resources.Designer.cs b/Test_NxLogfile/Properties/Resources.Designer.cs new file mode 100644 index 0000000..2ebe354 --- /dev/null +++ b/Test_NxLogfile/Properties/Resources.Designer.cs @@ -0,0 +1,71 @@ +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +using System; + +namespace Test_NxLogfile.Properties +{ + /// + /// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. + /// + // Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert + // -Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert. + // Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen + // mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.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() + { + } + + /// + /// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager + { + get + { + if (object.ReferenceEquals(resourceMan, null)) + { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Test_NxLogfile.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle + /// Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden. + /// + [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/Test_NxLogfile/Properties/Resources.resx b/Test_NxLogfile/Properties/Resources.resx new file mode 100644 index 0000000..ffecec8 --- /dev/null +++ b/Test_NxLogfile/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/Test_NxLogfile/Properties/Settings.Designer.cs b/Test_NxLogfile/Properties/Settings.Designer.cs new file mode 100644 index 0000000..56bbf0f --- /dev/null +++ b/Test_NxLogfile/Properties/Settings.Designer.cs @@ -0,0 +1,30 @@ +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +namespace Test_NxLogfile.Properties +{ + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.1.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/Test_NxLogfile/Properties/Settings.settings b/Test_NxLogfile/Properties/Settings.settings new file mode 100644 index 0000000..abf36c5 --- /dev/null +++ b/Test_NxLogfile/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/Test_NxLogfile/Test_NxLogfile.csproj b/Test_NxLogfile/Test_NxLogfile.csproj new file mode 100644 index 0000000..2e8ca99 --- /dev/null +++ b/Test_NxLogfile/Test_NxLogfile.csproj @@ -0,0 +1,87 @@ + + + + + Debug + AnyCPU + {84C68D89-4B6B-4501-B369-514EF161622E} + WinExe + Test_NxLogfile + Test_NxLogfile + v4.8 + 512 + true + false + + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + ..\NxLogfile\bin\Debug\henxlogf.dll + + + + + + + + + + + + + + + + Form + + + Form1.cs + + + + + Form1.cs + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + + + \ No newline at end of file diff --git a/Test_NxLogfile/bin/Debug/Test_NxLogfile.exe b/Test_NxLogfile/bin/Debug/Test_NxLogfile.exe new file mode 100644 index 0000000..313d13c Binary files /dev/null and b/Test_NxLogfile/bin/Debug/Test_NxLogfile.exe differ diff --git a/Test_NxLogfile/bin/Debug/Test_NxLogfile.exe.config b/Test_NxLogfile/bin/Debug/Test_NxLogfile.exe.config new file mode 100644 index 0000000..5ffd8f8 --- /dev/null +++ b/Test_NxLogfile/bin/Debug/Test_NxLogfile.exe.config @@ -0,0 +1,6 @@ + + + + + + diff --git a/Test_NxLogfile/bin/Debug/Test_NxLogfile.pdb b/Test_NxLogfile/bin/Debug/Test_NxLogfile.pdb new file mode 100644 index 0000000..1b6d39b Binary files /dev/null and b/Test_NxLogfile/bin/Debug/Test_NxLogfile.pdb differ diff --git a/Test_NxLogfile/bin/Debug/henxlogf.dll b/Test_NxLogfile/bin/Debug/henxlogf.dll new file mode 100644 index 0000000..8b130e4 Binary files /dev/null and b/Test_NxLogfile/bin/Debug/henxlogf.dll differ diff --git a/Test_NxLogfile/bin/Debug/henxlogf.pdb b/Test_NxLogfile/bin/Debug/henxlogf.pdb new file mode 100644 index 0000000..b159b45 Binary files /dev/null and b/Test_NxLogfile/bin/Debug/henxlogf.pdb differ diff --git a/Test_NxLogfile/bin/Debug/heshowtf.dll b/Test_NxLogfile/bin/Debug/heshowtf.dll new file mode 100644 index 0000000..3b21263 Binary files /dev/null and b/Test_NxLogfile/bin/Debug/heshowtf.dll differ diff --git a/Test_NxLogfile/bin/Debug/heshowtf.pdb b/Test_NxLogfile/bin/Debug/heshowtf.pdb new file mode 100644 index 0000000..4aa1bc7 Binary files /dev/null and b/Test_NxLogfile/bin/Debug/heshowtf.pdb differ diff --git a/Test_NxLogfile/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs b/Test_NxLogfile/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs new file mode 100644 index 0000000..3cf0af3 --- /dev/null +++ b/Test_NxLogfile/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")] diff --git a/Test_NxLogfile/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/Test_NxLogfile/obj/Debug/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000..2a64df3 Binary files /dev/null and b/Test_NxLogfile/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/Test_NxLogfile/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Test_NxLogfile/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..5260fde Binary files /dev/null and b/Test_NxLogfile/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/Test_NxLogfile/obj/Debug/Test_NxLogfile.Form1.resources b/Test_NxLogfile/obj/Debug/Test_NxLogfile.Form1.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/Test_NxLogfile/obj/Debug/Test_NxLogfile.Form1.resources differ diff --git a/Test_NxLogfile/obj/Debug/Test_NxLogfile.Properties.Resources.resources b/Test_NxLogfile/obj/Debug/Test_NxLogfile.Properties.Resources.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/Test_NxLogfile/obj/Debug/Test_NxLogfile.Properties.Resources.resources differ diff --git a/Test_NxLogfile/obj/Debug/Test_NxLogfile.csproj.AssemblyReference.cache b/Test_NxLogfile/obj/Debug/Test_NxLogfile.csproj.AssemblyReference.cache new file mode 100644 index 0000000..3896741 Binary files /dev/null and b/Test_NxLogfile/obj/Debug/Test_NxLogfile.csproj.AssemblyReference.cache differ diff --git a/Test_NxLogfile/obj/Debug/Test_NxLogfile.csproj.CopyComplete b/Test_NxLogfile/obj/Debug/Test_NxLogfile.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/Test_NxLogfile/obj/Debug/Test_NxLogfile.csproj.CoreCompileInputs.cache b/Test_NxLogfile/obj/Debug/Test_NxLogfile.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..c2e3ba5 --- /dev/null +++ b/Test_NxLogfile/obj/Debug/Test_NxLogfile.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +30fd3fe02858ba765d849ec85da33d7b76b07b8c diff --git a/Test_NxLogfile/obj/Debug/Test_NxLogfile.csproj.FileListAbsolute.txt b/Test_NxLogfile/obj/Debug/Test_NxLogfile.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..2f95597 --- /dev/null +++ b/Test_NxLogfile/obj/Debug/Test_NxLogfile.csproj.FileListAbsolute.txt @@ -0,0 +1,16 @@ +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\NxLogfile.git\Test_NxLogfile\bin\Debug\Test_NxLogfile.exe.config +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\NxLogfile.git\Test_NxLogfile\bin\Debug\Test_NxLogfile.exe +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\NxLogfile.git\Test_NxLogfile\bin\Debug\Test_NxLogfile.pdb +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\NxLogfile.git\Test_NxLogfile\bin\Debug\henxlogf.dll +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\NxLogfile.git\Test_NxLogfile\bin\Debug\heshowtf.dll +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\NxLogfile.git\Test_NxLogfile\bin\Debug\henxlogf.pdb +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\NxLogfile.git\Test_NxLogfile\bin\Debug\heshowtf.pdb +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\NxLogfile.git\Test_NxLogfile\obj\Debug\Test_NxLogfile.csproj.AssemblyReference.cache +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\NxLogfile.git\Test_NxLogfile\obj\Debug\Test_NxLogfile.csproj.SuggestedBindingRedirects.cache +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\NxLogfile.git\Test_NxLogfile\obj\Debug\Test_NxLogfile.Form1.resources +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\NxLogfile.git\Test_NxLogfile\obj\Debug\Test_NxLogfile.Properties.Resources.resources +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\NxLogfile.git\Test_NxLogfile\obj\Debug\Test_NxLogfile.csproj.GenerateResource.cache +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\NxLogfile.git\Test_NxLogfile\obj\Debug\Test_NxLogfile.csproj.CoreCompileInputs.cache +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\NxLogfile.git\Test_NxLogfile\obj\Debug\Test_NxLogfile.csproj.CopyComplete +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\NxLogfile.git\Test_NxLogfile\obj\Debug\Test_NxLogfile.exe +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\NxLogfile.git\Test_NxLogfile\obj\Debug\Test_NxLogfile.pdb diff --git a/Test_NxLogfile/obj/Debug/Test_NxLogfile.csproj.GenerateResource.cache b/Test_NxLogfile/obj/Debug/Test_NxLogfile.csproj.GenerateResource.cache new file mode 100644 index 0000000..c08f8bb Binary files /dev/null and b/Test_NxLogfile/obj/Debug/Test_NxLogfile.csproj.GenerateResource.cache differ diff --git a/Test_NxLogfile/obj/Debug/Test_NxLogfile.csproj.SuggestedBindingRedirects.cache b/Test_NxLogfile/obj/Debug/Test_NxLogfile.csproj.SuggestedBindingRedirects.cache new file mode 100644 index 0000000..e69de29 diff --git a/Test_NxLogfile/obj/Debug/Test_NxLogfile.exe b/Test_NxLogfile/obj/Debug/Test_NxLogfile.exe new file mode 100644 index 0000000..313d13c Binary files /dev/null and b/Test_NxLogfile/obj/Debug/Test_NxLogfile.exe differ diff --git a/Test_NxLogfile/obj/Debug/Test_NxLogfile.pdb b/Test_NxLogfile/obj/Debug/Test_NxLogfile.pdb new file mode 100644 index 0000000..1b6d39b Binary files /dev/null and b/Test_NxLogfile/obj/Debug/Test_NxLogfile.pdb differ diff --git a/Test_NxLogfile/obj/Debug/_IsIncrementalBuild b/Test_NxLogfile/obj/Debug/_IsIncrementalBuild new file mode 100644 index 0000000..ff132f0 --- /dev/null +++ b/Test_NxLogfile/obj/Debug/_IsIncrementalBuild @@ -0,0 +1 @@ +obj\Debug\\_IsIncrementalBuild