Reputation: 1687
Hi I want to build my Wix-Project on my TFS-Server. I checked in a local copy of the wix-binaries - which are looking good.
Now i want to reference my local copy in my wix-v3-project like that:
<PropertyGroup>
<WixToolPath>$(SourceCodeControlRoot)\wix\[[Version]]\</WixToolPath>
<WixTargetsPath>$(WixToolPath)Wix.targets</WixTargetsPath>
<WixTasksPath>$(WixToolPath)wixtasks.dll</WixTasksPath>
</PropertyGroup>
It is described here: Link
But it tells me that - WixToolPath
is an unknown node. So how can i reference my local wix toolset? And also what do i need to reference so that it can build only with my local copy on the toolset.
My main target is - to not change the tfs agent - to make wix working.
EDIT:
This is working in v4 - how can i achieve this in v3?
Upvotes: 1
Views: 161
Reputation: 10120
I dont think that's the right way to do this, avoid checking-in the binaries to source control when possible. Here is a list of steps that you can do:
Upvotes: 2