21 lines
630 B
XML
21 lines
630 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AutoMapper" Version="16.1.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\FileService.Domain\FileService.Domain.csproj" />
|
|
<ProjectReference Include="..\IM.Application\IM.Application.csproj" />
|
|
<ProjectReference Include="..\IM.Commons\IM.Commons.csproj" />
|
|
<ProjectReference Include="..\IM.InitCommon\IM.InitCommon.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|