VS 2010 support for C# win_7 x64

I have VS2010 working with CUDA in a C++ project running on Win 7 PRO x64 (Thanks to the CudaVs2010 tool as mentionned in http://forums.nvidia.com/index.php?showtopic=161096). However, I would like to have it working in a C# project (as I have in VS2008 express).

Does anyone have this working yet ? A template (as for C++ would be nice)

I got it working (from C#). For anyone who is interested:

I am using VS2010 pro (trial). I am using both C# & C++ (The last because nvcc.exe calls cl.exe which is a part of C++)

I will try later on if the 2 express editions (C# & C++) work as well.

The project uses CUDA.NET from HOOPOE V3.0.0

The Cuda file (.cu) is now compiled ‘manually’ as ‘Post-build event’ to a CUBIN file (.cubin).

The command line syntax for this pos-build event is:
“C:\CUDA\bin64\nvcc.exe” HelloWorld.cu -cubin -arch sm_11 --machine 64 -ccbin “C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin” -D_DEBUG -g -Xcompiler "/EHsc /W3 /nologo /Od /Zi /MDd /D__nullptr=((void*)0) /Dnullptr=0 /Dnullptr_t=__nullptr_t " -Xcudafe “–c++0x” -IC:\CUDA\include -maxrregcount=32

I got it working (from C#). For anyone who is interested:

I am using VS2010 pro (trial). I am using both C# & C++ (The last because nvcc.exe calls cl.exe which is a part of C++)

I will try later on if the 2 express editions (C# & C++) work as well.

The project uses CUDA.NET from HOOPOE V3.0.0

The Cuda file (.cu) is now compiled ‘manually’ as ‘Post-build event’ to a CUBIN file (.cubin).

The command line syntax for this pos-build event is:
“C:\CUDA\bin64\nvcc.exe” HelloWorld.cu -cubin -arch sm_11 --machine 64 -ccbin “C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin” -D_DEBUG -g -Xcompiler "/EHsc /W3 /nologo /Od /Zi /MDd /D__nullptr=((void*)0) /Dnullptr=0 /Dnullptr_t=__nullptr_t " -Xcudafe “–c++0x” -IC:\CUDA\include -maxrregcount=32