From bb619a5065aba1e93b2e554e44b12450cfd68dd3 Mon Sep 17 00:00:00 2001 From: MarcusAurelius Date: Sun, 10 Jul 2016 18:15:43 +0200 Subject: [PATCH] =?UTF-8?q?Projektdateien=20hinzuf=C3=BCgen.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- NoobDevBot.sln | 22 ++++++++++ NoobDevBot/App.config | 6 +++ NoobDevBot/NoobDevBot.csproj | 60 +++++++++++++++++++++++++++ NoobDevBot/Program.cs | 15 +++++++ NoobDevBot/Properties/AssemblyInfo.cs | 36 ++++++++++++++++ 5 files changed, 139 insertions(+) create mode 100644 NoobDevBot.sln create mode 100644 NoobDevBot/App.config create mode 100644 NoobDevBot/NoobDevBot.csproj create mode 100644 NoobDevBot/Program.cs create mode 100644 NoobDevBot/Properties/AssemblyInfo.cs diff --git a/NoobDevBot.sln b/NoobDevBot.sln new file mode 100644 index 0000000..153964d --- /dev/null +++ b/NoobDevBot.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.25420.1 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NoobDevBot", "NoobDevBot\NoobDevBot.csproj", "{27A6E8B1-F7C7-4CB7-AE69-E240ED7D9971}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {27A6E8B1-F7C7-4CB7-AE69-E240ED7D9971}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {27A6E8B1-F7C7-4CB7-AE69-E240ED7D9971}.Debug|Any CPU.Build.0 = Debug|Any CPU + {27A6E8B1-F7C7-4CB7-AE69-E240ED7D9971}.Release|Any CPU.ActiveCfg = Release|Any CPU + {27A6E8B1-F7C7-4CB7-AE69-E240ED7D9971}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/NoobDevBot/App.config b/NoobDevBot/App.config new file mode 100644 index 0000000..8324aa6 --- /dev/null +++ b/NoobDevBot/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/NoobDevBot/NoobDevBot.csproj b/NoobDevBot/NoobDevBot.csproj new file mode 100644 index 0000000..c90de23 --- /dev/null +++ b/NoobDevBot/NoobDevBot.csproj @@ -0,0 +1,60 @@ + + + + + Debug + AnyCPU + {27A6E8B1-F7C7-4CB7-AE69-E240ED7D9971} + Exe + Properties + NoobDevBot + NoobDevBot + v4.6 + 512 + 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 diff --git a/NoobDevBot/Program.cs b/NoobDevBot/Program.cs new file mode 100644 index 0000000..d3a3e15 --- /dev/null +++ b/NoobDevBot/Program.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace NoobDevBot +{ + class Program + { + static void Main(string[] args) + { + } + } +} diff --git a/NoobDevBot/Properties/AssemblyInfo.cs b/NoobDevBot/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..180a66d --- /dev/null +++ b/NoobDevBot/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("NoobDevBot")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("NoobDevBot")] +[assembly: AssemblyCopyright("Copyright © 2016")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Durch Festlegen von ComVisible auf "false" werden die Typen in dieser Assembly unsichtbar +// für COM-Komponenten. 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("27a6e8b1-f7c7-4cb7-ae69-e240ed7d9971")] + +// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: +// +// Hauptversion +// Nebenversion +// Buildnummer +// Revision +// +// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern +// übernehmen, indem Sie "*" eingeben: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")]