Skip to content

Commit

Permalink
use standard nuget config no implicit global config inheritance
Browse files Browse the repository at this point in the history
  • Loading branch information
steinsiv committed Mar 10, 2021
1 parent 164b9c5 commit 90d0c24
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions Nuget.Config
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
<add key="equinor" value="https://nuget.pkg.github.com/equinor/index.json" />
</packageSources>
<packageSourceCredentials>
<equinor>
<add key="Username" value="%USERNAME%" />
<add key="ClearTextPassword" value="%CLEARTEXTPASSWORD%" />
</equinor>
</packageSourceCredentials>
<packageSources>
<!--To inherit the global NuGet package sources remove the <clear/> line below -->
<clear />
<add key="nuget" value="https://api.nuget.org/v3/index.json" />
</packageSources>
</configuration>

0 comments on commit 90d0c24

Please sign in to comment.