2024-10-10 17:05:35 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
2024-10-09 14:45:09 +08:00
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
2024-10-09 16:46:49 +08:00
|
|
|
|
<OutputPath>../LFlow_Bin/</OutputPath>
|
2024-10-09 14:45:09 +08:00
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-10-31 15:00:29 +08:00
|
|
|
|
<PackageReference Include="Mapster" Version="7.4.1-pre01" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.0-rc.2.24473.5" />
|
|
|
|
|
|
<PackageReference Include="Serilog" Version="4.1.1-dev-02318" />
|
|
|
|
|
|
<PackageReference Include="Serilog.AspNetCore" Version="8.0.3" />
|
2024-10-10 17:05:35 +08:00
|
|
|
|
<PackageReference Include="Serilog.Extensions.Hosting" Version="8.0.0" />
|
|
|
|
|
|
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
|
2024-10-09 14:45:09 +08:00
|
|
|
|
<PackageReference Include="SQLite" Version="3.13.0" />
|
2024-10-31 15:00:29 +08:00
|
|
|
|
<PackageReference Include="SqlSugarCore" Version="5.1.4.171-preview03" />
|
|
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.9.0" />
|
|
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="6.9.0" />
|
2024-10-09 14:45:09 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2024-10-18 11:30:41 +08:00
|
|
|
|
<ItemGroup>
|
2024-10-18 11:31:15 +08:00
|
|
|
|
<Folder Include="wwwroot\" />
|
2024-10-18 11:30:41 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2024-10-31 10:38:21 +08:00
|
|
|
|
<ItemGroup>
|
2024-10-31 11:41:49 +08:00
|
|
|
|
<ProjectReference Include="..\LFlow.InternalEventBus\LFlow.InternalEventBus.csproj" />
|
2024-10-31 10:38:21 +08:00
|
|
|
|
<ProjectReference Include="..\LFlow.Middleware\LFlow.Middleware.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2024-10-09 14:45:09 +08:00
|
|
|
|
</Project>
|