diff options
| author | mo khan <mo.khan@gmail.com> | 2020-01-20 12:02:15 -0700 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-01-20 12:02:15 -0700 |
| commit | 2af4ae046a4777c1e4833b55d1bcfa266a8b3ced (patch) | |
| tree | 723e3492a6491b98ca8bda05ba361202544a5470 /config | |
| parent | 1e0f4eddfff99189e798eca889159c638af61447 (diff) | |
Specify default restore location to ensure nuget packages are installed
Diffstat (limited to 'config')
| -rw-r--r-- | config/NuGet/NuGet.Config | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/config/NuGet/NuGet.Config b/config/NuGet/NuGet.Config new file mode 100644 index 0000000..5aacae8 --- /dev/null +++ b/config/NuGet/NuGet.Config @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="utf-8"?> +<configuration> + <config> + <add key="repositoryPath" value="/root/.packages" /> + </config> + <packageSources> + <add key="nuget.org" value="https://api.nuget.org/v3/index.json" /> + </packageSources> + <packageRestore> + <add key="enabled" value="true" /> + <add key="automatic" value="true" /> + </packageRestore> +</configuration> |
