28 lines
1.1 KiB
XML
28 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<OutputPath>../LFlow_Bin/Services/</OutputPath>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
<UseCommonOutputDirectory>true</UseCommonOutputDirectory>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Mapster" Version="7.4.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.1" />
|
|
<PackageReference Include="SQLite" Version="3.13.0" />
|
|
<PackageReference Include="SqlSugarCore" Version="5.1.4.169" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.8.1" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="6.8.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\LFlow\LFlow.Base.csproj" />
|
|
<ProjectReference Include="..\LFlow.Interfaces\LFlow.Interfaces.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|