You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
1.3 KiB

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AutoMapper" Version="11.0.1" />
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="11.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.2" />
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="6.0.1" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
<PackageReference Include="Duende.IdentityServer" Version="6.0.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Easy.Api\Easy.DDD.Application.csproj" />
<ProjectReference Include="..\..\src\Easy.DDD.Domain\Easy.DDD.Domain.csproj" />
<ProjectReference Include="..\..\src\Easy.Guids\Easy.Guids.csproj" />
<ProjectReference Include="..\..\src\Easy.Result\Easy.Result.csproj" />
<ProjectReference Include="..\..\src\Easy.Specifications\Easy.Specifications.csproj" />
<ProjectReference Include="..\..\src\Easy.Uow\Easy.Uow.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="EF\" />
<Folder Include="DDD\" />
</ItemGroup>
</Project>