user841683
user841683

Reputation: 335

Asp.Net build AnyCPU or X64 compilation

To deploy ASP.Net web application in a 64 bit IIS 7 web server, Should i compile in x64 or Any CPU mode. I know that both is going to work but is there any performance impact on choosing one over the other ?

Upvotes: 1

Views: 595

Answers (1)

Daniel A. White
Daniel A. White

Reputation: 190945

Only compile for x64-only if you absolutely need it. There shouldn't be any noticeable performance issues.

Upvotes: 2

Related Questions