commit efa27c0ea5db38d022665bfcdded8a07e293e7d5 Author: Eugen Höglinger Date: Wed Dec 7 09:16:27 2022 +0100 Initialize - Routine zum Laden einer XML-Datei diff --git a/.vs/Test_LoadXMLFile.git/FileContentIndex/e694b876-4908-4d1d-a50a-ed3213a70e17.vsidx b/.vs/Test_LoadXMLFile.git/FileContentIndex/e694b876-4908-4d1d-a50a-ed3213a70e17.vsidx new file mode 100644 index 0000000..e26c1ba Binary files /dev/null and b/.vs/Test_LoadXMLFile.git/FileContentIndex/e694b876-4908-4d1d-a50a-ed3213a70e17.vsidx differ diff --git a/.vs/Test_LoadXMLFile.git/FileContentIndex/read.lock b/.vs/Test_LoadXMLFile.git/FileContentIndex/read.lock new file mode 100644 index 0000000..e69de29 diff --git a/.vs/Test_LoadXMLFile.git/v17/.suo b/.vs/Test_LoadXMLFile.git/v17/.suo new file mode 100644 index 0000000..9bb8ac6 Binary files /dev/null and b/.vs/Test_LoadXMLFile.git/v17/.suo differ diff --git a/Daten/Test.xml b/Daten/Test.xml new file mode 100644 index 0000000..099eb0d --- /dev/null +++ b/Daten/Test.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Daten/Vorlage.xml b/Daten/Vorlage.xml new file mode 100644 index 0000000..f324011 --- /dev/null +++ b/Daten/Vorlage.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Test_LoadXMLFile.git.sln b/Test_LoadXMLFile.git.sln new file mode 100644 index 0000000..bcfba9c --- /dev/null +++ b/Test_LoadXMLFile.git.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.3.32929.385 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Test_LoadXMLFile", "Test_LoadXMLFile\Test_LoadXMLFile.csproj", "{29511763-82C2-4FF7-8D59-3287ACE8194C}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {29511763-82C2-4FF7-8D59-3287ACE8194C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {29511763-82C2-4FF7-8D59-3287ACE8194C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {29511763-82C2-4FF7-8D59-3287ACE8194C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {29511763-82C2-4FF7-8D59-3287ACE8194C}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {76D8C33D-8115-4445-80AD-B266B5346140} + EndGlobalSection +EndGlobal diff --git a/Test_LoadXMLFile/App.config b/Test_LoadXMLFile/App.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/Test_LoadXMLFile/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Test_LoadXMLFile/Form1.Designer.cs b/Test_LoadXMLFile/Form1.Designer.cs new file mode 100644 index 0000000..178222f --- /dev/null +++ b/Test_LoadXMLFile/Form1.Designer.cs @@ -0,0 +1,74 @@ +namespace Test_LoadXMLFile +{ + 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.buttonStart = new System.Windows.Forms.Button(); + this.labelResult = new System.Windows.Forms.Label(); + this.SuspendLayout(); + // + // buttonStart + // + this.buttonStart.Location = new System.Drawing.Point(13, 13); + this.buttonStart.Name = "buttonStart"; + this.buttonStart.Size = new System.Drawing.Size(75, 23); + this.buttonStart.TabIndex = 0; + this.buttonStart.Text = "Start"; + this.buttonStart.UseVisualStyleBackColor = true; + this.buttonStart.Click += new System.EventHandler(this.buttonStart_Click); + // + // labelResult + // + this.labelResult.AutoSize = true; + this.labelResult.Location = new System.Drawing.Point(13, 43); + this.labelResult.Name = "labelResult"; + this.labelResult.Size = new System.Drawing.Size(16, 13); + this.labelResult.TabIndex = 1; + this.labelResult.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.labelResult); + this.Controls.Add(this.buttonStart); + this.Name = "Form1"; + this.Text = "Form1"; + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.Button buttonStart; + private System.Windows.Forms.Label labelResult; + } +} + diff --git a/Test_LoadXMLFile/Form1.cs b/Test_LoadXMLFile/Form1.cs new file mode 100644 index 0000000..9530f6d --- /dev/null +++ b/Test_LoadXMLFile/Form1.cs @@ -0,0 +1,124 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Test_LoadXMLFile +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + + private void buttonStart_Click(object sender, EventArgs e) + { + var load = new LoadXML(); + load.FileName = @"C:\Temp\Test\Test.xml"; + load.Topic = "NX-Portal"; + load.Group = "Management"; + load.Key = "Method"; + //load.LoadAllValues = LoadXML.LoadAll.Yes; + load.LoadAllValues = LoadXML.LoadAll.No; + load.Load(); + + if (load.Values != null) + { + labelResult.Text = Ausgabe(load.FileName, load.Topic, load.Group, load.Key, load.Values); + } + + load.Group = "NX"; + load.Key = "Version"; + load.Load(); + + if (load.Values != null) + { + labelResult.Text += Ausgabe2(load.Group, load.Key, load.Values); + } + else + { + labelResult.Text = "Keine Werte"; + } + } + + private string Ausgabe(string fileName, string topic, string group, string key, string[,] values) + { + string result = ""; + + result = "Filename: " + fileName; + result += "\r\nTopic: " + topic; + result += "\r\nGroup: " + group; + result += "\r\nKey: " + key; + result += "\r\n\r\nValues (ID - Methode - Standard): "; + + int z = 0; + + foreach (var item in values) + { + if (z==3) + { + z = 0; + } + if (z==2) + { + result += " - " + item; + z++; + } + if (z==1) + { + result += " - " + item; + z++; + } + if (z==0) + { + result += "\r\n" + item; + z++; + } + } + + return result; + } + + private string Ausgabe2(string group, string key, string[,] values) + { + string result = ""; + + result += "\r\n\r\nGroup: " + group; + result += "\r\nKey: " + key; + result += "\r\n\r\nValues (ID - Version - Standard): "; + + int z = 0; + + foreach (var item in values) + { + if (z == 3) + { + z = 0; + } + if (z == 2) + { + result += " - " + item; + z++; + } + if (z == 1) + { + result += " - " + item; + z++; + } + if (z == 0) + { + result += "\r\n" + item; + z++; + } + } + + return result; + } + } +} diff --git a/Test_LoadXMLFile/Form1.resx b/Test_LoadXMLFile/Form1.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/Test_LoadXMLFile/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_LoadXMLFile/LoadXML.cs b/Test_LoadXMLFile/LoadXML.cs new file mode 100644 index 0000000..6384fd1 --- /dev/null +++ b/Test_LoadXMLFile/LoadXML.cs @@ -0,0 +1,195 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; +using System.Xml; +using System.Xml.Linq; +using System.Xml.XPath; + +//namespace Eugen.ESystem.Windows.Forms +namespace Test_LoadXMLFile +{ + internal class LoadXML + { + public enum LoadAll + { + No, + Yes + } + + public string FileName { get; set; } + public string Topic { get; set; } //z.B. "NX-Portal" + public string Group { get; set; } //z.B. "NX" + public string Key { get; set; } //z.B. "Key" + public string[,] Values { get; set; } //z.B. "NX 1953" + public int Standard { get; set; } //z.B. "2" + public LoadAll LoadAllValues { get; set; } + + public void Load() + { + if (File.Exists(FileName)) + { + // Das Dokument in eine neue XElement-Instanz laden + XElement rootElement = XElement.Load(FileName); + + if (rootElement.ToString().Remove(rootElement.ToString().IndexOf(" ")) == "<" + Topic || LoadAllValues == LoadAll.Yes) + { + // Auflistung für die Gruppe erzeugen + List groups = new List(); + + //Alle groups-Elemente einlesen und durchgehen + //var personElements = rootElement.Elements(Group); + var groupElements = rootElement.Elements(); + + if (String.IsNullOrEmpty(Group)) + { + string[] temp = new string[5]; + + List lkeys = new List(); + List lvalues = new List(); + List lstandard = new List(); + + foreach (var groupElement in groupElements) + { + //Nur wenn das 'groupElement' so beginnt wie 'Group' heißt, dann laden + if (groupElement.ToString().Remove(groupElement.ToString().IndexOf(" ")) == "<" + Group || LoadAllValues == LoadAll.Yes) + { + temp = groupElement.ToString().Split(' '); + + //Wenn Leerzeichen im Wert sind, dann werden mehr als 6 Elemente belegt. + //In diesem Fall die Teilelemente wieder zu einem Element zusammenführen. + if (temp.Length > 6) + { + int count = temp.Length - 6; + + for (int i = 1; i < count + 1; i++) + { + temp[2] += " " + temp[2 + i]; //Die Teilelemente zusammensetzen + } + + var numbersList = temp.ToList(); //Array in eine List umwandeln + for (int i = 0; i < count; i++) + { + numbersList.Remove(numbersList[3]); //Die nicht mehr gültigen Teilelemente löschen + } + + temp = numbersList.ToArray(); //List in ein Array zurückwandeln + } + + Group = ExtractGroup(temp); + Key = ExtractKey(temp); + lvalues.Add(ExtractValue(temp)); + lstandard.Add(ExtractStandard(temp)); + } + } + + string[,] values = new string[lvalues.Count, 3]; + int standard = 0; + + for (int i = 0; i < lvalues.Count; i++) + { + values[i, 2] = lvalues[i]; + + if (lstandard[i] == "yes") + { + standard = i + 1; + } + } + + Values = values; + Standard = standard; + } + else + { + foreach (var groupElement in groupElements) + { + //Nur wenn das 'groupElement' so beginnt wie 'Group' heißt, dann laden + if (groupElement.ToString().Remove(groupElement.ToString().IndexOf(" ")) == "<" + Group || LoadAllValues == LoadAll.Yes) + { + //Neue Gruppe erzeugen und in der Auflistung ablegen + Topics group = new Topics(); + groups.Add(group); + + //Das Attribut id einlesen + XAttribute idAttribute = groupElement.Attribute("Id"); + if (idAttribute != null) + { + group.Id = idAttribute.Value; + } + + //Key-Element suchen und speichern + XAttribute keyAttribut = groupElement.Attribute(Key); + if (keyAttribut != null) + { + group.Key = keyAttribut.Value; + } + + //Standard-Element suchen und speichern + XAttribute standardAttribut = groupElement.Attribute("Standard"); + if (standardAttribut != null) + { + group.Standard = standardAttribut.Value; + } + } + } + + DataPreperation(groups); + } + } + else + { + Values = null; + } + } + } + + private string ExtractGroup(string[] temp) + { + return temp[0].Remove(0, 1); + } + + private string ExtractKey(string[] temp) + { + return temp[2].Remove(temp[2].IndexOf("=")); + } + + private string ExtractValue(string[] temp) + { + return temp[2].Remove(0, temp[2].IndexOf("=") + 1).Replace("\"", ""); + } + + private string ExtractStandard(string[] temp) + { + return temp[3].Remove(0, temp[3].IndexOf("=") + 1).Replace("\"", ""); + } + + private void DataPreperation(List groups) + { + string[,] values = new string[groups.Count, 3]; + + for (int i = 0; i < groups.Count; i++) + { + values[i, 0] = groups[i].Id; + values[i, 1] = groups[i].Key; + values[i, 2] = groups[i].Standard; + + if (groups[i].Standard == "yes") + { + Standard = i + 1; + } + } + + Values = values; + } + } + + class Topics + { + public string Id; + public string Key; + public string Standard; + } +} diff --git a/Test_LoadXMLFile/LoadXML.cs_old b/Test_LoadXMLFile/LoadXML.cs_old new file mode 100644 index 0000000..f1a384e --- /dev/null +++ b/Test_LoadXMLFile/LoadXML.cs_old @@ -0,0 +1,95 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Xml; +using System.Xml.Linq; +using System.Xml.XPath; + +namespace Test_LoadXMLFile +{ + internal class LoadXML + { + public string FileName { get; set; } + public string Topic { get; set; } //z.B. "NX-Portal" + public string Group { get; set; } //z.B. "NX" + public string Key { get; set; } //z.B. "Version" + public string[,] Values { get; set; } //z.B. "NX 1953" + public int Standard { get; set; } //z.B. "2" + + public void Load() + { + // Das Dokument in eine neue XElement-Instanz laden + XElement rootElement = XElement.Load(FileName); + + if (rootElement.ToString().Remove(rootElement.ToString().IndexOf(" ")) == "<" + Topic) + { + // Auflistung für die Gruppe erzeugen + List groups = new List(); + + //Alle groups-Elemente einlesen und durchgehen + //var personElements = rootElement.Elements(Group); + var groupElements = rootElement.Elements(); + foreach (var groupElement in groupElements) + { + //Nur wenn das 'groupElement' so beginnt wie 'Group' heißt, dann laden + if (groupElement.ToString().Remove(groupElement.ToString().IndexOf(" ")) == "<" + Group) + { + //Neue Gruppe erzeugen und in der Auflistung ablegen + Topics group = new Topics(); + groups.Add(group); + + //Das Attribut id einlesen + XAttribute idAttribute = groupElement.Attribute("Id"); + if (idAttribute != null) + { + group.Id = idAttribute.Value; + } + + //Key-Element suchen und speichern + XAttribute keyAttribut = groupElement.Attribute(Key); + if (keyAttribut != null) + { + group.Key = keyAttribut.Value; + } + + //Standard-Element suchen und speichern + XAttribute standardAttribut = groupElement.Attribute("Standard"); + if (standardAttribut != null) + { + group.Standard = standardAttribut.Value; + } + + DataPreperation(groups); + } + } + } + else + { + Values = null; + } + } + + private void DataPreperation(List groups) + { + string[,] values = new string[groups.Count, 3]; + + for (int i = 0; i < groups.Count; i++) + { + values[i,0] = groups[i].Id; + values[i,1] = groups[i].Key; + values[i, 2] = groups[i].Standard; + } + + Values = values; + } + } + + class Topics + { + public string Id; + public string Key; + public string Standard; + } +} diff --git a/Test_LoadXMLFile/Program.cs b/Test_LoadXMLFile/Program.cs new file mode 100644 index 0000000..e41e070 --- /dev/null +++ b/Test_LoadXMLFile/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_LoadXMLFile +{ + 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_LoadXMLFile/Properties/AssemblyInfo.cs b/Test_LoadXMLFile/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..0f4a038 --- /dev/null +++ b/Test_LoadXMLFile/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_LoadXMLFile")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("ENGEL")] +[assembly: AssemblyProduct("Test_LoadXMLFile")] +[assembly: AssemblyCopyright("Copyright © ENGEL 2022")] +[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("29511763-82c2-4ff7-8d59-3287ace8194c")] + +// 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.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Test_LoadXMLFile/Properties/Resources.Designer.cs b/Test_LoadXMLFile/Properties/Resources.Designer.cs new file mode 100644 index 0000000..6af890e --- /dev/null +++ b/Test_LoadXMLFile/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 fehlerhaftes Verhalten verursachen und gehen verloren, wenn +// der Code neu generiert wird. +// +//------------------------------------------------------------------------------ + +namespace Test_LoadXMLFile.Properties +{ + + + /// + /// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. + /// + // Diese Klasse wurde von der StronglyTypedResourceBuilder-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 Option /str erneut aus, oder erstellen Sie Ihr VS-Projekt neu. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources + { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() + { + } + + /// + /// 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 ((resourceMan == null)) + { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Test_LoadXMLFile.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle + /// Ressourcenlookups, 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_LoadXMLFile/Properties/Resources.resx b/Test_LoadXMLFile/Properties/Resources.resx new file mode 100644 index 0000000..af7dbeb --- /dev/null +++ b/Test_LoadXMLFile/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_LoadXMLFile/Properties/Settings.Designer.cs b/Test_LoadXMLFile/Properties/Settings.Designer.cs new file mode 100644 index 0000000..b466509 --- /dev/null +++ b/Test_LoadXMLFile/Properties/Settings.Designer.cs @@ -0,0 +1,30 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Test_LoadXMLFile.Properties +{ + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase + { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default + { + get + { + return defaultInstance; + } + } + } +} diff --git a/Test_LoadXMLFile/Properties/Settings.settings b/Test_LoadXMLFile/Properties/Settings.settings new file mode 100644 index 0000000..3964565 --- /dev/null +++ b/Test_LoadXMLFile/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/Test_LoadXMLFile/Test_LoadXMLFile.csproj b/Test_LoadXMLFile/Test_LoadXMLFile.csproj new file mode 100644 index 0000000..f2bb11d --- /dev/null +++ b/Test_LoadXMLFile/Test_LoadXMLFile.csproj @@ -0,0 +1,84 @@ + + + + + Debug + AnyCPU + {29511763-82C2-4FF7-8D59-3287ACE8194C} + WinExe + Test_LoadXMLFile + Test_LoadXMLFile + v4.7.2 + 512 + true + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + 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_LoadXMLFile/bin/Debug/Test_LoadXMLFile.exe b/Test_LoadXMLFile/bin/Debug/Test_LoadXMLFile.exe new file mode 100644 index 0000000..cb09e5a Binary files /dev/null and b/Test_LoadXMLFile/bin/Debug/Test_LoadXMLFile.exe differ diff --git a/Test_LoadXMLFile/bin/Debug/Test_LoadXMLFile.exe.config b/Test_LoadXMLFile/bin/Debug/Test_LoadXMLFile.exe.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/Test_LoadXMLFile/bin/Debug/Test_LoadXMLFile.exe.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Test_LoadXMLFile/bin/Debug/Test_LoadXMLFile.pdb b/Test_LoadXMLFile/bin/Debug/Test_LoadXMLFile.pdb new file mode 100644 index 0000000..6e95dcd Binary files /dev/null and b/Test_LoadXMLFile/bin/Debug/Test_LoadXMLFile.pdb differ diff --git a/Test_LoadXMLFile/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs b/Test_LoadXMLFile/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs new file mode 100644 index 0000000..3871b18 --- /dev/null +++ b/Test_LoadXMLFile/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/Test_LoadXMLFile/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/Test_LoadXMLFile/obj/Debug/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000..83e6107 Binary files /dev/null and b/Test_LoadXMLFile/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/Test_LoadXMLFile/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Test_LoadXMLFile/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..04e71b7 Binary files /dev/null and b/Test_LoadXMLFile/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/Test_LoadXMLFile/obj/Debug/Test_LoadXMLFile.Form1.resources b/Test_LoadXMLFile/obj/Debug/Test_LoadXMLFile.Form1.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/Test_LoadXMLFile/obj/Debug/Test_LoadXMLFile.Form1.resources differ diff --git a/Test_LoadXMLFile/obj/Debug/Test_LoadXMLFile.Properties.Resources.resources b/Test_LoadXMLFile/obj/Debug/Test_LoadXMLFile.Properties.Resources.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/Test_LoadXMLFile/obj/Debug/Test_LoadXMLFile.Properties.Resources.resources differ diff --git a/Test_LoadXMLFile/obj/Debug/Test_LoadXMLFile.csproj.AssemblyReference.cache b/Test_LoadXMLFile/obj/Debug/Test_LoadXMLFile.csproj.AssemblyReference.cache new file mode 100644 index 0000000..825f721 Binary files /dev/null and b/Test_LoadXMLFile/obj/Debug/Test_LoadXMLFile.csproj.AssemblyReference.cache differ diff --git a/Test_LoadXMLFile/obj/Debug/Test_LoadXMLFile.csproj.CoreCompileInputs.cache b/Test_LoadXMLFile/obj/Debug/Test_LoadXMLFile.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..9fc1ba3 --- /dev/null +++ b/Test_LoadXMLFile/obj/Debug/Test_LoadXMLFile.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +6bdb803cc58079c75fe33506e7f9427ac86c710f diff --git a/Test_LoadXMLFile/obj/Debug/Test_LoadXMLFile.csproj.FileListAbsolute.txt b/Test_LoadXMLFile/obj/Debug/Test_LoadXMLFile.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..ad67537 --- /dev/null +++ b/Test_LoadXMLFile/obj/Debug/Test_LoadXMLFile.csproj.FileListAbsolute.txt @@ -0,0 +1,11 @@ +H:\Programmieren\Git-WorkRepository\VisualStudio\_TEST\Test_LoadXMLFile.git\Test_LoadXMLFile\bin\Debug\Test_LoadXMLFile.exe.config +H:\Programmieren\Git-WorkRepository\VisualStudio\_TEST\Test_LoadXMLFile.git\Test_LoadXMLFile\bin\Debug\Test_LoadXMLFile.exe +H:\Programmieren\Git-WorkRepository\VisualStudio\_TEST\Test_LoadXMLFile.git\Test_LoadXMLFile\bin\Debug\Test_LoadXMLFile.pdb +H:\Programmieren\Git-WorkRepository\VisualStudio\_TEST\Test_LoadXMLFile.git\Test_LoadXMLFile\obj\Debug\Test_LoadXMLFile.csproj.AssemblyReference.cache +H:\Programmieren\Git-WorkRepository\VisualStudio\_TEST\Test_LoadXMLFile.git\Test_LoadXMLFile\obj\Debug\Test_LoadXMLFile.csproj.SuggestedBindingRedirects.cache +H:\Programmieren\Git-WorkRepository\VisualStudio\_TEST\Test_LoadXMLFile.git\Test_LoadXMLFile\obj\Debug\Test_LoadXMLFile.Form1.resources +H:\Programmieren\Git-WorkRepository\VisualStudio\_TEST\Test_LoadXMLFile.git\Test_LoadXMLFile\obj\Debug\Test_LoadXMLFile.Properties.Resources.resources +H:\Programmieren\Git-WorkRepository\VisualStudio\_TEST\Test_LoadXMLFile.git\Test_LoadXMLFile\obj\Debug\Test_LoadXMLFile.csproj.GenerateResource.cache +H:\Programmieren\Git-WorkRepository\VisualStudio\_TEST\Test_LoadXMLFile.git\Test_LoadXMLFile\obj\Debug\Test_LoadXMLFile.csproj.CoreCompileInputs.cache +H:\Programmieren\Git-WorkRepository\VisualStudio\_TEST\Test_LoadXMLFile.git\Test_LoadXMLFile\obj\Debug\Test_LoadXMLFile.exe +H:\Programmieren\Git-WorkRepository\VisualStudio\_TEST\Test_LoadXMLFile.git\Test_LoadXMLFile\obj\Debug\Test_LoadXMLFile.pdb diff --git a/Test_LoadXMLFile/obj/Debug/Test_LoadXMLFile.csproj.GenerateResource.cache b/Test_LoadXMLFile/obj/Debug/Test_LoadXMLFile.csproj.GenerateResource.cache new file mode 100644 index 0000000..aec1b26 Binary files /dev/null and b/Test_LoadXMLFile/obj/Debug/Test_LoadXMLFile.csproj.GenerateResource.cache differ diff --git a/Test_LoadXMLFile/obj/Debug/Test_LoadXMLFile.csproj.SuggestedBindingRedirects.cache b/Test_LoadXMLFile/obj/Debug/Test_LoadXMLFile.csproj.SuggestedBindingRedirects.cache new file mode 100644 index 0000000..e69de29 diff --git a/Test_LoadXMLFile/obj/Debug/Test_LoadXMLFile.exe b/Test_LoadXMLFile/obj/Debug/Test_LoadXMLFile.exe new file mode 100644 index 0000000..cb09e5a Binary files /dev/null and b/Test_LoadXMLFile/obj/Debug/Test_LoadXMLFile.exe differ diff --git a/Test_LoadXMLFile/obj/Debug/Test_LoadXMLFile.pdb b/Test_LoadXMLFile/obj/Debug/Test_LoadXMLFile.pdb new file mode 100644 index 0000000..6e95dcd Binary files /dev/null and b/Test_LoadXMLFile/obj/Debug/Test_LoadXMLFile.pdb differ diff --git a/Test_LoadXMLFile/obj/Debug/_IsIncrementalBuild b/Test_LoadXMLFile/obj/Debug/_IsIncrementalBuild new file mode 100644 index 0000000..e5f828c --- /dev/null +++ b/Test_LoadXMLFile/obj/Debug/_IsIncrementalBuild @@ -0,0 +1 @@ +obj\Debug\\_IsIncrementalBuild