Re: [NAnt-users] Targeting .net 2.0 x86 on x64 machine

2011-08-31 Thread Dominik Guder
Hi, first of all, many thanks for your very fast answers. I put some of them together since not all went to list. Am 31.08.2011 17:51, schrieb Philip Sayers: > What errors are you seeing? > > Make sure you are building for x86 and not AnyCPU. > > Does this help? > http://social.msdn.microsoft.co

Re: [NAnt-users] Targeting .net 2.0 x86 on x64 machine

2011-08-31 Thread Philip Sayers
What errors are you seeing? Make sure you are building for x86 and not AnyCPU. Does this help? http://social.msdn.microsoft.com/Forums/en/msbuild/thread/e5900710-9849-4d10 -aa28-48b734d06bf2 We compile with msbuild to generate x86 assemblies on x64 hardware/OS just fine. You'll be missing a sett

Re: [NAnt-users] Targeting .net 2.0 x86 on x64 machine

2011-08-31 Thread Scott Pennington
You need to install both the x64 and x32 version of the .net framework. You can skip the MSBuild and call the CSC for csharp compiler, passing in all the reverences, in the x32 or x64 as desired. You may need to call the compiler through the command line instead of the task. Hope this helps