zsims / hunt-and-peck

Simple vimium/vimperator style navigation for Windows applications based on the UI Automation framework.
623 stars 54 forks source link

Use new (recommended) nuget automatic package restore #4

Closed oysteinkrog closed 9 years ago

oysteinkrog commented 9 years ago

The old msbuild-baset nuget package restore is no longer recommended. This commit migrates to the new recommended style. The new style requires the nuget extension when compiling in VS. When compiling from cli/build system, the FAKE RestorePackages() function is used. https://docs.nuget.org/consume/package-restore/migrating-to-automatic-package-restore

oysteinkrog commented 9 years ago

I was unable to compile with the old code, the nuget package restore step failed with an error about unable to find packages.config. To fix it I migrated to the new system, building now works for me:)

zsims commented 9 years ago

Thanks for fixing this! :+1: