Skip to content

Instantly share code, notes, and snippets.

@thnk2wn
Created November 13, 2017 22:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thnk2wn/ba68789a19d31c3fea5ae45f1100d552 to your computer and use it in GitHub Desktop.
Save thnk2wn/ba68789a19d31c3fea5ae45f1100d552 to your computer and use it in GitHub Desktop.
private void InstallOpenCoverFromLocalPackage()
{
var settings = new NuGetInstallSettings
{
//Source = new[] { @"..\Tools\LocalPackages\" },
Source = new[] { @"C:\Some\FullPath\Tools\LocalPackages" },
OutputDirectory = "tools"
};
NuGetInstall("OpenCover", settings);
//NuGetInstall("OpenCover.nupkg", settings);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment