Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for IgnoreCache to app.config #2696

Merged
merged 1 commit into from Sep 2, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/Paket.Bootstrapper/ArgumentParser.cs
Expand Up @@ -33,6 +33,7 @@ public static class AppSettingKeys
public const string NugetSource = "NugetSource";
public const string PaketVersion = "PaketVersion";
public const string Prerelease = "Prerelease";
public const string IgnoreCache = "IgnoreCache";
}
public static class EnvArgs
{
Expand Down Expand Up @@ -137,6 +138,11 @@ private static void FillOptionsFromAppSettings(BootstrapperOptions options, Name
{
options.DownloadArguments.NugetSource = nugetSource;
}
if (appSettings.IsTrue(AppSettingKeys.IgnoreCache))
{
options.DownloadArguments.IgnoreCache = true;
}

}

private static void FillOptionsFromEnvVariables(BootstrapperOptions options, IDictionary envVariables)
Expand Down