download latest nuget automatically

This commit is contained in:
Peter Honeder 2015-07-16 14:04:10 -07:00
parent 061c8543ea
commit 849529c33a
2 changed files with 6 additions and 5 deletions

View file

@ -136,13 +136,14 @@ dotnetlibs/corerun: $(MONAD_EXT)/coreclr/Release/corerun
# this is the manual step that will install some stuff using nuget and do other things that can't be dependency
# tracked that easily
prepare:
rm -rf System.Reflection.Metadata.* System.Collections.Immutable.* Microsoft.Net.ToolsetCompilers.*
nuget install System.Reflection.Metadata
nuget install System.Collections.Immutable
nuget install Microsoft.Net.ToolsetCompilers -pre
rm -rf System.Reflection.Metadata.* System.Collections.Immutable.* Microsoft.Net.ToolsetCompilers.* buildtemp/nuget.exe
wget -O buildtemp/nuget.exe https://nuget.org/nuget.exe
mono buildtemp/nuget.exe install System.Reflection.Metadata
mono buildtemp/nuget.exe install System.Collections.Immutable
mono buildtemp/nuget.exe install Microsoft.Net.ToolsetCompilers -pre
# this is an internal target, it's not intended to be called manually
internal-prepare-exec_env: runps.sh
internal-prepare-exec_env: runps.sh $(POWERSHELL_RUN_TARGETS)
rm -rf exec_env
mkdir exec_env
mkdir exec_env/app_base

0
scripts/buildtemp/.gitignore vendored Normal file
View file