Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 742 Bytes

Build.md

File metadata and controls

16 lines (12 loc) · 742 Bytes

Checked-in Toolkit

On the build machine, you shouldn't install NuProj. Instead, you should restore the NuGet package that provides the build server support.

In order for MSBuild to find the NuProj.targets that NuProj files depend on you need to change the NuProjPath property in your .nuproj file:

<PropertyGroup>
	<NuProjPath Condition=" '$(NuProjPath)' == '' ">..\packages\NuProj.[Version]\</NuProjPath>
</PropertyGroup>

Further more you need to install NuGet.Common package that provides additional targets. This package needs to be installed to all non-NuProj projects that are directly or indirectly referenced by NuProj project.