Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pull changes from 'master' #40

Merged
merged 24 commits into from
Dec 26, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
b75b759
Added code comments to Game.cs
SpaceBeeGaming Dec 14, 2021
fd521e3
Added code comments to Program.cs
SpaceBeeGaming Dec 14, 2021
d1b8dc5
Added code comments to GameBoard.cs
SpaceBeeGaming Dec 14, 2021
01fa5e2
Added code comments to GameBoard.Console.cs
SpaceBeeGaming Dec 14, 2021
3407685
Merge pull request #31 from SpaceBeeGaming/add-code-comments
SpaceBeeGaming Dec 14, 2021
6cec4ae
Moved statistics printout to Main()
SpaceBeeGaming Dec 14, 2021
3cf4053
Merge pull request #32 from SpaceBeeGaming/move-statistics-printout
SpaceBeeGaming Dec 14, 2021
5bafb9f
Miscellaneous small changes.
SpaceBeeGaming Dec 16, 2021
679a91a
Fixed broken newline.
SpaceBeeGaming Dec 16, 2021
613ae95
Merge pull request #33 from SpaceBeeGaming/misc-changes
SpaceBeeGaming Dec 16, 2021
bcf5df2
Fixed Numpad Row Inversion on Linux.
SpaceBeeGaming Dec 26, 2021
b988eef
Merge pull request #34 from SpaceBeeGaming/fix-linux-numpad
SpaceBeeGaming Dec 26, 2021
d91b09a
Changed alternate input activation key.
SpaceBeeGaming Dec 26, 2021
d1dc6db
Merge pull request #35 from SpaceBeeGaming/fix-alternate-input
SpaceBeeGaming Dec 26, 2021
9c8af1c
Added Linux Debug configuration
SpaceBeeGaming Dec 26, 2021
f1546ac
Merge pull request #36 from SpaceBeeGaming/add-debug-configuration
SpaceBeeGaming Dec 26, 2021
1a5c28f
Fixed comment
SpaceBeeGaming Dec 26, 2021
ffc67b3
Merge pull request #37 from SpaceBeeGaming/add-code-comments
SpaceBeeGaming Dec 26, 2021
39a9603
Roll Version Number.
SpaceBeeGaming Dec 26, 2021
03fbae6
Merge pull request #38 from SpaceBeeGaming/SpaceBeeGaming-patch-1
SpaceBeeGaming Dec 26, 2021
3529479
Remove Linux Publish Profile
SpaceBeeGaming Dec 26, 2021
c185f2f
Removed Linux Build Configuration
SpaceBeeGaming Dec 26, 2021
93cff4b
Removed hack around different behavior of ReadKey()
SpaceBeeGaming Dec 26, 2021
bb6c804
Merge pull request #39 from SpaceBeeGaming/drop-linux-support
SpaceBeeGaming Dec 26, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Removed Linux Build Configuration
  • Loading branch information
SpaceBeeGaming committed Dec 26, 2021
commit c185f2fc1b15abe7f7b85d0169d998551c9ab95e
6 changes: 0 additions & 6 deletions TicTacToe.sln
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
LinuxDebug|x64 = LinuxDebug|x64
LinuxDebug|x86 = LinuxDebug|x86
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
Expand All @@ -21,10 +19,6 @@ Global
{444BC28D-AF1B-4679-8245-4D3158BFAD44}.Debug|x64.Build.0 = Debug|x64
{444BC28D-AF1B-4679-8245-4D3158BFAD44}.Debug|x86.ActiveCfg = Debug|x86
{444BC28D-AF1B-4679-8245-4D3158BFAD44}.Debug|x86.Build.0 = Debug|x86
{444BC28D-AF1B-4679-8245-4D3158BFAD44}.LinuxDebug|x64.ActiveCfg = LinuxDebug|x64
{444BC28D-AF1B-4679-8245-4D3158BFAD44}.LinuxDebug|x64.Build.0 = LinuxDebug|x64
{444BC28D-AF1B-4679-8245-4D3158BFAD44}.LinuxDebug|x86.ActiveCfg = LinuxDebug|x86
{444BC28D-AF1B-4679-8245-4D3158BFAD44}.LinuxDebug|x86.Build.0 = LinuxDebug|x86
{444BC28D-AF1B-4679-8245-4D3158BFAD44}.Release|x64.ActiveCfg = Release|x64
{444BC28D-AF1B-4679-8245-4D3158BFAD44}.Release|x64.Build.0 = Release|x64
{444BC28D-AF1B-4679-8245-4D3158BFAD44}.Release|x86.ActiveCfg = Release|x86
Expand Down
9 changes: 1 addition & 8 deletions TicTacToe/TicTacToe.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,25 +25,18 @@
<RepositoryUrl>https://github.com/SpaceBeeGaming/TicTacToe</RepositoryUrl>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<Description>Tic-Tac-Toe Playable in terminal.</Description>
<Configurations>Debug;Release;LinuxDebug</Configurations>
<Configurations>Debug;Release</Configurations>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<DefineConstants>$(DefineConstants);TRACE</DefineConstants>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LinuxDebug|x64'">
<DefineConstants>$(DefineConstants);TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<DefineConstants>$(DefineConstants);TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
<DefineConstants>$(DefineConstants);TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LinuxDebug|x86'">
<DefineConstants>$(DefineConstants);TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
<DefineConstants>$(DefineConstants);TRACE</DefineConstants>
</PropertyGroup>
Expand Down