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.5 KiB

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<!--<Nullable>enable</Nullable>-->
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Compile Remove="keys\**" />
<Content Remove="keys\**" />
<EmbeddedResource Remove="keys\**" />
<None Remove="keys\**" />
</ItemGroup>
<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" />
3 years ago
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.3" />
<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" />
<PackageReference Include="Masa.Blazor" Version="0.3.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Easy.Api\Easy.DDD.Application.csproj" />
3 years ago
<ProjectReference Include="..\..\src\Easy.Authorization\Easy.Authorization.csproj" />
<ProjectReference Include="..\..\src\Easy.DDD.Domain\Easy.DDD.Domain.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>
</Project>