From 2d1c3a615e3090c2be4cddd2e9aed4846b89fa24 Mon Sep 17 00:00:00 2001 From: Bonkers Date: Fri, 9 Jan 2026 09:06:14 +0100 Subject: [PATCH] =?UTF-8?q?Projektdateien=20hinzuf=C3=BCgen.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code_csharp_eses.sln | 25 ++++++++++ code_csharp_eses/App.config | 6 +++ code_csharp_eses/Program.cs | 15 ++++++ code_csharp_eses/Properties/AssemblyInfo.cs | 33 +++++++++++++ code_csharp_eses/code_csharp_eses.csproj | 53 +++++++++++++++++++++ 5 files changed, 132 insertions(+) create mode 100644 code_csharp_eses.sln create mode 100644 code_csharp_eses/App.config create mode 100644 code_csharp_eses/Program.cs create mode 100644 code_csharp_eses/Properties/AssemblyInfo.cs create mode 100644 code_csharp_eses/code_csharp_eses.csproj diff --git a/code_csharp_eses.sln b/code_csharp_eses.sln new file mode 100644 index 0000000..5c42a6d --- /dev/null +++ b/code_csharp_eses.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.14.36811.4 d17.14 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "code_csharp_eses", "code_csharp_eses\code_csharp_eses.csproj", "{DEE964A6-0B3F-4892-9AF0-59C0E4B75F97}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {DEE964A6-0B3F-4892-9AF0-59C0E4B75F97}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DEE964A6-0B3F-4892-9AF0-59C0E4B75F97}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DEE964A6-0B3F-4892-9AF0-59C0E4B75F97}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DEE964A6-0B3F-4892-9AF0-59C0E4B75F97}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {102CE664-2C9C-4762-BA55-5C578F645661} + EndGlobalSection +EndGlobal diff --git a/code_csharp_eses/App.config b/code_csharp_eses/App.config new file mode 100644 index 0000000..193aecc --- /dev/null +++ b/code_csharp_eses/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/code_csharp_eses/Program.cs b/code_csharp_eses/Program.cs new file mode 100644 index 0000000..f25f718 --- /dev/null +++ b/code_csharp_eses/Program.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace code_csharp_eses +{ + internal class Program + { + static void Main(string[] args) + { + } + } +} diff --git a/code_csharp_eses/Properties/AssemblyInfo.cs b/code_csharp_eses/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..b5eda0e --- /dev/null +++ b/code_csharp_eses/Properties/AssemblyInfo.cs @@ -0,0 +1,33 @@ +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("code_csharp_eses")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("code_csharp_eses")] +[assembly: AssemblyCopyright("Copyright © 2026")] +[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("dee964a6-0b3f-4892-9af0-59c0e4b75f97")] + +// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: +// +// Hauptversion +// Nebenversion +// Buildnummer +// Revision +// +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/code_csharp_eses/code_csharp_eses.csproj b/code_csharp_eses/code_csharp_eses.csproj new file mode 100644 index 0000000..d464245 --- /dev/null +++ b/code_csharp_eses/code_csharp_eses.csproj @@ -0,0 +1,53 @@ + + + + + Debug + AnyCPU + {DEE964A6-0B3F-4892-9AF0-59C0E4B75F97} + Exe + code_csharp_eses + code_csharp_eses + v4.8 + 512 + true + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + + + \ No newline at end of file