diff options
author | Aaron Robinson <arobins@microsoft.com> | 2019-05-10 14:07:11 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-10 14:07:11 -0700 |
commit | 44d22bd22ffc72ec0a89b50b7de96b45a470b1e9 (patch) | |
tree | 83a2a4b700a519d05de29d5b2dd35058a600367f /build.cmd | |
parent | c746a224d029f84556298893e8f2789df4bc3dda (diff) | |
download | coreclr-44d22bd22ffc72ec0a89b50b7de96b45a470b1e9.tar.gz coreclr-44d22bd22ffc72ec0a89b50b7de96b45a470b1e9.tar.bz2 coreclr-44d22bd22ffc72ec0a89b50b7de96b45a470b1e9.zip |
Properly set the nuget cache for the repo (#24505)
* Properly set the nuget cache for the repo
* Change coreclr NuGet package cache from "./packages" to "./.packages"
Diffstat (limited to 'build.cmd')
-rw-r--r-- | build.cmd | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -34,7 +34,7 @@ set ghprbCommentBody= :: __BuildOS -- default: Windows_NT :: __ProjectDir -- default: directory of the dir.props file :: __SourceDir -- default: %__ProjectDir%\src\ -:: __PackagesDir -- default: %__ProjectDir%\packages\ +:: __PackagesDir -- default: %__ProjectDir%\.packages\ :: __RootBinDir -- default: %__ProjectDir%\bin\ :: __BinDir -- default: %__RootBinDir%\%__BuildOS%.%__BuildArch.%__BuildType%\ :: __IntermediatesDir @@ -55,7 +55,7 @@ if %__ProjectDir:~-1%==\ set "__ProjectDir=%__ProjectDir:~0,-1%" set "__ProjectFilesDir=%__ProjectDir%" set "__SourceDir=%__ProjectDir%\src" set "__PackagesDir=%DotNetRestorePackagesPath%" -if [%__PackagesDir%]==[] set "__PackagesDir=%__ProjectDir%\packages" +if [%__PackagesDir%]==[] set "__PackagesDir=%__ProjectDir%\.packages" set "__RootBinDir=%__ProjectDir%\bin" set "__LogsDir=%__RootBinDir%\Logs" set "__MsbuildDebugLogsDir=%__LogsDir%\MsbuildDebugLogs" |