I've been using Visual Studio 2012 for all of my .NET projects. For source control I've been using git.
Now my project consists of several helper libraries, but the important projects are the WEB and SERVICE projects. These should start together when debugging. Now I know how to set the settings I need to accomplish this, and they stick. However, if I pull the repo down to a new machine, those settings are gone. Below is my .gitignore
. Am I missing something?
[Oo]bj/
[Bb]in/
$tf/
*.user
*.suo
*.[Cc]ache
*.bak
*.ncb
*.log
*.DS_Store
*.xap
*.dbmdl
[Tt]humbs.db
_ReSharper.*
*.resharper
Ankh.NoLoad]
*.cache
*.v11.suo
*.suo
*.pdb
*.csprojResolveAssemblyReference.cache
*.csproj.FileListAbsolute.txt
*.mdf
*.ldf
I havn't edited or created this file, it is the one I used from my last place of employment.