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>
|
<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>
|
||||||
|
|||||||
Reference in New Issue
Block a user