I sent a .sln file (instead of .cpp file) to a friend; will he be able to read the source code from it or is it just a file used from Visual Studio to load projects?
Is it possible to read/retrieve a c++ source code from a .sln file?
2.2k views Asked by Alessandro At
2
No, SLN files only store the project settings. You should send him the whole project in a compressed file.
Just so you know, the recommended way to share code with other people is using a version control system, like GIT.