From 708ee6a4bfb0bcf6f9c6bc9784951baaa8d8f238 Mon Sep 17 00:00:00 2001 From: Hoeglinger Eugen Date: Fri, 17 May 2019 11:57:51 +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 --- Info.sln | 25 +++++++++++++++ Info/Class1.cs | 12 ++++++++ Info/Info.csproj | 54 +++++++++++++++++++++++++++++++++ Info/Properties/AssemblyInfo.cs | 36 ++++++++++++++++++++++ 4 files changed, 127 insertions(+) create mode 100644 Info.sln create mode 100644 Info/Class1.cs create mode 100644 Info/Info.csproj create mode 100644 Info/Properties/AssemblyInfo.cs diff --git a/Info.sln b/Info.sln new file mode 100644 index 0000000..d347696 --- /dev/null +++ b/Info.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.28307.645 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Info", "Info\Info.csproj", "{E23AFF77-EBF4-4966-B3E4-A49FC6CE92C7}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {E23AFF77-EBF4-4966-B3E4-A49FC6CE92C7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E23AFF77-EBF4-4966-B3E4-A49FC6CE92C7}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E23AFF77-EBF4-4966-B3E4-A49FC6CE92C7}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E23AFF77-EBF4-4966-B3E4-A49FC6CE92C7}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {AA8B649D-F148-4159-87FA-9D956DC9D5E0} + EndGlobalSection +EndGlobal diff --git a/Info/Class1.cs b/Info/Class1.cs new file mode 100644 index 0000000..f570702 --- /dev/null +++ b/Info/Class1.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Info +{ + public class Class1 + { + } +} diff --git a/Info/Info.csproj b/Info/Info.csproj new file mode 100644 index 0000000..d49035a --- /dev/null +++ b/Info/Info.csproj @@ -0,0 +1,54 @@ + + + + + Debug + AnyCPU + e23aff77-ebf4-4966-b3e4-a49fc6ce92c7 + Library + Properties + Info + Info + v4.6.1 + 512 + true + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Info/Properties/AssemblyInfo.cs b/Info/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..cf700fa --- /dev/null +++ b/Info/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("Info")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Info")] +[assembly: AssemblyCopyright("Copyright © 2019")] +[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("e23aff77-ebf4-4966-b3e4-a49fc6ce92c7")] + +// 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")]