diff options
| author | Can Eldem <celdem@gitlab.com> | 2020-01-23 14:01:20 +0000 |
|---|---|---|
| committer | Can Eldem <celdem@gitlab.com> | 2020-01-23 14:01:20 +0000 |
| commit | 9365cb33e578b08ca271fc8cb00ea0798b9e9f7a (patch) | |
| tree | 6630fabb655c0b81a7a339e75f36ebcb156a8364 /config/NuGet/NuGet.Config | |
| parent | 9d0efd773673d47e24fc1e5afa7ed0b514849463 (diff) | |
| parent | 640be3d5b2f446434c229c3aa8cad0649a6ab779 (diff) | |
Merge branch 'dotnet-framework' into 'master'v2.4.1
Add example scan of project with a nuget `packages.config` file
See merge request gitlab-org/security-products/license-management!105
Diffstat (limited to 'config/NuGet/NuGet.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> |
