diff --git a/ConsoleApplicationTest1/ConsoleApplicationTest1.cpp b/ConsoleApplicationTest1/ConsoleApplicationTest1.cpp new file mode 100644 index 0000000..9ff03f7 --- /dev/null +++ b/ConsoleApplicationTest1/ConsoleApplicationTest1.cpp @@ -0,0 +1,21 @@ +// ConsoleApplicationTest1.cpp : This file contains the 'main' function. Program execution begins and ends there. +// + +#include "pch.h" +#include + +int main() +{ + std::cout << "Hello World!\n"; +} + +// Run program: Ctrl + F5 or Debug > Start Without Debugging menu +// Debug program: F5 or Debug > Start Debugging menu + +// Tips for Getting Started: +// 1. Use the Solution Explorer window to add/manage files +// 2. Use the Team Explorer window to connect to source control +// 3. Use the Output window to see build output and other messages +// 4. Use the Error List window to view errors +// 5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project +// 6. In the future, to open this project again, go to File > Open > Project and select the .sln file diff --git a/ConsoleApplicationTest1/ConsoleApplicationTest1.vcxproj b/ConsoleApplicationTest1/ConsoleApplicationTest1.vcxproj new file mode 100644 index 0000000..9869e23 --- /dev/null +++ b/ConsoleApplicationTest1/ConsoleApplicationTest1.vcxproj @@ -0,0 +1,168 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 15.0 + {2FA55AE6-BB63-4C25-A13C-FBA544B9128C} + Win32Proj + ConsoleApplicationTest1 + 10.0.17763.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 + + + + + Use + 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 + + + + + + + + + Create + Create + Create + Create + + + + + + \ No newline at end of file diff --git a/ConsoleApplicationTest1/ConsoleApplicationTest1.vcxproj.filters b/ConsoleApplicationTest1/ConsoleApplicationTest1.vcxproj.filters new file mode 100644 index 0000000..0e54dc7 --- /dev/null +++ b/ConsoleApplicationTest1/ConsoleApplicationTest1.vcxproj.filters @@ -0,0 +1,30 @@ + + + + + {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 + + + + + Header Files + + + + + Source Files + + + Source Files + + + \ No newline at end of file diff --git a/ConsoleApplicationTest1/pch.cpp b/ConsoleApplicationTest1/pch.cpp new file mode 100644 index 0000000..3a3d12b --- /dev/null +++ b/ConsoleApplicationTest1/pch.cpp @@ -0,0 +1,5 @@ +// pch.cpp: source file corresponding to pre-compiled header; necessary for compilation to succeed + +#include "pch.h" + +// In general, ignore this file, but keep it around if you are using pre-compiled headers. diff --git a/ConsoleApplicationTest1/pch.h b/ConsoleApplicationTest1/pch.h new file mode 100644 index 0000000..b04e71e --- /dev/null +++ b/ConsoleApplicationTest1/pch.h @@ -0,0 +1,14 @@ +// Tips for Getting Started: +// 1. Use the Solution Explorer window to add/manage files +// 2. Use the Team Explorer window to connect to source control +// 3. Use the Output window to see build output and other messages +// 4. Use the Error List window to view errors +// 5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project +// 6. In the future, to open this project again, go to File > Open > Project and select the .sln file + +#ifndef PCH_H +#define PCH_H + +// TODO: add headers that you want to pre-compile here + +#endif //PCH_H diff --git a/ConsoleSolutionTest1.sln b/ConsoleSolutionTest1.sln new file mode 100644 index 0000000..e156667 --- /dev/null +++ b/ConsoleSolutionTest1.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.28307.421 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ConsoleApplicationTest1", "ConsoleApplicationTest1\ConsoleApplicationTest1.vcxproj", "{2FA55AE6-BB63-4C25-A13C-FBA544B9128C}" +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 + {2FA55AE6-BB63-4C25-A13C-FBA544B9128C}.Debug|x64.ActiveCfg = Debug|x64 + {2FA55AE6-BB63-4C25-A13C-FBA544B9128C}.Debug|x64.Build.0 = Debug|x64 + {2FA55AE6-BB63-4C25-A13C-FBA544B9128C}.Debug|x86.ActiveCfg = Debug|Win32 + {2FA55AE6-BB63-4C25-A13C-FBA544B9128C}.Debug|x86.Build.0 = Debug|Win32 + {2FA55AE6-BB63-4C25-A13C-FBA544B9128C}.Release|x64.ActiveCfg = Release|x64 + {2FA55AE6-BB63-4C25-A13C-FBA544B9128C}.Release|x64.Build.0 = Release|x64 + {2FA55AE6-BB63-4C25-A13C-FBA544B9128C}.Release|x86.ActiveCfg = Release|Win32 + {2FA55AE6-BB63-4C25-A13C-FBA544B9128C}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {E05AE1AA-C074-4CEF-A240-68FEBF9A1B7D} + EndGlobalSection +EndGlobal