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.
43 lines
1.4 KiB
XML
43 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<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>
|
|
<PackageReference Include="CsvHelper" Version="33.1.0" />
|
|
<PackageReference Include="Magick.NET-Q16-AnyCPU" Version="14.8.2" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.9" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.9" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.9">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="PdfPig" Version="0.1.11" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Migrations\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="Prompts\**\*">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|