mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 13:48:00 -05:00
60 lines
3.4 KiB
PowerShell
60 lines
3.4 KiB
PowerShell
param ( [string]$SolutionDir, [string]$OutputDir )
|
|
|
|
if (-not (Test-Path "$SolutionDir/WebfrontCore/wwwroot/font")) {
|
|
Write-Output "restoring web dependencies"
|
|
dotnet tool install Microsoft.Web.LibraryManager.Cli --global
|
|
Set-Location "$SolutionDir/WebfrontCore"
|
|
libman restore
|
|
Set-Location $SolutionDir
|
|
Copy-Item -Recurse -Force -Path "$SolutionDir/WebfrontCore/wwwroot/lib/open-iconic/font/fonts" "$SolutionDir/WebfrontCore/wwwroot/font"
|
|
}
|
|
|
|
if (-not (Test-Path "$SolutionDir/WebfrontCore/wwwroot/lib/open-iconic/font/css/open-iconic-bootstrap-override.scss")) {
|
|
Write-Output "load external resources"
|
|
New-Item -ItemType Directory -Force -Path "$SolutionDir/WebfrontCore/wwwroot/lib/open-iconic/font/css"
|
|
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/iconic/open-iconic/master/font/css/open-iconic-bootstrap.scss" -OutFile "$SolutionDir/WebfrontCore/wwwroot/lib/open-iconic/font/css/open-iconic-bootstrap-override.scss"
|
|
(Get-Content "$SolutionDir/WebfrontCore/wwwroot/lib/open-iconic/font/css/open-iconic-bootstrap-override.scss") -replace '../fonts/', '/font/' | Set-Content "$SolutionDir/WebfrontCore/wwwroot/lib/open-iconic/font/css/open-iconic-bootstrap-override.scss"
|
|
}
|
|
|
|
Write-Output "compiling scss files"
|
|
|
|
dotnet tool install Excubo.WebCompiler --global
|
|
webcompiler -r "$SolutionDir/WebfrontCore/wwwroot/css/src" -o WebfrontCore/wwwroot/css/ -m disable -z disable
|
|
webcompiler "$SolutionDir/WebfrontCore/wwwroot/lib/open-iconic/font/css/open-iconic-bootstrap-override.scss" -o "$SolutionDir/WebfrontCore/wwwroot/css/" -m disable -z disable
|
|
|
|
if (-not (Test-Path "$SolutionDir/bundle/dotnet-bundle.dll")) {
|
|
New-Item -ItemType Directory -Force -Path "$SolutionDir/bundle"
|
|
Write-Output "getting dotnet bundle"
|
|
Invoke-WebRequest -Uri "https://raidmax.org/IW4MAdmin/res/dotnet-bundle.zip" -OutFile "$SolutionDir/bundle/dotnet-bundle.zip"
|
|
Write-Output "unzipping download"
|
|
Expand-Archive -Path "$SolutionDir/bundle/dotnet-bundle.zip" -DestinationPath "$SolutionDir/bundle" -Force
|
|
}
|
|
|
|
Write-Output "executing dotnet-bundle"
|
|
Set-Location "$SolutionDir/bundle"
|
|
dotnet "dotnet-bundle.dll" clean "$SolutionDir/WebfrontCore/bundleconfig.json"
|
|
dotnet "dotnet-bundle.dll" "$SolutionDir/WebfrontCore/bundleconfig.json"
|
|
Set-Location $SolutionDir
|
|
|
|
New-Item -ItemType Directory -Force -Path "$SolutionDir/BUILD/Plugins"
|
|
Write-Output "building plugins"
|
|
Set-Location "$SolutionDir/Plugins"
|
|
Get-ChildItem -Recurse -Filter *.csproj | ForEach-Object { dotnet publish $_.FullName -o "$SolutionDir/BUILD/Plugins" --no-restore }
|
|
Set-Location $SolutionDir
|
|
|
|
if (-not (Test-Path "$OutputDir/Localization")) {
|
|
Write-Output "downloading translations"
|
|
New-Item -ItemType Directory -Force -Path "$OutputDir/Localization"
|
|
$localizations = @("en-US", "ru-RU", "es-EC", "pt-BR", "de-DE")
|
|
foreach ($localization in $localizations) {
|
|
$url = "https://master.iw4.zip/localization/$localization"
|
|
$filePath = "$OutputDir/Localization/IW4MAdmin.$localization.json"
|
|
Invoke-WebRequest -Uri $url -OutFile $filePath -UseBasicParsing
|
|
}
|
|
}
|
|
|
|
Write-Output "copying plugins to build dir"
|
|
New-Item -ItemType Directory -Force -Path "$OutputDir/Plugins"
|
|
Copy-Item -Recurse -Force -Path "$SolutionDir/BUILD/Plugins/*.dll" -Destination "$OutputDir/Plugins/"
|
|
Copy-Item -Recurse -Force -Path "$SolutionDir/Plugins/ScriptPlugins/*.js" -Destination "$OutputDir/Plugins/"
|