Click here to Skip to main content
15,886,362 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
I want to delete some folders from my Visual Studio source code to make it smaller to download the source code...

What I have tried:

Release or Debug but sometimes that's problematic
Posted
Updated 3-Feb-17 8:18am
Comments
Philippe Mori 3-Feb-17 16:02pm    
A good start is to do "Clean" your solution for each configuration.

Anything auto-generated at build time - mostly meaning the bin and obj directories are OK to delete if you haven't added anything to those directories yourself, but it may depend on the project type.
 
Share this answer
 
You should also delete or mask the sensitive information (server name, username, password, etc...) in your configuration file.
 
Share this answer
 
Comments
john1990_1 4-Feb-17 4:48am    
How?
Bryian Tan 4-Feb-17 10:03am    
Do you have username, password, server name hardcoded in the web.cofig? Basically, anything that you don't want to share with other people. You should delete or mask it with ***. Then provide instruction to the user to update the web.config using their own username and password, server name, etc...

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900