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:
@@ -8,9 +8,13 @@
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Remove="Utility\**" />
|
||||
<Compile Remove="wwwroot\receipts\**" />
|
||||
<Content Remove="Utility\**" />
|
||||
<Content Remove="wwwroot\receipts\**" />
|
||||
<EmbeddedResource Remove="Utility\**" />
|
||||
<EmbeddedResource Remove="wwwroot\receipts\**" />
|
||||
<None Remove="Utility\**" />
|
||||
<None Remove="wwwroot\receipts\**" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
@@ -27,7 +31,6 @@
|
||||
|
||||
<ItemGroup>
|
||||
<Folder Include="Migrations\" />
|
||||
<Folder Include="wwwroot\receipts\" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
||||
Reference in New Issue
Block a user