Files
mws.backend.dotnet/mws.application/mws.application.csproj
T

19 lines
490 B
XML
Raw Normal View History

2026-08-13 23:10:22 +07:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\mws.domain\mws.domain.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AutoMapper" Version="16.2.0" />
2026-08-13 23:12:57 +07:00
<PackageReference Include="MediatR" Version="14.2.0" />
2026-08-13 23:10:22 +07:00
</ItemGroup>
</Project>