J# doesn't support 64 bit?
I'm getting my first 64-bit machine next week, so I thought I'd better start getting up to speed about 64 bit.
I have a solution that has C# applications (WinForms and class libraries), as well as some J# class libraries. As long as the solution only contains C# projects, the platform configuration manager (that dropdown in the toolbar) says "All CPU", meaning it will generate platform-agnostic MSIL. But as soon as you add a J# project, it says "Mixed Platforms" and also adds "x86".
Doesn't J# support 64-bit? I thought it also produces MSIL?!
Does this mean all my applications have to run in x86? Or is .NET smart enough to compile the C# projects into x64 code so it can interoperate with x86 code from J#?

