.gitignore 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. ## Ignore Visual Studio temporary files, build results, and
  2. ## files generated by popular Visual Studio add-ons.
  3. # User-specific files
  4. *.suo
  5. *.user
  6. *.userosscache
  7. *.sln.docstates
  8. # User-specific files (MonoDevelop/Xamarin Studio)
  9. *.userprefs
  10. # Build results
  11. [Dd]ebug/
  12. [Dd]ebugPublic/
  13. [Rr]elease/
  14. [Rr]eleases/
  15. x64/
  16. x86/
  17. build/
  18. bld/
  19. [Bb]in/
  20. [Oo]bj/
  21. Generated Files/
  22. BundleArtifacts/
  23. *.o
  24. *.bc
  25. *.data
  26. *.html
  27. *.mem
  28. *.js
  29. # Visual Studio 2015 cache/options directory
  30. .vs/
  31. # Visual Studio 2015 intellisense database
  32. *.VC.db
  33. *.VC.opendb
  34. # MSTest test Results
  35. [Tt]est[Rr]esult*/
  36. [Bb]uild[Ll]og.*
  37. # NUNIT
  38. *.VisualState.xml
  39. TestResult.xml
  40. # Build Results of an ATL Project
  41. [Dd]ebugPS/
  42. [Rr]eleasePS/
  43. dlldata.c
  44. # DNX
  45. project.lock.json
  46. artifacts/
  47. *_i.c
  48. *_p.c
  49. *_i.h
  50. *.ilk
  51. *.meta
  52. *.obj
  53. *.pch
  54. *.pdb
  55. *.pgc
  56. *.pgd
  57. *.rsp
  58. *.sbr
  59. *.tlb
  60. *.tli
  61. *.tlh
  62. *.tmp
  63. *.tmp_proj
  64. *.log
  65. *.vspscc
  66. *.vssscc
  67. .builds
  68. *.pidb
  69. *.svclog
  70. *.scc
  71. # Chutzpah Test files
  72. _Chutzpah*
  73. # Visual C++ cache files
  74. ipch/
  75. *.aps
  76. *.ncb
  77. *.opensdf
  78. *.sdf
  79. *.cachefile
  80. # Visual Studio profiler
  81. *.psess
  82. *.vsp
  83. *.vspx
  84. # TFS 2012 Local Workspace
  85. $tf/
  86. # Guidance Automation Toolkit
  87. *.gpState
  88. # ReSharper is a .NET coding add-in
  89. _ReSharper*/
  90. *.[Rr]e[Ss]harper
  91. *.DotSettings.user
  92. # JustCode is a .NET coding add-in
  93. .JustCode
  94. # TeamCity is a build add-in
  95. _TeamCity*
  96. # DotCover is a Code Coverage Tool
  97. *.dotCover
  98. # NCrunch
  99. _NCrunch_*
  100. .*crunch*.local.xml
  101. # MightyMoose
  102. *.mm.*
  103. AutoTest.Net/
  104. # Web workbench (sass)
  105. .sass-cache/
  106. # Installshield output folder
  107. [Ee]xpress/
  108. # DocProject is a documentation generator add-in
  109. DocProject/buildhelp/
  110. DocProject/Help/*.HxT
  111. DocProject/Help/*.HxC
  112. DocProject/Help/*.hhc
  113. DocProject/Help/*.hhk
  114. DocProject/Help/*.hhp
  115. DocProject/Help/Html2
  116. DocProject/Help/html
  117. # Click-Once directory
  118. publish/
  119. # Publish Web Output
  120. *.[Pp]ublish.xml
  121. *.azurePubxml
  122. ## TODO: Comment the next line if you want to checkin your
  123. ## web deploy settings but do note that will include unencrypted
  124. ## passwords
  125. #*.pubxml
  126. *.publishproj
  127. # NuGet Packages
  128. *.nupkg
  129. # The packages folder can be ignored because of Package Restore
  130. **/packages/*
  131. # except build/, which is used as an MSBuild target.
  132. !**/packages/build/
  133. # Uncomment if necessary however generally it will be regenerated when needed
  134. #!**/packages/repositories.config
  135. # Windows Azure Build Output
  136. csx/
  137. *.build.csdef
  138. # Windows Store app package directory
  139. AppPackages/
  140. # Visual Studio cache files
  141. # files ending in .cache can be ignored
  142. *.[Cc]ache
  143. # but keep track of directories ending in .cache
  144. !*.[Cc]ache/
  145. # Others
  146. ClientBin/
  147. [Ss]tyle[Cc]op.*
  148. ~$*
  149. *~
  150. *.dbmdl
  151. *.dbproj.schemaview
  152. *.pfx
  153. *.publishsettings
  154. node_modules/
  155. orleans.codegen.cs
  156. # RIA/Silverlight projects
  157. Generated_Code/
  158. # Backup & report files from converting an old project file
  159. # to a newer Visual Studio version. Backup files are not needed,
  160. # because we have git ;-)
  161. _UpgradeReport_Files/
  162. Backup*/
  163. UpgradeLog*.XML
  164. UpgradeLog*.htm
  165. # SQL Server files
  166. *.mdf
  167. *.ldf
  168. # Business Intelligence projects
  169. *.rdl.data
  170. *.bim.layout
  171. *.bim_*.settings
  172. # Microsoft Fakes
  173. FakesAssemblies/
  174. # Node.js Tools for Visual Studio
  175. .ntvs_analysis.dat
  176. # Visual Studio 6 build log
  177. *.plg
  178. # Visual Studio 6 workspace options file
  179. *.opt
  180. # LightSwitch generated files
  181. GeneratedArtifacts/
  182. _Pvt_Extensions/
  183. ModelManifest.xml
  184. # SDL2 associated file
  185. SDL2
  186. !SDL2/README.txt
  187. android/gen
  188. android/libs
  189. android/so
  190. *.properties
  191. *.keystore
  192. resources
  193. emscripten
  194. sdlpal
  195. xcshareddata
  196. xcuserdata