Files
EmailBill/WebApi/WebApi.csproj

38 lines
1.2 KiB
XML
Raw Normal View History

2025-12-25 11:20:56 +08:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<ItemGroup>
<PackageReference Include="FreeSql.Extensions.JsonMap" />
2025-12-25 13:27:23 +08:00
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" />
2025-12-25 11:20:56 +08:00
<PackageReference Include="Microsoft.AspNetCore.OpenApi" />
<PackageReference Include="Scalar.AspNetCore" />
<PackageReference Include="FreeSql.Provider.Sqlite" />
<PackageReference Include="Serilog.AspNetCore" />
</ItemGroup>
<ItemGroup>
2026-02-10 17:49:19 +08:00
<ProjectReference Include="..\Application\Application.csproj" />
2025-12-25 11:20:56 +08:00
<ProjectReference Include="..\Service\Service.csproj" />
<ProjectReference Include="..\Common\Common.csproj" />
<ProjectReference Include="..\Repository\Repository.csproj" />
</ItemGroup>
<ItemGroup>
<Content Include="wwwroot\**\*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
2025-12-29 20:30:15 +08:00
<ItemGroup>
2025-12-29 20:51:20 +08:00
<!-- 禁用默认的 Content 包含,然后显式添加 Resources 文件 -->
<Content Remove="Resources\**" />
<Content Include="Resources\*">
2025-12-29 20:30:15 +08:00
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
2025-12-25 11:20:56 +08:00
<ItemGroup>
<Watch Remove="logs/**" />
</ItemGroup>
</Project>