Is there any advantage to building my .NET application with the 64 bit framework? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T01:00:43Z http://stackoverflow.com/feeds/question/733975 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/733975/is-there-any-advantage-to-building-my-net-application-with-the-64-bit-framework 2 Is there any advantage to building my .NET application with the 64 bit framework? Dan Finucane 2009-04-09T12:22:04Z 2009-04-09T19:51:03Z <p>We use msbuild to build our .NET application on a server dedicated to builds. We are migrating to new hardware which has 64 bit Windows 2003. I can build the application using the 64 bit version of msbuild found in Framework64 or I can build it using the 32 bit verison found in Framework. Is there any advantage to building with the 64 bit version of msbuild?</p> http://stackoverflow.com/questions/733975/is-there-any-advantage-to-building-my-net-application-with-the-64-bit-framework/733986#733986 3 Answer by JaredPar for Is there any advantage to building my .NET application with the 64 bit framework? JaredPar 2009-04-09T12:25:28Z 2009-04-09T12:25:28Z <p>Not particularly no. The only real advantage is that the 64 bit version of msbuild will be able to take advantage of more address space. That's really about it. </p> http://stackoverflow.com/questions/733975/is-there-any-advantage-to-building-my-net-application-with-the-64-bit-framework/733995#733995 2 Answer by Christopher Klein for Is there any advantage to building my .NET application with the 64 bit framework? Christopher Klein 2009-04-09T12:27:47Z 2009-04-09T12:27:47Z <p>No but there might be some disadvantages... if your application uses any 3rd party drivers, make sure that they are also 64-bit compliant. We ran into an issue where we converted an older application to .net and kept the default 'Platform Target: Any CPU' setting on Build->General and while the application worked very well on its development machine as soon as we moved it over to a 64bit server it died. Took us a while to trace it back to a 3rd party ODBC driver which we require to interface with an external data source. The application DID work on the 64bit platform, we just needed to specify x86 for the CPU which sort of defeats the purpose.</p> http://stackoverflow.com/questions/733975/is-there-any-advantage-to-building-my-net-application-with-the-64-bit-framework/734210#734210 0 Answer by thijs for Is there any advantage to building my .NET application with the 64 bit framework? thijs 2009-04-09T13:24:35Z 2009-04-09T13:24:35Z <p>The Biztalk interop assemblies are one fine example of assemblies that are NOT 64-bits capable. So test and test again when/after making such a move.</p> http://stackoverflow.com/questions/733975/is-there-any-advantage-to-building-my-net-application-with-the-64-bit-framework/735686#735686 1 Answer by Bob The Janitor for Is there any advantage to building my .NET application with the 64 bit framework? Bob The Janitor 2009-04-09T19:51:03Z 2009-04-09T19:51:03Z <p>if you are going to do asp.net one big advantage is IIS can access more memory, this gives you more scalability. </p> <p>The dot not rocks guys did a show on this<br /> <a href="http://www.dotnetrocks.com/default.aspx?showNum=341" rel="nofollow">http://www.dotnetrocks.com/default.aspx?showNum=341</a> </p> <p>there is a lot of really good info on it.</p>