From c067a51ae2c82177b1f7d18156c0705156e5fa33 Mon Sep 17 00:00:00 2001
From: Jeremy Kuhne <jkuhne@microsoft.com>
Date: Mon, 5 Feb 2024 10:59:34 -0800
Subject: [PATCH] Remove empty folder

---
 src/thirtytwo/thirtytwo.csproj | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/src/thirtytwo/thirtytwo.csproj b/src/thirtytwo/thirtytwo.csproj
index 9fd524d..1cdf815 100644
--- a/src/thirtytwo/thirtytwo.csproj
+++ b/src/thirtytwo/thirtytwo.csproj
@@ -6,6 +6,12 @@
     <Win32Manifest>Resources\comctl6.manifest</Win32Manifest>
   </PropertyGroup>
 
+  <ItemGroup>
+    <Compile Remove="GdiPlus\**" />
+    <EmbeddedResource Remove="GdiPlus\**" />
+    <None Remove="GdiPlus\**" />
+  </ItemGroup>
+
   <ItemGroup>
     <PackageReference Include="Microsoft.Windows.CsWin32" Version="0.3.83-beta">
       <PrivateAssets>all</PrivateAssets>
@@ -18,8 +24,4 @@
     <PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.0.0" />
   </ItemGroup>
 
-  <ItemGroup>
-    <Folder Include="GdiPlus\" />
-  </ItemGroup>
-
 </Project>