工具生成版本

This commit is contained in:
ShaoHua
2025-12-29 00:41:26 +08:00
commit e2fc6b5d61
244 changed files with 20445 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
# Symlink Configuration
# Shared configuration for symlink management scripts
# Define the package directories that need symlink management
# example: "../../modules/Volo.Abp.Identity.Pro/angular"
$script:PackageDirectories = @()
# Define packages that should be symlinked
$script:PackagesToSymlink = @(
"@angular",
"@abp",
"@volo",
"@volosoft",
"@swimlane",
"@ngx-validate",
"@ng-bootstrap",
"rxjs",
"cropperjs",
"angularx-qrcode",
"qrcode"
)
# Helper function to get package directories
function Get-PackageDirectories {
return $script:PackageDirectories
}
# Helper function to get packages to symlink
function Get-PackagesToSymlink {
return $script:PackagesToSymlink
}
# Functions are available when script is dot-sourced