diff --git a/Qwirkle/Qwirkle.sln b/Qwirkle/Qwirkle.sln index 25066b3..63d5103 100644 --- a/Qwirkle/Qwirkle.sln +++ b/Qwirkle/Qwirkle.sln @@ -3,7 +3,11 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.8.34330.188 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Qwirkle", "Qwirkle\Qwirkle.csproj", "{DCE2FAE9-9A3A-452E-AFB1-BE3DC5E62BDF}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Qwirkle", "Qwirkle\Qwirkle.csproj", "{DCE2FAE9-9A3A-452E-AFB1-BE3DC5E62BDF}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "QwirkleClassLibrary", "QwirkleClassLibrary\QwirkleClassLibrary.csproj", "{75739BB2-4DF5-4282-A7AF-0092E69DBDEC}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "QwirkleConsoleApp", "QwirkleConsoleApp\QwirkleConsoleApp.csproj", "{E981D8B4-8768-4055-91DB-0DD3E5FDE29B}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -17,6 +21,14 @@ Global {DCE2FAE9-9A3A-452E-AFB1-BE3DC5E62BDF}.Release|Any CPU.ActiveCfg = Release|Any CPU {DCE2FAE9-9A3A-452E-AFB1-BE3DC5E62BDF}.Release|Any CPU.Build.0 = Release|Any CPU {DCE2FAE9-9A3A-452E-AFB1-BE3DC5E62BDF}.Release|Any CPU.Deploy.0 = Release|Any CPU + {75739BB2-4DF5-4282-A7AF-0092E69DBDEC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {75739BB2-4DF5-4282-A7AF-0092E69DBDEC}.Debug|Any CPU.Build.0 = Debug|Any CPU + {75739BB2-4DF5-4282-A7AF-0092E69DBDEC}.Release|Any CPU.ActiveCfg = Release|Any CPU + {75739BB2-4DF5-4282-A7AF-0092E69DBDEC}.Release|Any CPU.Build.0 = Release|Any CPU + {E981D8B4-8768-4055-91DB-0DD3E5FDE29B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E981D8B4-8768-4055-91DB-0DD3E5FDE29B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E981D8B4-8768-4055-91DB-0DD3E5FDE29B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E981D8B4-8768-4055-91DB-0DD3E5FDE29B}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Qwirkle/QwirkleClassLibrary/Class1.cs b/Qwirkle/QwirkleClassLibrary/Class1.cs new file mode 100644 index 0000000..ff018f9 --- /dev/null +++ b/Qwirkle/QwirkleClassLibrary/Class1.cs @@ -0,0 +1,7 @@ +namespace QwirkleClassLibrary +{ + public class Class1 + { + + } +} diff --git a/Qwirkle/QwirkleClassLibrary/QwirkleClassLibrary.csproj b/Qwirkle/QwirkleClassLibrary/QwirkleClassLibrary.csproj new file mode 100644 index 0000000..fa71b7a --- /dev/null +++ b/Qwirkle/QwirkleClassLibrary/QwirkleClassLibrary.csproj @@ -0,0 +1,9 @@ + + + + net8.0 + enable + enable + + + diff --git a/Qwirkle/QwirkleConsoleApp/Program.cs b/Qwirkle/QwirkleConsoleApp/Program.cs new file mode 100644 index 0000000..0406af4 --- /dev/null +++ b/Qwirkle/QwirkleConsoleApp/Program.cs @@ -0,0 +1,3 @@ +using QwirkleClassLibrary; + +Console.WriteLine("Hello, World!"); diff --git a/Qwirkle/QwirkleConsoleApp/QwirkleConsoleApp.csproj b/Qwirkle/QwirkleConsoleApp/QwirkleConsoleApp.csproj new file mode 100644 index 0000000..93e2829 --- /dev/null +++ b/Qwirkle/QwirkleConsoleApp/QwirkleConsoleApp.csproj @@ -0,0 +1,14 @@ + + + + Exe + net8.0 + enable + enable + + + + + + +