Ignore *.suo and *.user as these are user specific preference files from Visual Studio
http://stackoverflow.com/questions/72298/should-i-add-the-visual-studio-suo-and-user-files-to-source-controllink-sitting
parent
92fbe675b5
commit
b58a474105
|
@ -10,6 +10,12 @@
|
||||||
*.pidb
|
*.pidb
|
||||||
*.dll.build
|
*.dll.build
|
||||||
*.dll
|
*.dll
|
||||||
|
|
||||||
|
# Ignore .user and .suo files as these are user preference specific
|
||||||
|
# http://stackoverflow.com/questions/72298/should-i-add-the-visual-studio-suo-and-user-files-to-source-control
|
||||||
|
*.suo
|
||||||
|
*.user
|
||||||
|
|
||||||
*.VisualState.xml
|
*.VisualState.xml
|
||||||
*/*/obj
|
*/*/obj
|
||||||
*/*/*/obj
|
*/*/*/obj
|
||||||
|
@ -65,11 +71,6 @@ bin/crashes/
|
||||||
Examples/*.dll
|
Examples/*.dll
|
||||||
OpenSim.build
|
OpenSim.build
|
||||||
OpenSim.sln
|
OpenSim.sln
|
||||||
OpenSim.suo
|
|
||||||
|
|
||||||
# This is generated if a vs2010 OpenSim.sln is loaded into vs2012
|
|
||||||
OpenSim.v11.suo
|
|
||||||
|
|
||||||
OpenSim.userprefs
|
OpenSim.userprefs
|
||||||
Prebuild/Prebuild.build
|
Prebuild/Prebuild.build
|
||||||
Prebuild/Prebuild.sln
|
Prebuild/Prebuild.sln
|
||||||
|
|
Loading…
Reference in New Issue