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
This commit is contained in:
commit
63e6d18f3a
Binary file not shown.
Binary file not shown.
Binary file not shown.
0
.vs/NxLogfile.git/FileContentIndex/read.lock
Normal file
0
.vs/NxLogfile.git/FileContentIndex/read.lock
Normal file
BIN
.vs/NxLogfile.git/v17/.suo
Normal file
BIN
.vs/NxLogfile.git/v17/.suo
Normal file
Binary file not shown.
31
NxLogfile.git.sln
Normal file
31
NxLogfile.git.sln
Normal file
@ -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
|
||||
245
NxLogfile/NxLogfile.cs
Normal file
245
NxLogfile/NxLogfile.cs
Normal file
@ -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
|
||||
/// <summary>
|
||||
/// Contains the name of the dll file.
|
||||
/// </summary>
|
||||
public static string DllName { private set; get; }
|
||||
|
||||
/// <summary>
|
||||
/// Contains the version of the dll file.
|
||||
/// </summary>
|
||||
public static string DllVersion { private set; get; }
|
||||
|
||||
/// <summary>
|
||||
/// Contains the copyright notice.
|
||||
/// </summary>
|
||||
public static string Copyright { private set; get; }
|
||||
|
||||
/// <summary>
|
||||
/// Contains the name-, version- and copyright-information of the dll file.
|
||||
/// </summary>
|
||||
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
|
||||
|
||||
/// <summary>
|
||||
/// Sets the DLL information
|
||||
/// </summary>
|
||||
static NxLogfile()
|
||||
{
|
||||
SetDllInfo();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Reads out all NX log files stored in the specified directory
|
||||
/// </summary>
|
||||
/// <param name="nxLogFilePath">Directory in which the NX log files are stored</param>
|
||||
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
|
||||
|
||||
/// <summary>
|
||||
/// All NX log files stored in 'NxLogFilePath' (sorted)
|
||||
/// </summary>
|
||||
public string[] NxLogFiles { private set; get; } //Alle in 'NxLogFilePath' gespeicherten NX-Logdateien (sortiert)
|
||||
|
||||
/// <summary>
|
||||
/// The current NX log file
|
||||
/// </summary>
|
||||
public string CurrentNxLogFile { private set; get; } //Die aktuelle NX-Logdatei
|
||||
|
||||
/// <summary>
|
||||
/// The last NX log file
|
||||
/// </summary>
|
||||
public string LastNxLogFile { private set; get; } //Die letzte (aus der vorigen Sitzung) NX-Logdatei
|
||||
private string LogFileExtension { set; get; } //Dateiendung einer NX-Logdatei
|
||||
|
||||
/// <summary>
|
||||
/// Shows the specified log file
|
||||
/// </summary>
|
||||
/// <param name="fileName">The log file to display</param>
|
||||
/// <exception cref="FileNotFoundException"></exception>
|
||||
public void ShowNxLogFile(string fileName)
|
||||
{
|
||||
if (File.Exists(fileName))
|
||||
{
|
||||
ShowTextFile.Show(fileName);
|
||||
}
|
||||
else
|
||||
{
|
||||
throw new FileNotFoundException();
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Writes the log file to a string
|
||||
/// </summary>
|
||||
/// <param name="fileName">The log file to write</param>
|
||||
/// <returns>A string</returns>
|
||||
/// <exception cref="FileNotFoundException">If the log file was not found</exception>
|
||||
public string GetNxLogFileAsString(string fileName)
|
||||
{
|
||||
try
|
||||
{
|
||||
return File.ReadAllText(fileName);
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
throw new FileNotFoundException();
|
||||
}
|
||||
}
|
||||
|
||||
private string[] ReadNxLogfiles(string path, string logFileExtension)
|
||||
{
|
||||
List<Logfile> logfiles = new List<Logfile>();
|
||||
|
||||
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; }
|
||||
}
|
||||
}
|
||||
52
NxLogfile/NxLogfile.csproj
Normal file
52
NxLogfile/NxLogfile.csproj
Normal file
@ -0,0 +1,52 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{A758C647-4B02-46FB-8D78-B4120AA5381A}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>Eugen.NX</RootNamespace>
|
||||
<AssemblyName>henxlogf</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<Deterministic>false</Deterministic>
|
||||
<TargetFrameworkProfile />
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="heshowtf">
|
||||
<HintPath>..\..\ShowTextFile.git\ShowTextFile\bin\Debug\heshowtf.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="NxLogfile.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
||||
36
NxLogfile/Properties/AssemblyInfo.cs
Normal file
36
NxLogfile/Properties/AssemblyInfo.cs
Normal file
@ -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!
|
||||
BIN
NxLogfile/bin/Debug/henxlogf.dll
Normal file
BIN
NxLogfile/bin/Debug/henxlogf.dll
Normal file
Binary file not shown.
BIN
NxLogfile/bin/Debug/henxlogf.pdb
Normal file
BIN
NxLogfile/bin/Debug/henxlogf.pdb
Normal file
Binary file not shown.
BIN
NxLogfile/bin/Debug/heshowtf.dll
Normal file
BIN
NxLogfile/bin/Debug/heshowtf.dll
Normal file
Binary file not shown.
BIN
NxLogfile/bin/Debug/heshowtf.pdb
Normal file
BIN
NxLogfile/bin/Debug/heshowtf.pdb
Normal file
Binary file not shown.
@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]
|
||||
@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")]
|
||||
Binary file not shown.
BIN
NxLogfile/obj/Debug/NxLogfile.csproj.AssemblyReference.cache
Normal file
BIN
NxLogfile/obj/Debug/NxLogfile.csproj.AssemblyReference.cache
Normal file
Binary file not shown.
0
NxLogfile/obj/Debug/NxLogfile.csproj.CopyComplete
Normal file
0
NxLogfile/obj/Debug/NxLogfile.csproj.CopyComplete
Normal file
@ -0,0 +1 @@
|
||||
d72bfea08d748c4293f0427b59fa2974f32fe0fb
|
||||
@ -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
|
||||
1
NxLogfile/obj/Debug/_IsIncrementalBuild
Normal file
1
NxLogfile/obj/Debug/_IsIncrementalBuild
Normal file
@ -0,0 +1 @@
|
||||
obj\Debug\\_IsIncrementalBuild
|
||||
BIN
NxLogfile/obj/Debug/henxlogf.dll
Normal file
BIN
NxLogfile/obj/Debug/henxlogf.dll
Normal file
Binary file not shown.
BIN
NxLogfile/obj/Debug/henxlogf.pdb
Normal file
BIN
NxLogfile/obj/Debug/henxlogf.pdb
Normal file
Binary file not shown.
6
Test_NxLogfile/App.config
Normal file
6
Test_NxLogfile/App.config
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/>
|
||||
</startup>
|
||||
</configuration>
|
||||
155
Test_NxLogfile/Form1.Designer.cs
generated
Normal file
155
Test_NxLogfile/Form1.Designer.cs
generated
Normal file
@ -0,0 +1,155 @@
|
||||
namespace Test_NxLogfile
|
||||
{
|
||||
partial class Form1
|
||||
{
|
||||
/// <summary>
|
||||
/// Erforderliche Designervariable.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Verwendete Ressourcen bereinigen.
|
||||
/// </summary>
|
||||
/// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Vom Windows Form-Designer generierter Code
|
||||
|
||||
/// <summary>
|
||||
/// Erforderliche Methode für die Designerunterstützung.
|
||||
/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
|
||||
/// </summary>
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
164
Test_NxLogfile/Form1.cs
Normal file
164
Test_NxLogfile/Form1.cs
Normal file
@ -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
|
||||
/// <summary>
|
||||
/// Contains the name of the program file
|
||||
/// </summary>
|
||||
public static string ProgramName { set; get; }
|
||||
|
||||
/// <summary>
|
||||
/// Contains the version of the program file
|
||||
/// </summary>
|
||||
public static string ProgramVersion { set; get; }
|
||||
|
||||
/// <summary>
|
||||
/// Contains the copyright notice
|
||||
/// </summary>
|
||||
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!");
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
//
|
||||
}
|
||||
}
|
||||
}
|
||||
120
Test_NxLogfile/Form1.resx
Normal file
120
Test_NxLogfile/Form1.resx
Normal file
@ -0,0 +1,120 @@
|
||||
<?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>
|
||||
</root>
|
||||
22
Test_NxLogfile/Program.cs
Normal file
22
Test_NxLogfile/Program.cs
Normal file
@ -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
|
||||
{
|
||||
/// <summary>
|
||||
/// Der Haupteinstiegspunkt für die Anwendung.
|
||||
/// </summary>
|
||||
[STAThread]
|
||||
static void Main()
|
||||
{
|
||||
Application.EnableVisualStyles();
|
||||
Application.SetCompatibleTextRenderingDefault(false);
|
||||
Application.Run(new Form1());
|
||||
}
|
||||
}
|
||||
}
|
||||
36
Test_NxLogfile/Properties/AssemblyInfo.cs
Normal file
36
Test_NxLogfile/Properties/AssemblyInfo.cs
Normal file
@ -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")]
|
||||
71
Test_NxLogfile/Properties/Resources.Designer.cs
generated
Normal file
71
Test_NxLogfile/Properties/Resources.Designer.cs
generated
Normal file
@ -0,0 +1,71 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 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.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
|
||||
namespace Test_NxLogfile.Properties
|
||||
{
|
||||
/// <summary>
|
||||
/// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
|
||||
/// </summary>
|
||||
// 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()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
|
||||
/// </summary>
|
||||
[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;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle
|
||||
/// Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden.
|
||||
/// </summary>
|
||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||
internal static global::System.Globalization.CultureInfo Culture
|
||||
{
|
||||
get
|
||||
{
|
||||
return resourceCulture;
|
||||
}
|
||||
set
|
||||
{
|
||||
resourceCulture = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
117
Test_NxLogfile/Properties/Resources.resx
Normal file
117
Test_NxLogfile/Properties/Resources.resx
Normal file
@ -0,0 +1,117 @@
|
||||
<?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.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: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" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
</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" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
</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=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
</root>
|
||||
30
Test_NxLogfile/Properties/Settings.Designer.cs
generated
Normal file
30
Test_NxLogfile/Properties/Settings.Designer.cs
generated
Normal file
@ -0,0 +1,30 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 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.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
7
Test_NxLogfile/Properties/Settings.settings
Normal file
7
Test_NxLogfile/Properties/Settings.settings
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)">
|
||||
<Profiles>
|
||||
<Profile Name="(Default)" />
|
||||
</Profiles>
|
||||
<Settings />
|
||||
</SettingsFile>
|
||||
87
Test_NxLogfile/Test_NxLogfile.csproj
Normal file
87
Test_NxLogfile/Test_NxLogfile.csproj
Normal file
@ -0,0 +1,87 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{84C68D89-4B6B-4501-B369-514EF161622E}</ProjectGuid>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<RootNamespace>Test_NxLogfile</RootNamespace>
|
||||
<AssemblyName>Test_NxLogfile</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
<Deterministic>false</Deterministic>
|
||||
<TargetFrameworkProfile />
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="henxlogf">
|
||||
<HintPath>..\NxLogfile\bin\Debug\henxlogf.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Deployment" />
|
||||
<Reference Include="System.Drawing" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
<Reference Include="System.Windows.Forms" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Form1.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Form1.Designer.cs">
|
||||
<DependentUpon>Form1.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<EmbeddedResource Include="Form1.resx">
|
||||
<DependentUpon>Form1.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Properties\Resources.resx">
|
||||
<Generator>ResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
<Compile Include="Properties\Resources.Designer.cs">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DependentUpon>Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
<None Include="Properties\Settings.settings">
|
||||
<Generator>SettingsSingleFileGenerator</Generator>
|
||||
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
||||
</None>
|
||||
<Compile Include="Properties\Settings.Designer.cs">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DependentUpon>Settings.settings</DependentUpon>
|
||||
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="App.config" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
||||
BIN
Test_NxLogfile/bin/Debug/Test_NxLogfile.exe
Normal file
BIN
Test_NxLogfile/bin/Debug/Test_NxLogfile.exe
Normal file
Binary file not shown.
6
Test_NxLogfile/bin/Debug/Test_NxLogfile.exe.config
Normal file
6
Test_NxLogfile/bin/Debug/Test_NxLogfile.exe.config
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/>
|
||||
</startup>
|
||||
</configuration>
|
||||
BIN
Test_NxLogfile/bin/Debug/Test_NxLogfile.pdb
Normal file
BIN
Test_NxLogfile/bin/Debug/Test_NxLogfile.pdb
Normal file
Binary file not shown.
BIN
Test_NxLogfile/bin/Debug/henxlogf.dll
Normal file
BIN
Test_NxLogfile/bin/Debug/henxlogf.dll
Normal file
Binary file not shown.
BIN
Test_NxLogfile/bin/Debug/henxlogf.pdb
Normal file
BIN
Test_NxLogfile/bin/Debug/henxlogf.pdb
Normal file
Binary file not shown.
BIN
Test_NxLogfile/bin/Debug/heshowtf.dll
Normal file
BIN
Test_NxLogfile/bin/Debug/heshowtf.dll
Normal file
Binary file not shown.
BIN
Test_NxLogfile/bin/Debug/heshowtf.pdb
Normal file
BIN
Test_NxLogfile/bin/Debug/heshowtf.pdb
Normal file
Binary file not shown.
@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")]
|
||||
Binary file not shown.
Binary file not shown.
BIN
Test_NxLogfile/obj/Debug/Test_NxLogfile.Form1.resources
Normal file
BIN
Test_NxLogfile/obj/Debug/Test_NxLogfile.Form1.resources
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
||||
30fd3fe02858ba765d849ec85da33d7b76b07b8c
|
||||
@ -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
|
||||
Binary file not shown.
BIN
Test_NxLogfile/obj/Debug/Test_NxLogfile.exe
Normal file
BIN
Test_NxLogfile/obj/Debug/Test_NxLogfile.exe
Normal file
Binary file not shown.
BIN
Test_NxLogfile/obj/Debug/Test_NxLogfile.pdb
Normal file
BIN
Test_NxLogfile/obj/Debug/Test_NxLogfile.pdb
Normal file
Binary file not shown.
1
Test_NxLogfile/obj/Debug/_IsIncrementalBuild
Normal file
1
Test_NxLogfile/obj/Debug/_IsIncrementalBuild
Normal file
@ -0,0 +1 @@
|
||||
obj\Debug\\_IsIncrementalBuild
|
||||
Loading…
Reference in New Issue
Block a user