24 lines
616 B
XML
24 lines
616 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Helpers\" />
|
|
<Folder Include="Redis\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="FreeRedis" Version="1.4.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\LearningOfficer.OA.Common\LearningOfficer.OA.Common.csproj" />
|
|
<ProjectReference Include="..\LearningOfficer.OA.Core\LearningOfficer.OA.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|