Browse Source

Merge pull request #332 from colinin/4.4

fix(backend-admin): add missing modules
pull/364/head
yx lin 4 years ago
committed by GitHub
parent
commit
bd23e94934
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      build/build-aspnetcore-modules.ps1
  2. 14
      build/modules.dependencies.json

6
build/build-aspnetcore-modules.ps1

@ -2,6 +2,12 @@
$rootFolder = (Get-Item -Path "./" -Verbose).FullName $rootFolder = (Get-Item -Path "./" -Verbose).FullName
$buildSolutionPath = Join-Path $rootFolder "../aspnet-core/"
Set-Location $buildSolutionPath
dotnet build LINGYUN.MicroService.All.sln
# List of solutions used only in development mode # List of solutions used only in development mode
$dependenciesFile = Join-Path $rootFolder "../build/modules.dependencies.json" $dependenciesFile = Join-Path $rootFolder "../build/modules.dependencies.json"

14
build/modules.dependencies.json

@ -47,5 +47,19 @@
] ]
} }
] ]
},
{
"tag": "netstandard2.0",
"dependencies": [
{
"service": "Backend-Admin",
"path": "/../aspnet-core/services/admin/LINGYUN.Abp.BackendAdmin.HttpApi.Host/Modules/",
"depPath": "/../aspnet-core/LocalNuget/netstandard2.0/",
"dependencies": [
"LINGYUN.Abp.Features.LimitValidation.dll",
"LINGYUN.Abp.Features.LimitValidation.Redis.dll"
]
}
]
} }
] ]
Loading…
Cancel
Save