-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1841 from Krypton-Suite/gold
* Version 90 - RTM
- Loading branch information
Showing
2,280 changed files
with
283,556 additions
and
56,738 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
File renamed without changes
Oops, something went wrong.
File renamed without changes
File renamed without changes
File renamed without changes
Oops, something went wrong.
File renamed without changes
File renamed without changes
Oops, something went wrong.
Diff not rendered.
Diff not rendered.
Diff not rendered.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
279 changes: 248 additions & 31 deletions
279
Documents/Help/Changelog.md → Documents/Changelog/Changelog.md
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
@echo off | ||
|
||
if exist "%ProgramFiles%\Microsoft Visual Studio\2022\Preview\MSBuild\Current\Bin" goto vs17prev | ||
if exist "%ProgramFiles%\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin" goto vs17ent | ||
if exist "%ProgramFiles%\Microsoft Visual Studio\2022\Professional\MSBuild\Current\Bin" goto vs17pro | ||
if exist "%ProgramFiles%\Microsoft Visual Studio\2022\Community\MSBuild\Current\Bin" goto vs17com | ||
if exist "%ProgramFiles%\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\Bin" goto vs17build | ||
|
||
echo "Unable to detect suitable environment. Check if VS 2022 is installed." | ||
|
||
pause | ||
goto exitbatch | ||
|
||
:vs17prev | ||
set msbuildpath=%ProgramFiles%\Microsoft Visual Studio\2022\Preview\MSBuild\Current\Bin | ||
goto build | ||
|
||
:vs17ent | ||
set msbuildpath=%ProgramFiles%\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin | ||
goto build | ||
|
||
:vs17pro | ||
set msbuildpath=%ProgramFiles%\Microsoft Visual Studio\2022\Professional\MSBuild\Current\Bin | ||
goto build | ||
|
||
:vs17com | ||
set msbuildpath=%ProgramFiles%\Microsoft Visual Studio\2022\Community\MSBuild\Current\Bin | ||
goto build | ||
|
||
:vs17build | ||
set msbuildpath=%ProgramFiles%\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\Bin | ||
goto build | ||
|
||
:build | ||
for /f "tokens=* usebackq" %%A in (`tzutil /g`) do ( | ||
set "zone=%%A" | ||
) | ||
|
||
@echo Started: %date% %time% %zone% | ||
@echo | ||
set targets=Build | ||
if not "%~1" == "" set targets=%~1 | ||
"%msbuildpath%\msbuild.exe" /t:%targets% canary.proj /fl /flp:logfile=../Logs/build-log.log /bl:../Logs/build-log.binlog | ||
|
||
@echo Build Completed: %date% %time% %zone% | ||
|
||
pause | ||
|
||
@echo Do you want to return to complete another task? (Y/N) | ||
set /p answer="Enter input: " | ||
if %answer%==Y (goto run) | ||
if %answer%==y (goto run) | ||
if %answer%==N exit | ||
if %answer%==n exit | ||
|
||
@echo Invalid input, please try again. | ||
|
||
:run | ||
cd .. | ||
|
||
run.cmd | ||
|
||
:exitbatch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
@echo off | ||
|
||
if exist "%ProgramFiles%\Microsoft Visual Studio\2022\Preview\MSBuild\Current\Bin" goto vs17prev | ||
if exist "%ProgramFiles%\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin" goto vs17ent | ||
if exist "%ProgramFiles%\Microsoft Visual Studio\2022\Professional\MSBuild\Current\Bin" goto vs17pro | ||
if exist "%ProgramFiles%\Microsoft Visual Studio\2022\Community\MSBuild\Current\Bin" goto vs17com | ||
if exist "%ProgramFiles%\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\Bin" goto vs17build | ||
|
||
echo "Unable to detect suitable environment. Check if VS 2022 is installed." | ||
|
||
pause | ||
goto exitbatch | ||
|
||
:vs17prev | ||
set msbuildpath=%ProgramFiles%\Microsoft Visual Studio\2022\Preview\MSBuild\Current\Bin | ||
goto build | ||
|
||
:vs17ent | ||
set msbuildpath=%ProgramFiles%\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin | ||
goto build | ||
|
||
:vs17pro | ||
set msbuildpath=%ProgramFiles%\Microsoft Visual Studio\2022\Professional\MSBuild\Current\Bin | ||
goto build | ||
|
||
:vs17com | ||
set msbuildpath=%ProgramFiles%\Microsoft Visual Studio\2022\Community\MSBuild\Current\Bin | ||
goto build | ||
|
||
:vs17build | ||
set msbuildpath=%ProgramFiles%\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\Bin | ||
goto build | ||
|
||
:build | ||
for /f "tokens=* usebackq" %%A in (`tzutil /g`) do ( | ||
set "zone=%%A" | ||
) | ||
|
||
@echo Started: %date% %time% %zone% | ||
@echo | ||
set targets=Build | ||
if not "%~1" == "" set targets=%~1 | ||
"%msbuildpath%\msbuild.exe" /t:%targets% ../Project Files/installer.proj /fl /flp:logfile=build.log | ||
|
||
@echo Build Completed: %date% %time% %zone% | ||
|
||
pause | ||
|
||
@echo Do you want to return to complete another task? (Y/N) | ||
set /p answer="Enter input: " | ||
if %answer%==Y (goto run) | ||
if %answer%==y (goto run) | ||
if %answer%==N exit | ||
if %answer%==n exit | ||
|
||
@echo Invalid input, please try again. | ||
|
||
:run | ||
cd .. | ||
|
||
run.cmd | ||
|
||
:exitbatch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
@echo off | ||
|
||
if exist "%ProgramFiles%\Microsoft Visual Studio\2022\Preview\MSBuild\Current\Bin" goto vs17prev | ||
if exist "%ProgramFiles%\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin" goto vs17ent | ||
if exist "%ProgramFiles%\Microsoft Visual Studio\2022\Professional\MSBuild\Current\Bin" goto vs17pro | ||
if exist "%ProgramFiles%\Microsoft Visual Studio\2022\Community\MSBuild\Current\Bin" goto vs17com | ||
if exist "%ProgramFiles%\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\Bin" goto vs17build | ||
|
||
echo "Unable to detect suitable environment. Check if VS 2022 is installed." | ||
|
||
pause | ||
goto exitbatch | ||
|
||
:vs17prev | ||
set msbuildpath=%ProgramFiles%\Microsoft Visual Studio\2022\Preview\MSBuild\Current\Bin | ||
goto build | ||
|
||
:vs17ent | ||
set msbuildpath=%ProgramFiles%\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin | ||
goto build | ||
|
||
:vs17pro | ||
set msbuildpath=%ProgramFiles%\Microsoft Visual Studio\2022\Professional\MSBuild\Current\Bin | ||
goto build | ||
|
||
:vs17com | ||
set msbuildpath=%ProgramFiles%\Microsoft Visual Studio\2022\Community\MSBuild\Current\Bin | ||
goto build | ||
|
||
:vs17build | ||
set msbuildpath=%ProgramFiles%\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\Bin | ||
goto build | ||
|
||
:build | ||
for /f "tokens=* usebackq" %%A in (`tzutil /g`) do ( | ||
set "zone=%%A" | ||
) | ||
|
||
@echo Started: %date% %time% %zone% | ||
@echo | ||
set targets=Build | ||
if not "%~1" == "" set targets=%~1 | ||
"%msbuildpath%\msbuild.exe" /t:%targets% nightly.proj /fl /flp:logfile=build.log | ||
|
||
@echo Build Completed: %date% %time% %zone% | ||
|
||
:exitbatch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
@echo off | ||
|
||
if exist "%ProgramFiles%\Microsoft Visual Studio\2022\Preview\MSBuild\Current\Bin" goto vs17prev | ||
if exist "%ProgramFiles%\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin" goto vs17ent | ||
if exist "%ProgramFiles%\Microsoft Visual Studio\2022\Professional\MSBuild\Current\Bin" goto vs17pro | ||
if exist "%ProgramFiles%\Microsoft Visual Studio\2022\Community\MSBuild\Current\Bin" goto vs17com | ||
if exist "%ProgramFiles%\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\Bin" goto vs17build | ||
|
||
echo "Unable to detect suitable environment. Check if VS 2022 is installed." | ||
|
||
pause | ||
goto exitbatch | ||
|
||
:vs17prev | ||
set msbuildpath=%ProgramFiles%\Microsoft Visual Studio\2022\Preview\MSBuild\Current\Bin | ||
goto build | ||
|
||
:vs17ent | ||
set msbuildpath=%ProgramFiles%\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin | ||
goto build | ||
|
||
:vs17pro | ||
set msbuildpath=%ProgramFiles%\Microsoft Visual Studio\2022\Professional\MSBuild\Current\Bin | ||
goto build | ||
|
||
:vs17com | ||
set msbuildpath=%ProgramFiles%\Microsoft Visual Studio\2022\Community\MSBuild\Current\Bin | ||
goto build | ||
|
||
:vs17build | ||
set msbuildpath=%ProgramFiles%\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\Bin | ||
goto build | ||
|
||
:build | ||
for /f "tokens=* usebackq" %%A in (`tzutil /g`) do ( | ||
set "zone=%%A" | ||
) | ||
|
||
@echo Started: %date% %time% %zone% | ||
@echo | ||
set targets=Build | ||
if not "%~1" == "" set targets=%~1 | ||
"%msbuildpath%\msbuild.exe" -t:%targets% ../Project-Files/nightly.proj /fl /flp:logfile=../../Logs/build-log.log /bl:../../Logs/build-log.binlog | ||
|
||
:: -t:rebuild | ||
|
||
::-graphBuild:True | ||
|
||
@echo Build Completed: %date% %time% %zone% | ||
|
||
pause | ||
|
||
@echo Do you want to return to complete another task? (Y/N) | ||
set /p answer="Enter input: " | ||
if %answer%==Y (goto run) | ||
if %answer%==y (goto run) | ||
if %answer%==N exit | ||
if %answer%==n exit | ||
|
||
@echo Invalid input, please try again. | ||
|
||
:run | ||
cd .. | ||
|
||
run.cmd | ||
|
||
:exitbatch |
Oops, something went wrong.