commit 36a02eab2ed32c698c8c451540a18a0309934718 Author: Eugen Höglinger Date: Tue May 25 14:50:27 2021 +0200 Initilized diff --git a/.vs/Test_ShowUsedDll.git/v16/.suo b/.vs/Test_ShowUsedDll.git/v16/.suo new file mode 100644 index 0000000..3fb7edd Binary files /dev/null and b/.vs/Test_ShowUsedDll.git/v16/.suo differ diff --git a/Test_ShowUsedDll.git.sln b/Test_ShowUsedDll.git.sln new file mode 100644 index 0000000..85d64f2 --- /dev/null +++ b/Test_ShowUsedDll.git.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31313.79 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Test_ShowUsedDll", "Test_ShowUsedDll\Test_ShowUsedDll.csproj", "{B27D70C2-0BEF-4099-B0DF-7439A895EB20}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {B27D70C2-0BEF-4099-B0DF-7439A895EB20}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B27D70C2-0BEF-4099-B0DF-7439A895EB20}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B27D70C2-0BEF-4099-B0DF-7439A895EB20}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B27D70C2-0BEF-4099-B0DF-7439A895EB20}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {5CB3BD87-23A0-4F9C-A82E-3895E88534E0} + EndGlobalSection +EndGlobal diff --git a/Test_ShowUsedDll/App.config b/Test_ShowUsedDll/App.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/Test_ShowUsedDll/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Test_ShowUsedDll/Form1.Designer.cs b/Test_ShowUsedDll/Form1.Designer.cs new file mode 100644 index 0000000..aab3a5c --- /dev/null +++ b/Test_ShowUsedDll/Form1.Designer.cs @@ -0,0 +1,63 @@ + +namespace Test_ShowUsedDll +{ + 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.textBoxDllInfo = new System.Windows.Forms.TextBox(); + this.SuspendLayout(); + // + // textBoxDllInfo + // + this.textBoxDllInfo.Location = new System.Drawing.Point(13, 13); + this.textBoxDllInfo.Multiline = true; + this.textBoxDllInfo.Name = "textBoxDllInfo"; + this.textBoxDllInfo.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; + this.textBoxDllInfo.Size = new System.Drawing.Size(775, 425); + this.textBoxDllInfo.TabIndex = 0; + // + // 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.textBoxDllInfo); + this.Name = "Form1"; + this.Text = "Show Used DLLs"; + this.Load += new System.EventHandler(this.Form1_Load); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.TextBox textBoxDllInfo; + } +} + diff --git a/Test_ShowUsedDll/Form1.cs b/Test_ShowUsedDll/Form1.cs new file mode 100644 index 0000000..c872665 --- /dev/null +++ b/Test_ShowUsedDll/Form1.cs @@ -0,0 +1,161 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Diagnostics; +using System.Drawing; +using System.IO; +using System.Linq; +using System.Reflection; +using System.Runtime.InteropServices; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Test_ShowUsedDll +{ + 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 = 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 = ""; + 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 ((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) + { + string dlls = ""; + + foreach (var item in ShowUsedDll()) + { + dlls += item + Environment.NewLine + Environment.NewLine; + } + + textBoxDllInfo.Text = dlls.Remove(dlls.LastIndexOf("\r\n\r\n")); + } + + private List ShowUsedDll() + { + List dlls = new List(); + string name = ""; + string dllInfos = ""; + string dllName = ""; + string dllVersion = ""; + + foreach (ProcessModule module in Process.GetCurrentProcess().Modules) + { + dlls.Add(module.ModuleName + Environment.NewLine + module.FileVersionInfo.ProductVersion + Environment.NewLine + module.FileName); + } + + DirectoryInfo ParentDirectory = new DirectoryInfo(Application.StartupPath); + foreach (FileInfo fi in ParentDirectory.GetFiles()) + { + if (fi.Extension.ToLower() == ".dll") + { + name = fi.FullName.Remove(0, fi.FullName.LastIndexOf("\\") + 1); + + Assembly assembly = Assembly.LoadFrom(name); + + dllName = String.Concat(assembly.ToString().Remove(assembly.ToString().IndexOf(",")), ".dll"); + dllVersion = assembly.ToString().Remove(0, assembly.ToString().IndexOf("Version=") + 8); + dllVersion = dllVersion.Remove(dllVersion.IndexOf(",")); + + dllInfos = String.Concat(dllInfos, dllName, "\r\n", dllVersion, "\r\n\r\n"); + + dlls.Add(fi.FullName.Remove(0, fi.FullName.LastIndexOf("\\") + 1) + Environment.NewLine + dllVersion + Environment.NewLine + ParentDirectory + Environment.NewLine + dllName); + } + } + + dlls.Sort(); + + return dlls; + } + + + } +} diff --git a/Test_ShowUsedDll/Form1.resx b/Test_ShowUsedDll/Form1.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/Test_ShowUsedDll/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_ShowUsedDll/Program.cs b/Test_ShowUsedDll/Program.cs new file mode 100644 index 0000000..e4c2c64 --- /dev/null +++ b/Test_ShowUsedDll/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_ShowUsedDll +{ + 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_ShowUsedDll/Properties/AssemblyInfo.cs b/Test_ShowUsedDll/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..645d7d6 --- /dev/null +++ b/Test_ShowUsedDll/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_ShowUsedDll")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Test_ShowUsedDll")] +[assembly: AssemblyCopyright("Copyright © 2021 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("b27d70c2-0bef-4099-b0df-7439a895eb20")] + +// 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")] diff --git a/Test_ShowUsedDll/Properties/Resources.Designer.cs b/Test_ShowUsedDll/Properties/Resources.Designer.cs new file mode 100644 index 0000000..4012234 --- /dev/null +++ b/Test_ShowUsedDll/Properties/Resources.Designer.cs @@ -0,0 +1,70 @@ +//------------------------------------------------------------------------------ +// +// 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_ShowUsedDll.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_ShowUsedDll.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_ShowUsedDll/Properties/Resources.resx b/Test_ShowUsedDll/Properties/Resources.resx new file mode 100644 index 0000000..af7dbeb --- /dev/null +++ b/Test_ShowUsedDll/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_ShowUsedDll/Properties/Settings.Designer.cs b/Test_ShowUsedDll/Properties/Settings.Designer.cs new file mode 100644 index 0000000..7e08628 --- /dev/null +++ b/Test_ShowUsedDll/Properties/Settings.Designer.cs @@ -0,0 +1,29 @@ +//------------------------------------------------------------------------------ +// +// 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_ShowUsedDll.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_ShowUsedDll/Properties/Settings.settings b/Test_ShowUsedDll/Properties/Settings.settings new file mode 100644 index 0000000..3964565 --- /dev/null +++ b/Test_ShowUsedDll/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/Test_ShowUsedDll/Test_ShowUsedDll.csproj b/Test_ShowUsedDll/Test_ShowUsedDll.csproj new file mode 100644 index 0000000..e817a4c --- /dev/null +++ b/Test_ShowUsedDll/Test_ShowUsedDll.csproj @@ -0,0 +1,86 @@ + + + + + Debug + AnyCPU + {B27D70C2-0BEF-4099-B0DF-7439A895EB20} + WinExe + Test_ShowUsedDll + Test_ShowUsedDll + v4.7.2 + 512 + true + false + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + ..\..\..\_DLL\AboutBox.git\AboutBox\bin\Debug\heabox.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_ShowUsedDll/bin/Debug/Test_ShowUsedDll.exe b/Test_ShowUsedDll/bin/Debug/Test_ShowUsedDll.exe new file mode 100644 index 0000000..61fca60 Binary files /dev/null and b/Test_ShowUsedDll/bin/Debug/Test_ShowUsedDll.exe differ diff --git a/Test_ShowUsedDll/bin/Debug/Test_ShowUsedDll.exe.config b/Test_ShowUsedDll/bin/Debug/Test_ShowUsedDll.exe.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/Test_ShowUsedDll/bin/Debug/Test_ShowUsedDll.exe.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Test_ShowUsedDll/bin/Debug/Test_ShowUsedDll.pdb b/Test_ShowUsedDll/bin/Debug/Test_ShowUsedDll.pdb new file mode 100644 index 0000000..39a9e59 Binary files /dev/null and b/Test_ShowUsedDll/bin/Debug/Test_ShowUsedDll.pdb differ diff --git a/Test_ShowUsedDll/bin/Debug/de/heabox.resources.dll b/Test_ShowUsedDll/bin/Debug/de/heabox.resources.dll new file mode 100644 index 0000000..ab00c66 Binary files /dev/null and b/Test_ShowUsedDll/bin/Debug/de/heabox.resources.dll differ diff --git a/Test_ShowUsedDll/bin/Debug/en/heabox.resources.dll b/Test_ShowUsedDll/bin/Debug/en/heabox.resources.dll new file mode 100644 index 0000000..f57a07f Binary files /dev/null and b/Test_ShowUsedDll/bin/Debug/en/heabox.resources.dll differ diff --git a/Test_ShowUsedDll/bin/Debug/heabox.dll b/Test_ShowUsedDll/bin/Debug/heabox.dll new file mode 100644 index 0000000..0a86c38 Binary files /dev/null and b/Test_ShowUsedDll/bin/Debug/heabox.dll differ diff --git a/Test_ShowUsedDll/bin/Debug/heabox.pdb b/Test_ShowUsedDll/bin/Debug/heabox.pdb new file mode 100644 index 0000000..64ce1af Binary files /dev/null and b/Test_ShowUsedDll/bin/Debug/heabox.pdb differ diff --git a/Test_ShowUsedDll/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs b/Test_ShowUsedDll/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs new file mode 100644 index 0000000..3871b18 --- /dev/null +++ b/Test_ShowUsedDll/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_ShowUsedDll/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/Test_ShowUsedDll/obj/Debug/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000..3f43d9d Binary files /dev/null and b/Test_ShowUsedDll/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/Test_ShowUsedDll/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Test_ShowUsedDll/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..96a4112 Binary files /dev/null and b/Test_ShowUsedDll/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/Test_ShowUsedDll/obj/Debug/Test_ShowUsedDll.Form1.resources b/Test_ShowUsedDll/obj/Debug/Test_ShowUsedDll.Form1.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/Test_ShowUsedDll/obj/Debug/Test_ShowUsedDll.Form1.resources differ diff --git a/Test_ShowUsedDll/obj/Debug/Test_ShowUsedDll.Properties.Resources.resources b/Test_ShowUsedDll/obj/Debug/Test_ShowUsedDll.Properties.Resources.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/Test_ShowUsedDll/obj/Debug/Test_ShowUsedDll.Properties.Resources.resources differ diff --git a/Test_ShowUsedDll/obj/Debug/Test_ShowUsedDll.csproj.CopyComplete b/Test_ShowUsedDll/obj/Debug/Test_ShowUsedDll.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/Test_ShowUsedDll/obj/Debug/Test_ShowUsedDll.csproj.CoreCompileInputs.cache b/Test_ShowUsedDll/obj/Debug/Test_ShowUsedDll.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..915a008 --- /dev/null +++ b/Test_ShowUsedDll/obj/Debug/Test_ShowUsedDll.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +8cbe88df90a4e80c3710f83723566eba79c84ebd diff --git a/Test_ShowUsedDll/obj/Debug/Test_ShowUsedDll.csproj.FileListAbsolute.txt b/Test_ShowUsedDll/obj/Debug/Test_ShowUsedDll.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..ccb932e --- /dev/null +++ b/Test_ShowUsedDll/obj/Debug/Test_ShowUsedDll.csproj.FileListAbsolute.txt @@ -0,0 +1,15 @@ +H:\Programmieren\Git-WorkRepository\VisualStudio\_TEST\Test_ShowUsedDll.git\Test_ShowUsedDll\bin\Debug\Test_ShowUsedDll.exe.config +H:\Programmieren\Git-WorkRepository\VisualStudio\_TEST\Test_ShowUsedDll.git\Test_ShowUsedDll\bin\Debug\Test_ShowUsedDll.exe +H:\Programmieren\Git-WorkRepository\VisualStudio\_TEST\Test_ShowUsedDll.git\Test_ShowUsedDll\bin\Debug\Test_ShowUsedDll.pdb +H:\Programmieren\Git-WorkRepository\VisualStudio\_TEST\Test_ShowUsedDll.git\Test_ShowUsedDll\bin\Debug\heabox.dll +H:\Programmieren\Git-WorkRepository\VisualStudio\_TEST\Test_ShowUsedDll.git\Test_ShowUsedDll\bin\Debug\heabox.pdb +H:\Programmieren\Git-WorkRepository\VisualStudio\_TEST\Test_ShowUsedDll.git\Test_ShowUsedDll\bin\Debug\de\heabox.resources.dll +H:\Programmieren\Git-WorkRepository\VisualStudio\_TEST\Test_ShowUsedDll.git\Test_ShowUsedDll\bin\Debug\en\heabox.resources.dll +H:\Programmieren\Git-WorkRepository\VisualStudio\_TEST\Test_ShowUsedDll.git\Test_ShowUsedDll\obj\Debug\Test_ShowUsedDll.csprojAssemblyReference.cache +H:\Programmieren\Git-WorkRepository\VisualStudio\_TEST\Test_ShowUsedDll.git\Test_ShowUsedDll\obj\Debug\Test_ShowUsedDll.Form1.resources +H:\Programmieren\Git-WorkRepository\VisualStudio\_TEST\Test_ShowUsedDll.git\Test_ShowUsedDll\obj\Debug\Test_ShowUsedDll.Properties.Resources.resources +H:\Programmieren\Git-WorkRepository\VisualStudio\_TEST\Test_ShowUsedDll.git\Test_ShowUsedDll\obj\Debug\Test_ShowUsedDll.csproj.GenerateResource.cache +H:\Programmieren\Git-WorkRepository\VisualStudio\_TEST\Test_ShowUsedDll.git\Test_ShowUsedDll\obj\Debug\Test_ShowUsedDll.csproj.CoreCompileInputs.cache +H:\Programmieren\Git-WorkRepository\VisualStudio\_TEST\Test_ShowUsedDll.git\Test_ShowUsedDll\obj\Debug\Test_ShowUsedDll.csproj.CopyComplete +H:\Programmieren\Git-WorkRepository\VisualStudio\_TEST\Test_ShowUsedDll.git\Test_ShowUsedDll\obj\Debug\Test_ShowUsedDll.exe +H:\Programmieren\Git-WorkRepository\VisualStudio\_TEST\Test_ShowUsedDll.git\Test_ShowUsedDll\obj\Debug\Test_ShowUsedDll.pdb diff --git a/Test_ShowUsedDll/obj/Debug/Test_ShowUsedDll.csproj.GenerateResource.cache b/Test_ShowUsedDll/obj/Debug/Test_ShowUsedDll.csproj.GenerateResource.cache new file mode 100644 index 0000000..2a8e6e2 Binary files /dev/null and b/Test_ShowUsedDll/obj/Debug/Test_ShowUsedDll.csproj.GenerateResource.cache differ diff --git a/Test_ShowUsedDll/obj/Debug/Test_ShowUsedDll.csprojAssemblyReference.cache b/Test_ShowUsedDll/obj/Debug/Test_ShowUsedDll.csprojAssemblyReference.cache new file mode 100644 index 0000000..87a99fe Binary files /dev/null and b/Test_ShowUsedDll/obj/Debug/Test_ShowUsedDll.csprojAssemblyReference.cache differ diff --git a/Test_ShowUsedDll/obj/Debug/Test_ShowUsedDll.exe b/Test_ShowUsedDll/obj/Debug/Test_ShowUsedDll.exe new file mode 100644 index 0000000..61fca60 Binary files /dev/null and b/Test_ShowUsedDll/obj/Debug/Test_ShowUsedDll.exe differ diff --git a/Test_ShowUsedDll/obj/Debug/Test_ShowUsedDll.pdb b/Test_ShowUsedDll/obj/Debug/Test_ShowUsedDll.pdb new file mode 100644 index 0000000..39a9e59 Binary files /dev/null and b/Test_ShowUsedDll/obj/Debug/Test_ShowUsedDll.pdb differ