2016-08-04 11 views

答えて

0

のenv変数を使用するか、dotnet restoreを実行するときに--packagesを指定することができます。 env変数は文書化されていないので、将来変更される可能性があります。

Arguments: 
    [root] List of projects and project folders to restore. Each value can be: a path to a project.json or global.json file, or a folder to recursively search for project.json files. 

Options: 
    -h|--help      Show help information 
    --force-english-output   Forces the application to run using an invariant, English-based culture. 
    -s|--source <source>   Specifies a NuGet package source to use during the restore. 
    --packages <packagesDirectory> Directory to install packages in. 
    --disable-parallel    Disables restoring multiple projects in parallel. 
    -f|--fallbacksource <FEED>  A list of packages sources to use as a fallback. 
    --configfile <file>    The NuGet configuration file to use. 
    --no-cache      Do not cache packages and http requests. 
    --infer-runtimes    Temporary option to allow NuGet to infer RIDs for legacy repositories 
    -v|--verbosity <verbosity>  The verbosity of logging to use. Allowed values: Debug, Verbose, Information, Minimal, Warning, Error. 
    --ignore-failed-sources   Only warning failed sources if there are packages meeting version requirement 

私もあなたが行くようにしようとしている場合は、この問題にまで読んで推薦:https://github.com/dotnet/cli/blob/rel/1.0.0/build_projects/shared-build-targets-utils/Utils/Dirs.cs#L43

dotnet restore --helpの出力はあなたの詳細を与える:ここで起こった場合に、関連するコードへのリンクがありますオフライン開発: How do you set up for offline development with .net Core

関連する問題