summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen D. Huston <shuston@apache.org>2012-09-11 02:20:36 +0000
committerStephen D. Huston <shuston@apache.org>2012-09-11 02:20:36 +0000
commit08b1fb4982a437580b3f4be3da503f6953dcdd61 (patch)
tree614780fe8fd9a71edb37752b5c3b0225e8441aef
parentdf615e8e70f12bbdb8c92b73ed3ebea61427888a (diff)
downloadqpid-python-08b1fb4982a437580b3f4be3da503f6953dcdd61.tar.gz
Look for dotnet example files in the correct place for vc9. Fixes QPID-4294
git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/0.18@1383225 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/packaging/windows/installer.proj6
1 files changed, 3 insertions, 3 deletions
diff --git a/qpid/packaging/windows/installer.proj b/qpid/packaging/windows/installer.proj
index 86375b615e..a88b0bd454 100644
--- a/qpid/packaging/windows/installer.proj
+++ b/qpid/packaging/windows/installer.proj
@@ -36,7 +36,7 @@
<OutputName>qpidc</OutputName>
<OutputType>Package</OutputType>
<WixToolPath>C:\Program Files (x86)\Windows Installer XML v3.5\bin</WixToolPath>
- <WixTargetsPath Condition=" '$(WixTargetsPath)' == '' ">$(MSBuildExtensionsPath)\Microsoft\WiX\v3.5\wix.targets</WixTargetsPath>
+ <WixTargetsPath Condition=" '$(WixTargetsPath)' == '' ">$(MSBuildExtensionsPath)\Microsoft\WiX\v3.x\wix.targets</WixTargetsPath>
</PropertyGroup>
<Choose>
@@ -175,10 +175,10 @@
<Target Name="BuildDotNetBindings"><!-- DependsOnTargets="BuildCpp;BuildCppDebug" -->
<MSBuild
- Projects="$(source_root)\cpp\bindings\qpid\dotnet\org.apache.qpid.messaging.sessionreceiver.sln"
+ Projects="$(source_root)\cpp\bindings\qpid\dotnet\msvc9\org.apache.qpid.messaging.sessionreceiver.sln"
Properties="Configuration=Debug;Platform=$(Architecture)" />
<MSBuild
- Projects="$(source_root)\cpp\bindings\qpid\dotnet\org.apache.qpid.messaging.sessionreceiver.sln"
+ Projects="$(source_root)\cpp\bindings\qpid\dotnet\msvc9\org.apache.qpid.messaging.sessionreceiver.sln"
Properties="Configuration=Release;Platform=$(Architecture)" />
</Target>