Merge pull request #1 from ashstrahle/Ash
Put PlayingCardLibrary in separate project
This commit was merged in pull request #1.
This commit is contained in:
9
PlayCardsLibrary/PlayCardsLibrary.csproj
Normal file
9
PlayCardsLibrary/PlayCardsLibrary.csproj
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>net6.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
namespace PlayingCards
|
namespace PlayingCardsLibrary
|
||||||
{
|
{
|
||||||
public enum Suit { Spades, Clubs, Diamonds, Hearts }
|
public enum Suit { Spades, Clubs, Diamonds, Hearts }
|
||||||
|
|
||||||
@@ -5,6 +5,8 @@ VisualStudioVersion = 25.0.1700.0
|
|||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StripJackNaked", "StripJackNaked\StripJackNaked.csproj", "{FD2FB25C-F802-4614-8B99-DF92BF48F6DC}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StripJackNaked", "StripJackNaked\StripJackNaked.csproj", "{FD2FB25C-F802-4614-8B99-DF92BF48F6DC}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PlayCardsLibrary", "PlayCardsLibrary\PlayCardsLibrary.csproj", "{402391E4-2DAE-441F-A0DF-C919420C4802}"
|
||||||
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Any CPU = Debug|Any CPU
|
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}.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.ActiveCfg = Release|Any CPU
|
||||||
{FD2FB25C-F802-4614-8B99-DF92BF48F6DC}.Release|Any CPU.Build.0 = 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
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
using PlayingCards;
|
using PlayingCardsLibrary;
|
||||||
|
|
||||||
namespace StripJackNaked
|
namespace StripJackNaked
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -7,4 +7,7 @@
|
|||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\PlayCardsLibrary\PlayCardsLibrary.csproj" />
|
||||||
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
Reference in New Issue
Block a user