.gitignore 3.7 KB

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