Files
bim-dogma-poc/ExcelKvPoC/ExcelKvPoC.csproj
2026-01-08 15:32:15 +09:00

21 lines
590 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Garnet" Version="1.0.35" />
<PackageReference Include="MiniExcel" Version="1.42.0" />
<PackageReference Include="StackExchange.Redis" Version="2.10.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ExcelKv.Core\ExcelKv.Core.csproj" />
</ItemGroup>
</Project>