Reputation: 47
I want to share my Visual Studio solution with someone else but I'm not sure what are the minimum files besides the classes are needed for them to compile on their end. I have 3 projects in my solution.
Upvotes: 0
Views: 132
Reputation: 642
You can check the usual ".gitignore" file that is used to avoid commiting useless or generated files, leaving your solution with only the files you need to compile properly.
You can get it there for example : https://www.gitignore.io/api/visualstudio
You can also clean your solution (Build -> Clean Solution) to delete tempory, built and generated files. But the gitignore is more complete :)
Upvotes: 1