19 lines
719 B
XML
19 lines
719 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Azure.Identity" Version="1.17.1" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.3.0" />
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.1" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\Application\WorkFlow.Application\WorkFlow.Application.csproj" />
|
|
<ProjectReference Include="..\WorkFlow.Infrastructure.EfCore\WorkFlow.Infrastructure.EfCore.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|