Skip to content

Commit

Permalink
Changed csproj's to have pbd and dll file in one
Browse files Browse the repository at this point in the history
  • Loading branch information
12Acorns committed Jul 30, 2024
1 parent b5b33bd commit 0863a88
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CardDeck/Deck.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,12 @@
<Nullable>enable</Nullable>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup>

</Project>
8 changes: 8 additions & 0 deletions GameLoader/GameLoader.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,12 @@
<Nullable>enable</Nullable>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup>

</Project>
10 changes: 9 additions & 1 deletion GameOne/GameOne.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,17 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FastEnum" Version="1.8.0"/>
<PackageReference Include="FastEnum" Version="1.8.0" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 0863a88

Please sign in to comment.