fsprojects / ProjectScaffold

A prototypical .NET solution (file system layout and tooling), recommended for F# projects
http://fsprojects.github.io/ProjectScaffold
The Unlicense
515 stars 154 forks source link

Multiple search of Octokit directory leads to a warning #239

Closed jinlmsft closed 8 years ago

jinlmsft commented 8 years ago

Current implementation of Fake\modules\Octokit gives the following search directories:

I @"../../../../../packages/Octokit/lib/net45"

I @"../../packages/Octokit/lib/net45"

I @"../../../../../../packages/build/Octokit/lib/net45"

Only the first directory is valid under ProjectScaffold. The other two gives out a warning that the corresponding directory doesn't exist. The warning may confuse the developer.

forki commented 8 years ago

Yeah this is unfortunate, but it's currently needed. On Mar 1, 2016 04:39, "jinlmsft" notifications@github.com wrote:

Current implementation of Fake\modules\Octokit gives the following search directories:

I @"../../../../../packages/Octokit/lib/net45"

I @"../../packages/Octokit/lib/net45"

I @"../../../../../../packages/build/Octokit/lib/net45"

Only the first directory is valid under ProjectScaffold. The other two gives out a warning that the corresponding directory doesn't exist. The warning may confuse the developer.

— Reply to this email directly or view it on GitHub https://github.com/fsprojects/ProjectScaffold/issues/239.

forki commented 8 years ago

found a workaround