Removed previously required copying of dotnet binaries
This commit is contained in:
parent
94fa84bf78
commit
f279f1f54c
|
@ -137,14 +137,7 @@ if %_e%==13 (goto :done) else (goto :dotnet)
|
||||||
echo -----------------------dotnet----------------------------
|
echo -----------------------dotnet----------------------------
|
||||||
rmdir "Dependencies/dotnet" /S /Q
|
rmdir "Dependencies/dotnet" /S /Q
|
||||||
mkdir "Dependencies/dotnet/include"
|
mkdir "Dependencies/dotnet/include"
|
||||||
mkdir "Dependencies/dotnet/bin"
|
|
||||||
powershell -Command "& {wget https://raw.githubusercontent.com/dotnet/runtime/main/src/coreclr/hosts/inc/coreclrhost.h -OutFile "Dependencies/dotnet/include/coreclrhost.h"}"
|
powershell -Command "& {wget https://raw.githubusercontent.com/dotnet/runtime/main/src/coreclr/hosts/inc/coreclrhost.h -OutFile "Dependencies/dotnet/include/coreclrhost.h"}"
|
||||||
powershell -Command "& {wget https://download.visualstudio.microsoft.com/download/pr/8686fa48-b378-424e-908b-afbd66d6e120/2d75d5c3574fb5d917c5a3cd3f624287/dotnet-sdk-6.0.400-win-x64.zip -OutFile "Dependencies/dotnet/dotnet.zip"}"
|
|
||||||
powershell -Command "& {Expand-Archive -LiteralPath Dependencies/dotnet/dotnet.zip -DestinationPath Dependencies/dotnet/tmp}"
|
|
||||||
robocopy "Dependencies/dotnet/tmp/shared/Microsoft.NETCore.App/6.0.8/" "Dependencies/dotnet/bin/" *.dll /ns /nfl /ndl /nc /njh
|
|
||||||
rmdir "Dependencies/dotnet/tmp/" /s /q
|
|
||||||
del "Dependencies/dotnet/dotnet.zip"
|
|
||||||
powershell -Command "& {Remove-Item "Dependencies/dotnet/dotnet.zip"}"
|
|
||||||
if %_e%==14 (goto :done) else (goto :tinyddsloader)
|
if %_e%==14 (goto :done) else (goto :tinyddsloader)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -113,7 +113,6 @@ project "SHADE_Engine"
|
||||||
{
|
{
|
||||||
"xcopy /s /r /y /q \"%{IncludeDir.spdlog}\\bin\" \"$(OutDir)\"",
|
"xcopy /s /r /y /q \"%{IncludeDir.spdlog}\\bin\" \"$(OutDir)\"",
|
||||||
"xcopy /r /y /q \"%{IncludeDir.SDL}\\lib\\SDL2.dll\" \"$(OutDir)\"",
|
"xcopy /r /y /q \"%{IncludeDir.SDL}\\lib\\SDL2.dll\" \"$(OutDir)\"",
|
||||||
"xcopy /s /r /y /q \"%{IncludeDir.dotnet}\\bin\" \"$(OutDir)\""
|
|
||||||
}
|
}
|
||||||
|
|
||||||
filter "configurations:Debug"
|
filter "configurations:Debug"
|
||||||
|
|
Loading…
Reference in New Issue