An abp application module group that provides basic e-shop service.
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.
 
 
 

67 lines
4.3 KiB

# Paths
$packFolder = (Get-Item -Path "./" -Verbose).FullName
$rootFolder = Join-Path $packFolder "../"
# List of projects
$projects = (
"modules/EasyAbp.EShop.Baskets/src/EasyAbp.EShop.Baskets.Application",
"modules/EasyAbp.EShop.Baskets/src/EasyAbp.EShop.Baskets.Application.Contracts",
"modules/EasyAbp.EShop.Baskets/src/EasyAbp.EShop.Baskets.Domain",
"modules/EasyAbp.EShop.Baskets/src/EasyAbp.EShop.Baskets.Domain.Shared",
"modules/EasyAbp.EShop.Baskets/src/EasyAbp.EShop.Baskets.EntityFrameworkCore",
"modules/EasyAbp.EShop.Baskets/src/EasyAbp.EShop.Baskets.HttpApi",
"modules/EasyAbp.EShop.Baskets/src/EasyAbp.EShop.Baskets.HttpApi.Client",
"modules/EasyAbp.EShop.Baskets/src/EasyAbp.EShop.Baskets.MongoDB",
"modules/EasyAbp.EShop.Baskets/src/EasyAbp.EShop.Baskets.Web",
"modules/EasyAbp.EShop.Orders/src/EasyAbp.EShop.Orders.Application",
"modules/EasyAbp.EShop.Orders/src/EasyAbp.EShop.Orders.Application.Contracts",
"modules/EasyAbp.EShop.Orders/src/EasyAbp.EShop.Orders.Domain",
"modules/EasyAbp.EShop.Orders/src/EasyAbp.EShop.Orders.Domain.Shared",
"modules/EasyAbp.EShop.Orders/src/EasyAbp.EShop.Orders.EntityFrameworkCore",
"modules/EasyAbp.EShop.Orders/src/EasyAbp.EShop.Orders.HttpApi",
"modules/EasyAbp.EShop.Orders/src/EasyAbp.EShop.Orders.HttpApi.Client",
"modules/EasyAbp.EShop.Orders/src/EasyAbp.EShop.Orders.MongoDB",
"modules/EasyAbp.EShop.Orders/src/EasyAbp.EShop.Orders.Web",
"modules/EasyAbp.EShop.Payment/src/EasyAbp.EShop.Payments.Application",
"modules/EasyAbp.EShop.Payment/src/EasyAbp.EShop.Payments.Application.Contracts",
"modules/EasyAbp.EShop.Payment/src/EasyAbp.EShop.Payments.Domain",
"modules/EasyAbp.EShop.Payment/src/EasyAbp.EShop.Payments.Domain.Shared",
"modules/EasyAbp.EShop.Payment/src/EasyAbp.EShop.Payments.EntityFrameworkCore",
"modules/EasyAbp.EShop.Payment/src/EasyAbp.EShop.Payments.HttpApi",
"modules/EasyAbp.EShop.Payment/src/EasyAbp.EShop.Payments.HttpApi.Client",
"modules/EasyAbp.EShop.Payment/src/EasyAbp.EShop.Payments.MongoDB",
"modules/EasyAbp.EShop.Payment/src/EasyAbp.EShop.Payments.Web",
"modules/EasyAbp.EShop.Payment.WeChatPay/src/EasyAbp.EShop.Payments.WeChatPay.Application",
"modules/EasyAbp.EShop.Payment.WeChatPay/src/EasyAbp.EShop.Payments.WeChatPay.Application.Contracts",
"modules/EasyAbp.EShop.Payment.WeChatPay/src/EasyAbp.EShop.Payments.WeChatPay.Domain",
"modules/EasyAbp.EShop.Payment.WeChatPay/src/EasyAbp.EShop.Payments.WeChatPay.Domain.Shared",
"modules/EasyAbp.EShop.Payment.WeChatPay/src/EasyAbp.EShop.Payments.WeChatPay.EntityFrameworkCore",
"modules/EasyAbp.EShop.Payment.WeChatPay/src/EasyAbp.EShop.Payments.WeChatPay.HttpApi",
"modules/EasyAbp.EShop.Payment.WeChatPay/src/EasyAbp.EShop.Payments.WeChatPay.HttpApi.Client",
"modules/EasyAbp.EShop.Payment.WeChatPay/src/EasyAbp.EShop.Payments.WeChatPay.MongoDB",
"modules/EasyAbp.EShop.Payment.WeChatPay/src/EasyAbp.EShop.Payments.WeChatPay.Web",
"modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.Application",
"modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.Application.Contracts",
"modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.Domain",
"modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.Domain.Shared",
"modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.EntityFrameworkCore",
"modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.HttpApi",
"modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.HttpApi.Client",
"modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.MongoDB",
"modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.Web",
"modules/EasyAbp.EShop.Stores/src/EasyAbp.EShop.Stores.Application",
"modules/EasyAbp.EShop.Stores/src/EasyAbp.EShop.Stores.Application.Contracts",
"modules/EasyAbp.EShop.Stores/src/EasyAbp.EShop.Stores.Domain",
"modules/EasyAbp.EShop.Stores/src/EasyAbp.EShop.Stores.Domain.Shared",
"modules/EasyAbp.EShop.Stores/src/EasyAbp.EShop.Stores.EntityFrameworkCore",
"modules/EasyAbp.EShop.Stores/src/EasyAbp.EShop.Stores.HttpApi",
"modules/EasyAbp.EShop.Stores/src/EasyAbp.EShop.Stores.HttpApi.Client",
"modules/EasyAbp.EShop.Stores/src/EasyAbp.EShop.Stores.MongoDB",
"modules/EasyAbp.EShop.Stores/src/EasyAbp.EShop.Stores.Web"
)