You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The project should support downloading/updating from other sources.
Purpose
Increase usability and modularity.
Implementation
Similar to aptitude. Create a sources.list file that defines the different sources to search for the desired package the user is installing or updating.
The file contains a URL or path per line.
dotget will download the first program it finds, so sources should be listed with the highest priority first.
Lines starting with # are comments and are ignored.
Blank lines are also ignored.
Example
# This is a comment. Blank lines are ignored.
# Windows path.
C:\Documents\MyFeed
# UNC path.
\\server\Utilities\CustomFeed
# Linux path.
/root/bin/feed
# Fall back to the public NuGet Feed.
https://api.nuget.org/v3/index.json
The text was updated successfully, but these errors were encountered:
Summary
The project should support downloading/updating from other sources.
Purpose
Increase usability and modularity.
Implementation
Similar to aptitude. Create a
sources.list
file that defines the different sources to search for the desired package the user is installing or updating.dotget
will download the first program it finds, so sources should be listed with the highest priority first.#
are comments and are ignored.Example
The text was updated successfully, but these errors were encountered: