Here is my problem. I have a certain files from the solution (let’s say Web.config) that I’ve changed and will never want to check-in since the changes are referring to my machine only. Is there a way to say in TFS to ignore changes in a certain file and remove it from pending changes window. Of course, I can skip this file in every check-in, but there is always a change to forget and check-in by mistake. For example, there is a similar ignore list in AnkhSVN.
Share
Some parts of
{app,web}.configfiles can be delegated to another file. Notably<connectionStrings>.In your
app.configorweb.config:in
LocalConnectionStrings.confighave (<connectionStrings>is the root element):Thus each developer has a
LocalConnectionStrings.configwhich is in the project, but not in source control set with their private settings while the{web,app}.confighas shared settings. Unfortunately this only works with a limited set of system defined configuration elements.