Put PlayingCardLibrary in separate project #1

Merged
ashstrahle merged 1 commits from Ash into main 2022-08-12 17:04:40 +10:00
5 changed files with 20 additions and 2 deletions
Showing only changes of commit 112127ee9d - Show all commits

View File

@@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

View File

@@ -1,4 +1,4 @@
namespace PlayingCards
namespace PlayingCardsLibrary
{
public enum Suit { Spades, Clubs, Diamonds, Hearts }

View File

@@ -5,6 +5,8 @@ VisualStudioVersion = 25.0.1700.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StripJackNaked", "StripJackNaked\StripJackNaked.csproj", "{FD2FB25C-F802-4614-8B99-DF92BF48F6DC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PlayCardsLibrary", "PlayCardsLibrary\PlayCardsLibrary.csproj", "{402391E4-2DAE-441F-A0DF-C919420C4802}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -15,6 +17,10 @@ Global
{FD2FB25C-F802-4614-8B99-DF92BF48F6DC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FD2FB25C-F802-4614-8B99-DF92BF48F6DC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FD2FB25C-F802-4614-8B99-DF92BF48F6DC}.Release|Any CPU.Build.0 = Release|Any CPU
{402391E4-2DAE-441F-A0DF-C919420C4802}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{402391E4-2DAE-441F-A0DF-C919420C4802}.Debug|Any CPU.Build.0 = Debug|Any CPU
{402391E4-2DAE-441F-A0DF-C919420C4802}.Release|Any CPU.ActiveCfg = Release|Any CPU
{402391E4-2DAE-441F-A0DF-C919420C4802}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE

View File

@@ -1,4 +1,4 @@
using PlayingCards;
using PlayingCardsLibrary;
namespace StripJackNaked
{

View File

@@ -7,4 +7,7 @@
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\PlayCardsLibrary\PlayCardsLibrary.csproj" />
</ItemGroup>
</Project>