.gitignore 3.4 KB

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