Skip to content

Commit f842ace

Browse files
committed
Add LocalDeploy flag and update ModdingToolBase submodule
Added /p:LocalDeploy=true to dotnet build commands in deploy-local.ps1 for local deployment logic. Updated ModdingToolBase submodule to commit 0e97dc475c42a4ebf084e4917b526e3dbee50b47.
1 parent 0de4595 commit f842ace

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

deploy-local.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@ New-Item -ItemType Directory -Path $installDir | Out-Null
6363

6464
Write-Host "--- Building ModVerify (net481) @ installed v$InstalledVersion ---" -ForegroundColor Cyan
6565
Set-NbgvVersion -Version $InstalledVersion
66-
dotnet build $toolProj --configuration Release -f net481 --output "$deployRoot\bin\install" /p:DebugType=None /p:DebugSymbols=false
66+
dotnet build $toolProj --configuration Release -f net481 --output "$deployRoot\bin\install" /p:DebugType=None /p:DebugSymbols=false /p:LocalDeploy=true
6767

6868
Write-Host "--- Building ModVerify (net481) @ server v$ServerVersion ---" -ForegroundColor Cyan
6969
Set-NbgvVersion -Version $ServerVersion
70-
dotnet build $toolProj --configuration Release -f net481 --output "$deployRoot\bin\tool" /p:DebugType=None /p:DebugSymbols=false
70+
dotnet build $toolProj --configuration Release -f net481 --output "$deployRoot\bin\tool" /p:DebugType=None /p:DebugSymbols=false /p:LocalDeploy=true
7171

7272
Write-Host "--- Building Manifest Creator ---" -ForegroundColor Cyan
7373
dotnet build $creatorProj --configuration Release --output "$deployRoot\bin\creator"

0 commit comments

Comments
 (0)