I have a full x64 solution and each time I create a project it is by default an x86 project and I have to witch it manually to x64. Is there a way to have this by default ?
|
In C# .NET project and solution the default target platform should be "any CPU" and not x86, this means that the compiled IL is capable to run on a classic x86 and x64 system without any changes and in native mode ... Edit Sorry i just noticed that the behaviour is changed in visual studio 2010, take a look here for further information on why this choice ...
|
|||||
|
|
|
You can simply modify the project template. For example, the project template for a WPF application is stored in C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\ProjectTemplatesCache\CSharp\Windows\1033\WPFApplication.zip Open the .csproj file in that .zip file with a text editor and modify the |
|||
|
|
