Config: exclude receipts folder from compilation

Added wwwroot/receipts to compilation exclusions to prevent build warnings
and improve build performance. Receipt files are user-uploaded content and
should not be included in the build process.
This commit is contained in:
AJ
2025-11-16 11:54:07 -05:00
parent 0a15d09db4
commit 51c2ce2965

View File

@@ -8,9 +8,13 @@
<ItemGroup> <ItemGroup>
<Compile Remove="Utility\**" /> <Compile Remove="Utility\**" />
<Compile Remove="wwwroot\receipts\**" />
<Content Remove="Utility\**" /> <Content Remove="Utility\**" />
<Content Remove="wwwroot\receipts\**" />
<EmbeddedResource Remove="Utility\**" /> <EmbeddedResource Remove="Utility\**" />
<EmbeddedResource Remove="wwwroot\receipts\**" />
<None Remove="Utility\**" /> <None Remove="Utility\**" />
<None Remove="wwwroot\receipts\**" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
@@ -27,7 +31,6 @@
<ItemGroup> <ItemGroup>
<Folder Include="Migrations\" /> <Folder Include="Migrations\" />
<Folder Include="wwwroot\receipts\" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>