27 lines
730 B
XML
27 lines
730 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" />
|
|
<PackageReference Include="Scalar.AspNetCore" />
|
|
<PackageReference Include="FreeSql.Provider.Sqlite" />
|
|
<PackageReference Include="Serilog.AspNetCore" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<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>
|
|
|
|
<ItemGroup>
|
|
<Watch Remove="logs/**" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|