diff options
| author | TheOtherTonyStark <[email protected]> | 2022-10-09 13:29:20 -0700 |
|---|---|---|
| committer | TheOtherTonyStark <[email protected]> | 2022-10-09 13:29:20 -0700 |
| commit | 218f500efd7789a409e4f0bd8e5f7a6b92638b56 (patch) | |
| tree | 9e0cde0e8c6cf693fbf0cb58265adfea32d5d7b4 | |
| parent | Second Changes (diff) | |
| download | cst116-ch7-debugging-theothertonystark-218f500efd7789a409e4f0bd8e5f7a6b92638b56.tar.xz cst116-ch7-debugging-theothertonystark-218f500efd7789a409e4f0bd8e5f7a6b92638b56.zip | |
Third Changes
| -rw-r--r-- | CST116-Ch7-Debugging/CST116-Ch7-Debugging-Solution.txt | 5 | ||||
| -rw-r--r-- | CST116-Ch7-Debugging/CST116-Ch7-Debugging.vcxproj | 3 | ||||
| -rw-r--r-- | CST116-Ch7-Debugging/CST116-Ch7-Debugging.vcxproj.filters | 5 |
3 files changed, 13 insertions, 0 deletions
diff --git a/CST116-Ch7-Debugging/CST116-Ch7-Debugging-Solution.txt b/CST116-Ch7-Debugging/CST116-Ch7-Debugging-Solution.txt new file mode 100644 index 0000000..0b02ee6 --- /dev/null +++ b/CST116-Ch7-Debugging/CST116-Ch7-Debugging-Solution.txt @@ -0,0 +1,5 @@ +Enter your age: 10 +Teenager + +C:\Users\cccha\Source\Repos\cst116-ch7-debugging-TheOtherTonyStark\CST116-Ch7-Debugging\x64\Debug\CST116-Ch7-Debugging-Chambers.exe (process 21608) exited with code 0. +To automatically close the console when debugging stops, enable Tools->Options->Debugging->Automatically close the console when debugging stops.
\ No newline at end of file diff --git a/CST116-Ch7-Debugging/CST116-Ch7-Debugging.vcxproj b/CST116-Ch7-Debugging/CST116-Ch7-Debugging.vcxproj index 0eb5f3b..559729a 100644 --- a/CST116-Ch7-Debugging/CST116-Ch7-Debugging.vcxproj +++ b/CST116-Ch7-Debugging/CST116-Ch7-Debugging.vcxproj @@ -130,6 +130,9 @@ <ItemGroup>
<ClCompile Include="CST116-Ch7-Debugging-Chambers.cpp" />
</ItemGroup>
+ <ItemGroup>
+ <Text Include="CST116-Ch7-Debugging-Solution.txt" />
+ </ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
diff --git a/CST116-Ch7-Debugging/CST116-Ch7-Debugging.vcxproj.filters b/CST116-Ch7-Debugging/CST116-Ch7-Debugging.vcxproj.filters index 20cd9fd..3b7b647 100644 --- a/CST116-Ch7-Debugging/CST116-Ch7-Debugging.vcxproj.filters +++ b/CST116-Ch7-Debugging/CST116-Ch7-Debugging.vcxproj.filters @@ -19,4 +19,9 @@ <Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
+ <ItemGroup>
+ <Text Include="CST116-Ch7-Debugging-Solution.txt">
+ <Filter>Source Files</Filter>
+ </Text>
+ </ItemGroup>
</Project>
\ No newline at end of file |