Skip to content

Commit

Permalink
Merge pull request #52 from nunit/issue-45
Browse files Browse the repository at this point in the history
Use -NoHttpCache for installs
  • Loading branch information
CharliePoole authored Dec 26, 2024
2 parents 3adbbaa + 3afff94 commit b89378b
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 b89378b

Please sign in to comment.