mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-17 05:43:51 +02:00
* Added self contained parameter to builds * Remove dotnet install from installer * Fixed missing SubProcessExe * Self hot browser subprocess --------- Co-authored-by: Natsumi <cmcooper123@hotmail.com>
42 lines
1.6 KiB
PowerShell
42 lines
1.6 KiB
PowerShell
$ErrorActionPreference = "Stop"
|
|
|
|
$installPath = &"C:\Program Files (x86)\Microsoft Visual Studio\Installer\vswhere.exe" -version 16.0 -property installationpath
|
|
Import-Module (Join-Path $installPath "Common7\Tools\Microsoft.VisualStudio.DevShell.dll")
|
|
Enter-VsDevShell -VsInstallPath $installPath -SkipAutomaticLocation
|
|
|
|
$Date = Get-Date -format yyyyMMdd
|
|
$ZipName = "VRCX_" + $Date + ".zip"
|
|
$SetupName = "VRCX_" + $Date + "_Setup.exe"
|
|
|
|
Write-Host "Building .Net..." -ForegroundColor Green
|
|
dotnet build VRCX.sln -p:Configuration=Release -p:Platform=x64 -p:RestorePackagesConfig=true -t:"Restore;Clean;Build" -m --self-contained
|
|
|
|
Write-Host "Building Node.js..." -ForegroundColor Green
|
|
cd "html"
|
|
Remove-Item -Path "node_modules" -Force -Recurse -ErrorAction SilentlyContinue
|
|
npm ci --loglevel=error
|
|
npm run prod
|
|
cd ..
|
|
Remove-Item -Path "bin\x64\Release\html" -Force -Recurse -ErrorAction SilentlyContinue
|
|
New-Item -ItemType Junction -Path "bin\x64\Release\html" -Target "html\dist"
|
|
|
|
Write-Host "Creating Zip..." -ForegroundColor Green
|
|
cd "bin\x64\Release"
|
|
7z a -tzip $ZipName * -mx=7 -xr0!"*.log" -xr0!"*.pdb"
|
|
Move-Item $ZipName ..\..\..\$ZipName -Force
|
|
cd ..\..\..\
|
|
|
|
Write-Host "Creating Installer..." -ForegroundColor Green
|
|
cd "Installer"
|
|
$nsisPath = "C:\Program Files (x86)\NSIS\makensis.exe"
|
|
&$nsisPath installer.nsi
|
|
Start-Sleep -Seconds 1
|
|
Move-Item VRCX_Setup.exe ..\$SetupName -Force
|
|
cd ..
|
|
|
|
Write-Host "Creating SHA256-hash..." -ForegroundColor Green
|
|
$hash = Get-FileHash -Path $SetupName -Algorithm SHA256
|
|
$hashLine = "$($hash.Hash) $SetupName"
|
|
$hashLine | Out-File -FilePath "SHA256SUMS.txt" -Encoding ASCII
|
|
|
|
Write-Host "Done!" -ForegroundColor Green |