PhillipsJP
PhillipsJP

Reputation: 47

Files that are needed to build a Visual Studio solution

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

Answers (1)

kipy
kipy

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

Related Questions