2025-11-21 08:48:01 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="MessagePack" Version="3.1.4" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2026-03-13 15:41:13 +08:00
|
|
|
|
<ProjectReference Include="..\BLWLogProduce\BLWLogProduce.csproj" />
|
2025-11-21 08:48:01 +08:00
|
|
|
|
<ProjectReference Include="..\CommonEntity\CommonEntity.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\CommonTools\CommonTools.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|