Reputation: 26091
I'm trying to build my C# project on AppVeyor because complaining about a missing project. How can I resolve this?
Upvotes: 0
Views: 84
Reputation: 2881
You have to set <NuProjPath>..\packages\NuProj.0.11.14-beta\tools\</NuProjPath>
instead of <NuProjPath Condition=" '$(NuProjPath)' == '' ">$(MSBuildExtensionsPath)\NuProj\</NuProjPath>
here according to NuProj doc
Upvotes: 1