Adding Files to an empty project w/ Visual Studio 2008
-
Hello, I am trying to learn C++/CLI from a text. I have downloaded source code from the books website. I then created an empty project (CLR Console App.). Now I want to add some example source code from the book: File 1. HelloWorld.cpp //OK, This I was able to add as a source file to the project. File 2. HelloWorld.obj //How do I add this? //Do I need to add this? File 3.HelloWorld.exe.manifest //How do I add this? //Do I need to add this? File 4. HelloWorld.exe //How do I add this? //Do I need to add this? shouldn't the .exe be created at runtime? I would really appreciate some input about File 2, 3, 4 with the followig caveat-- If you want to respond w/ "read the MSDN documentation" or "is this a joke question?" (which I have received in the past) don't bother to respond. I am programming as a hobby an dam grateful for any help... thanks a lot:confused:
-
Hello, I am trying to learn C++/CLI from a text. I have downloaded source code from the books website. I then created an empty project (CLR Console App.). Now I want to add some example source code from the book: File 1. HelloWorld.cpp //OK, This I was able to add as a source file to the project. File 2. HelloWorld.obj //How do I add this? //Do I need to add this? File 3.HelloWorld.exe.manifest //How do I add this? //Do I need to add this? File 4. HelloWorld.exe //How do I add this? //Do I need to add this? shouldn't the .exe be created at runtime? I would really appreciate some input about File 2, 3, 4 with the followig caveat-- If you want to respond w/ "read the MSDN documentation" or "is this a joke question?" (which I have received in the past) don't bother to respond. I am programming as a hobby an dam grateful for any help... thanks a lot:confused:
...---... wrote:
File 2. HelloWorld.obj //How do I add this? //Do I need to add this?
No, that file is produced by the compiler.
...---... wrote:
I am trying to learn C++/CLI from a text.
My suggestion, to anyone, would be to start with ANSI C and C++ before trying to learn C++/CLI.
led mike