From 79c265eda0ab422e113361418e12d601c83c8eb2 Mon Sep 17 00:00:00 2001 From: Master Kwoth Date: Mon, 2 Jan 2017 13:57:10 +0100 Subject: [PATCH] Update Latest.bat --- scripts/Latest.bat | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/scripts/Latest.bat b/scripts/Latest.bat index 8256adbc..359cd366 100644 --- a/scripts/Latest.bat +++ b/scripts/Latest.bat @@ -4,9 +4,12 @@ TITLE Downloading NadekoBot, please wait SET root=%~dp0 CD /D %root% SET rootdir=%cd% -SET build1=%root%NadekoInstall_Temp\NadekoBot\discord.net\src\Discord.Net\ -SET build2=%root%NadekoInstall_Temp\NadekoBot\discord.net\src\Discord.Net.Commands\ -SET build3=%root%NadekoInstall_Temp\NadekoBot\src\NadekoBot\ +SET build1=%root%NadekoInstall_Temp\NadekoBot\Discord.Net\src\Discord.Net.API\ +SET build2=%root%NadekoInstall_Temp\NadekoBot\Discord.Net\src\Discord.Net.Core\ +SET build3=%root%NadekoInstall_Temp\NadekoBot\Discord.Net\src\Discord.Net.Rest\ +SET build4=%root%NadekoInstall_Temp\NadekoBot\Discord.Net\src\Discord.Net.WebSocket\ +SET build5=%root%NadekoInstall_Temp\NadekoBot\Discord.Net\src\Discord.Net.Commands\ +SET build6=%root%NadekoInstall_Temp\NadekoBot\src\NadekoBot\ SET installtemp=%root%NadekoInstall_Temp\ ::Deleting traces of last setup for the sake of clean folders, if by some miracle it still exists IF EXIST %installtemp% ( RMDIR %installtemp% /S /Q >nul 2>&1) @@ -32,6 +35,12 @@ CD /D %build2% dotnet restore >nul 2>&1 CD /D %build3% dotnet restore >nul 2>&1 +CD /D %build4% +dotnet restore >nul 2>&1 +CD /D %build5% +dotnet restore >nul 2>&1 +CD /D %build6% +dotnet restore >nul 2>&1 dotnet build --configuration Release >nul 2>&1 ::Attempts to backup old files if they currently exist in the same folder as the batch file IF EXIST "%root%NadekoBot\" (GOTO :backupinstall)