MonoGame / MonoGame.Dependencies

The MonoGame binary dependencies submodule.
38 stars 51 forks source link

Upgrade SharpDX to 3.1.1 #105

Closed Jjagg closed 7 years ago

Jjagg commented 7 years ago

EDIT: I pulled the binaries from NuGet. I used a simple batch file, might be useful to easily pull other NuGet deps in the future, so I'm posting it here:

@echo off
setlocal

call mkdir Desktop
call mkdir StoreApp
FOR /F %%i IN (packages.txt) DO (
    call nuget install %%i -Version %1 
    call cp %%i.%1\lib\net45\* Desktop\
    call cp %%i.%1\lib\portable-net45+netcore45+wpa81+MonoAndroid1+MonoTouch1\* StoreApp\
)

endlocal

It expects the version as a command-line argument and expects a 'packages.txt' file with a list of packages to pull.

KonajuGames commented 7 years ago

Thanks @Jjagg. I'll merge this so you can get the testing working properly on the main PR.