From db0674cd02541a17b06a8bdab0ff772be83763c4 Mon Sep 17 00:00:00 2001 From: n00mkrad <61149547+n00mkrad@users.noreply.github.com> Date: Sat, 20 Dec 2025 22:01:13 +0100 Subject: [PATCH] Update BuildRelease.ps1 --- CodeLegacy/BuildRelease.ps1 | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CodeLegacy/BuildRelease.ps1 b/CodeLegacy/BuildRelease.ps1 index aaab933..2f75195 100644 --- a/CodeLegacy/BuildRelease.ps1 +++ b/CodeLegacy/BuildRelease.ps1 @@ -1,7 +1,11 @@ +# Go to script directory +Set-Location $PSScriptRoot + # Define paths and tools $winDir = ${env:WINDIR} $progFiles64 = ${env:ProgramW6432} -$msBuildPath = [IO.Path]::Combine($progFiles64, "Microsoft Visual Studio", "2022", "Community", "MSBuild", "Current", "Bin", "MSBuild.exe") +# $msBuildPath = [IO.Path]::Combine($progFiles64, "Microsoft Visual Studio", "2022", "Community", "MSBuild", "Current", "Bin", "MSBuild.exe") +$msBuildPath = [IO.Path]::Combine($progFiles64, "Microsoft Visual Studio", "18", "Insiders", "MSBuild", "Current", "Bin", "MSBuild.exe") $solutionRoot = $PSScriptRoot $ilRepackPath = [IO.Path]::Combine($solutionRoot, "packages", "ILRepack.2.0.34", "tools", "ILRepack.exe") $solutionPath = [IO.Path]::Combine($solutionPath, "Flowframes.sln")