我一直在为所有.NET项目使用Visual Studio 2012。对于源代码控制,我一直在使用git。
现在我的项目由几个帮助库组成,但重要的项目是WEB和SERVICE项目。这些应该在调试时一起启动。现在我知道如何设置我需要完成的设置,他们坚持。但是,如果我将回购下拉到新机器,那些设置就会消失。以下是我的.gitignore
。我错过了什么吗?
[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
我没有编辑或创建这个文件,它是我在上一个工作场所使用的文件。
答案 0 :(得分:1)
Visual Studio的设置存储在.suo
文件中。
这是在.gitignore
,因此不会从其他任何回购中删除。
I would not suggest removing it from your .gitignore
file though.