-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5874 from dependabot/honeyankit/nuget-support-for…
…-disable-registry Fixed disabledPackageSources for nuget.org
- Loading branch information
Showing
10 changed files
with
223 additions
and
148 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
nuget/spec/fixtures/configs/disabled_default_sources.config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<!-- | ||
Used to specify the default Sources for list, install and update. | ||
See: nuget.exe help list | ||
See: nuget.exe help install | ||
See: nuget.exe help update | ||
--> | ||
<packageSources> | ||
<add key="MyRepo - ES" value="https://www.myget.org/F/exceptionless/api/v3/index.json" /> | ||
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" /> | ||
</packageSources> | ||
|
||
<!-- Used to store credentials --> | ||
<packageSourceCredentials> | ||
<MyRepo_x0020_-_x0020_ES> | ||
<add key="Username" value="my" /> | ||
<add key="ClearTextPassword" value="passw0rd" /> | ||
</MyRepo_x0020_-_x0020_ES> | ||
</packageSourceCredentials> | ||
|
||
<!-- Used to disable package sources --> | ||
<disabledPackageSources> | ||
<add key="MyRepo - ES" value="false" /> | ||
<add key="nuget.org" value="true" /> | ||
</disabledPackageSources> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.