Browse Source

Merge pull request #296 from saschagottfried/clean-up-applicationcore

Remove references to "Microsoft.EntityFrameworkCore.*" in eShopOnWeb.ApplicationCore
main
Eric Fleming 6 years ago
committed by GitHub
parent
commit
1cc0e51d16
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      src/ApplicationCore/ApplicationCore.csproj
  2. 3
      src/ApplicationCore/Entities/OrderAggregate/Address.cs
  3. 1
      src/ApplicationCore/Entities/OrderAggregate/CatalogItemOrdered.cs

1
src/ApplicationCore/ApplicationCore.csproj

@ -7,7 +7,6 @@
<ItemGroup> <ItemGroup>
<PackageReference Include="Ardalis.GuardClauses" Version="1.2.9" /> <PackageReference Include="Ardalis.GuardClauses" Version="1.2.9" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Abstractions" Version="2.2.6" />
<PackageReference Include="System.Security.Claims" Version="4.3.0" /> <PackageReference Include="System.Security.Claims" Version="4.3.0" />
</ItemGroup> </ItemGroup>

3
src/ApplicationCore/Entities/OrderAggregate/Address.cs

@ -1,5 +1,4 @@
using Microsoft.EntityFrameworkCore; using System;
using System;
namespace Microsoft.eShopWeb.ApplicationCore.Entities.OrderAggregate namespace Microsoft.eShopWeb.ApplicationCore.Entities.OrderAggregate
{ {

1
src/ApplicationCore/Entities/OrderAggregate/CatalogItemOrdered.cs

@ -1,5 +1,4 @@
using Ardalis.GuardClauses; using Ardalis.GuardClauses;
using Microsoft.EntityFrameworkCore;
namespace Microsoft.eShopWeb.ApplicationCore.Entities.OrderAggregate namespace Microsoft.eShopWeb.ApplicationCore.Entities.OrderAggregate
{ {

Loading…
Cancel
Save