I wanted to create a portable application (without installers), but as far as I know there is no way to export an executable in vs2013, only a setup. So I was wondering if it is okay to take the executable from the Debug folder. (Of course I would run/build it first to make sure it is the latest build)
Is it okay to do that, or is there a better way to get a standalone executable from a vs2013 project?
Also, in this case you can assume that anyone who would run the program would have the proper .NET framework installed etc.
Thanks in advance!
Update: My project does not include any DLL's, and thanks for the answers! It's all clear now.