Alessandro
Alessandro

Reputation: 1086

Is it possible to read/retrieve a c++ source code from a .sln file?

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?

Upvotes: 2

Views: 2611

Answers (2)

David van rijn
David van rijn

Reputation: 2220

No, a sln file only contains references to your files. So at least he now knows the name of your file ;)

Upvotes: 0

Thiago Duarte
Thiago Duarte

Reputation: 941

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.

Upvotes: 5

Related Questions