Solution File Created in C# instead of C++

I generated my solution file from the GenerateProjectFiles.bat and the solution file was built successfully. When opening the solutions file, all the files in the solution are C# files and not C++ files.

I’m using VS2012 Pro, and I’ve only ever developed in C#/WPF - which is I believe how my preferences are setup with my Visual Studio account. Was this solution supposed to be created with C# files, and if not, how do I change my preferences to have the batch create C++ files?

(Apologies, as I’m not extremely familiar with C++ setup within Visual Studio.)

The engine utilizes a custom build system that is defined by C# files. So in every module of the application you should find 1 or more *.cs files. However, in a module’s sub-folders, you should find .h/.cpp files which make up the C++ code.

I just saw that. Was unaware that the engine was using any C#. Awesome! Thank you!

No problem. Note that the engine itself does not use C#, just the build system (and some other tools).