I have access to a nugget repository that has two different versions of a package, one 32bit and one 64bit.
My dev machine at work is 32 bit whereas the build server builds the solution in 64bit mode. Currently I'm controlling the build process with ItemGroup conditions, something a bit like this:
<ItemGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
It it possible to configure nuget to bind to one package when building in 32bit mode and the other in 64bit mode? Or am I stuck with manually editing the *proj files?