From 731d86eb8d2b4065cadfcd193d000b9275e455d5 Mon Sep 17 00:00:00 2001 From: Holger Boerchers Date: Fri, 30 Nov 2018 09:04:30 +0100 Subject: [PATCH] Initial commit --- Ausgabenverwaltung.sln | 31 +++++ src/Ausgabenverwaltung.cpp | 6 + src/Ausgabenverwaltung.vcxproj | 159 +++++++++++++++++++++++++ src/Ausgabenverwaltung.vcxproj.filters | 22 ++++ 4 files changed, 218 insertions(+) create mode 100644 Ausgabenverwaltung.sln create mode 100644 src/Ausgabenverwaltung.cpp create mode 100644 src/Ausgabenverwaltung.vcxproj create mode 100644 src/Ausgabenverwaltung.vcxproj.filters diff --git a/Ausgabenverwaltung.sln b/Ausgabenverwaltung.sln new file mode 100644 index 0000000..0904d80 --- /dev/null +++ b/Ausgabenverwaltung.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.28307.136 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Ausgabenverwaltung", "src\Ausgabenverwaltung.vcxproj", "{4F5B54A0-D780-4460-B567-2D4D9FFCC8E2}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {4F5B54A0-D780-4460-B567-2D4D9FFCC8E2}.Debug|x64.ActiveCfg = Debug|x64 + {4F5B54A0-D780-4460-B567-2D4D9FFCC8E2}.Debug|x64.Build.0 = Debug|x64 + {4F5B54A0-D780-4460-B567-2D4D9FFCC8E2}.Debug|x86.ActiveCfg = Debug|Win32 + {4F5B54A0-D780-4460-B567-2D4D9FFCC8E2}.Debug|x86.Build.0 = Debug|Win32 + {4F5B54A0-D780-4460-B567-2D4D9FFCC8E2}.Release|x64.ActiveCfg = Release|x64 + {4F5B54A0-D780-4460-B567-2D4D9FFCC8E2}.Release|x64.Build.0 = Release|x64 + {4F5B54A0-D780-4460-B567-2D4D9FFCC8E2}.Release|x86.ActiveCfg = Release|Win32 + {4F5B54A0-D780-4460-B567-2D4D9FFCC8E2}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {108AF021-ACF1-4E3C-8456-D199D829EFBB} + EndGlobalSection +EndGlobal diff --git a/src/Ausgabenverwaltung.cpp b/src/Ausgabenverwaltung.cpp new file mode 100644 index 0000000..c8cc116 --- /dev/null +++ b/src/Ausgabenverwaltung.cpp @@ -0,0 +1,6 @@ +#include + +int main() +{ + std::cout << "Hello World!\n"; +} \ No newline at end of file diff --git a/src/Ausgabenverwaltung.vcxproj b/src/Ausgabenverwaltung.vcxproj new file mode 100644 index 0000000..1f0f11f --- /dev/null +++ b/src/Ausgabenverwaltung.vcxproj @@ -0,0 +1,159 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {4F5B54A0-D780-4460-B567-2D4D9FFCC8E2} + Win32Proj + Ausgabenverwaltung + 10.0.17134.0 + + + + Application + true + v141 + Unicode + + + Application + false + v141 + true + Unicode + + + Application + true + v141 + Unicode + + + Application + false + v141 + true + Unicode + + + + + + + + + + + + + + + + + + + + + true + + + true + + + false + + + false + + + + Use + Level3 + Disabled + true + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + pch.h + + + Console + true + + + + + NotUsing + Level3 + Disabled + true + _DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + pch.h + + + Console + true + + + + + Use + Level3 + MaxSpeed + true + true + true + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + pch.h + + + Console + true + true + true + + + + + Use + Level3 + MaxSpeed + true + true + true + NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + pch.h + + + Console + true + true + true + + + + + + + + + \ No newline at end of file diff --git a/src/Ausgabenverwaltung.vcxproj.filters b/src/Ausgabenverwaltung.vcxproj.filters new file mode 100644 index 0000000..4a0a795 --- /dev/null +++ b/src/Ausgabenverwaltung.vcxproj.filters @@ -0,0 +1,22 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + + + Quelldateien + + + \ No newline at end of file