is there any way to create a new visual studio project without using IDE, Instead use command prompt??
I am working on a project which will generate small C++ progra
Visual Studio projects are just XML files, so you can just study their format and write them out. (The format changed from 2008 to 2010.) Solution files are a custom text format, but not that complicated either.
Finally, devenv.exe has a switch for "don't start the IDE, just compile this solution on the command line", which you can use to compile the resulting solution.