Use nlohmann.json NuGet package instead of direct file

This way it will be easier to update to new version (when released).
And it will be also clear that we have dependency on this 3rd party
library.
This commit is contained in:
ge0rdi
2023-07-26 12:05:44 +02:00
parent 8f26cae3f0
commit f897241a08
6 changed files with 22 additions and 24598 deletions

View File

@@ -6,6 +6,9 @@ echo -- Compiling
for /f "usebackq tokens=*" %%i in (`"%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" -latest -products * -requires Microsoft.Component.MSBuild -property installationPath`) do set MSBuildDir=%%i\MSBuild\Current\Bin\
REM Restore NuGet packages
"%MSBuildDir%MSBuild.exe" ..\OpenShell.sln /m /t:Restore -p:RestorePackagesConfig=true /verbosity:quiet /nologo
REM ********* Build 64-bit solution
echo --- 64bit
"%MSBuildDir%MSBuild.exe" ..\OpenShell.sln /m /t:Rebuild /p:Configuration="Setup" /p:Platform="x64" /verbosity:quiet /nologo