Merge branch 'v-sruspasari/dotnet8_migration' of https://github.com/dotnet-architecture/eShopOnWeb into v-sruspasari/dotnet8_migration
This commit is contained in:
2
.github/workflows/dotnetcore.yml
vendored
2
.github/workflows/dotnetcore.yml
vendored
@@ -12,7 +12,7 @@ jobs:
|
|||||||
- name: Setup .NET
|
- name: Setup .NET
|
||||||
uses: actions/setup-dotnet@v1
|
uses: actions/setup-dotnet@v1
|
||||||
with:
|
with:
|
||||||
dotnet-version: '7.0.x'
|
dotnet-version: '8.0.x'
|
||||||
include-prerelease: true
|
include-prerelease: true
|
||||||
|
|
||||||
- name: Build with dotnet
|
- name: Build with dotnet
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ using Microsoft.eShopWeb.ApplicationCore.Entities.BasketAggregate;
|
|||||||
|
|
||||||
namespace Microsoft.eShopWeb.ApplicationCore.Specifications;
|
namespace Microsoft.eShopWeb.ApplicationCore.Specifications;
|
||||||
|
|
||||||
public sealed class BasketWithItemsSpecification : Specification<Basket>, ISingleResultSpecification
|
public sealed class BasketWithItemsSpecification : Specification<Basket>
|
||||||
{
|
{
|
||||||
public BasketWithItemsSpecification(int basketId)
|
public BasketWithItemsSpecification(int basketId)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ using Microsoft.eShopWeb.ApplicationCore.Entities.OrderAggregate;
|
|||||||
|
|
||||||
namespace Microsoft.eShopWeb.ApplicationCore.Specifications;
|
namespace Microsoft.eShopWeb.ApplicationCore.Specifications;
|
||||||
|
|
||||||
public class OrderWithItemsByIdSpec : Specification<Order>, ISingleResultSpecification
|
public class OrderWithItemsByIdSpec : Specification<Order>
|
||||||
{
|
{
|
||||||
public OrderWithItemsByIdSpec(int orderId)
|
public OrderWithItemsByIdSpec(int orderId)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user