Skip to content

Commit

Permalink
Use -NoHttpCache for installs
Browse files Browse the repository at this point in the history
  • Loading branch information
CharliePoole committed Dec 26, 2024
1 parent 3adbbaa commit 3afff94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions recipe/package-definition.cake
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,8 @@ public abstract class PackageDefinition
OutputDirectory = PackageInstallDirectory,
//ExcludeVersion = true,
Prerelease = true,
NoCache = true,
Verbosity = BuildSettings.NuGetVerbosity
Verbosity = BuildSettings.NuGetVerbosity,
ArgumentCustomization = args => args.Append("-NoHttpCache")
};

_context.NuGetInstall(PackageId, installSettings);
Expand Down

0 comments on commit 3afff94

Please sign in to comment.