diff --git a/PlayCardsLibrary/PlayCardsLibrary.csproj b/PlayCardsLibrary/PlayCardsLibrary.csproj
new file mode 100644
index 0000000..bafd05b
--- /dev/null
+++ b/PlayCardsLibrary/PlayCardsLibrary.csproj
@@ -0,0 +1,9 @@
+
+
+
+ net6.0
+ enable
+ enable
+
+
+
diff --git a/StripJackNaked/PlayingCards.cs b/PlayCardsLibrary/PlayingCards.cs
similarity index 98%
rename from StripJackNaked/PlayingCards.cs
rename to PlayCardsLibrary/PlayingCards.cs
index 5b44a3f..48dc9ff 100644
--- a/StripJackNaked/PlayingCards.cs
+++ b/PlayCardsLibrary/PlayingCards.cs
@@ -1,4 +1,4 @@
-namespace PlayingCards
+namespace PlayingCardsLibrary
{
public enum Suit { Spades, Clubs, Diamonds, Hearts }
diff --git a/StripJackNaked.sln b/StripJackNaked.sln
index db84260..f92ee39 100644
--- a/StripJackNaked.sln
+++ b/StripJackNaked.sln
@@ -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
diff --git a/StripJackNaked/Program.cs b/StripJackNaked/Program.cs
index b105494..e03dd7d 100644
--- a/StripJackNaked/Program.cs
+++ b/StripJackNaked/Program.cs
@@ -1,4 +1,4 @@
-using PlayingCards;
+using PlayingCardsLibrary;
namespace StripJackNaked
{
diff --git a/StripJackNaked/StripJackNaked.csproj b/StripJackNaked/StripJackNaked.csproj
index 40c60dd..4edc192 100644
--- a/StripJackNaked/StripJackNaked.csproj
+++ b/StripJackNaked/StripJackNaked.csproj
@@ -7,4 +7,7 @@
enable
+
+
+