.gitignore 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332
  1. # ---> Project
  2. Build/
  3. # ---> VisualStudio
  4. ## Ignore Visual Studio temporary files, build results, and
  5. ## files generated by popular Visual Studio add-ons.
  6. # User-specific files
  7. *.suo
  8. *.user
  9. *.userosscache
  10. *.sln.docstates
  11. # User-specific files (MonoDevelop/Xamarin Studio)
  12. *.userprefs
  13. # Build results
  14. [Dd]ebug/
  15. [Dd]ebugPublic/
  16. [Rr]elease/
  17. [Rr]eleases/
  18. x64/
  19. x86/
  20. build/
  21. bld/
  22. [Bb]in/
  23. [Oo]bj/
  24. # Visual Studio 2015 cache/options directory
  25. .vs/
  26. # Uncomment if you have tasks that create the project's static files in wwwroot
  27. #wwwroot/
  28. # MSTest test Results
  29. [Tt]est[Rr]esult*/
  30. [Bb]uild[Ll]og.*
  31. # NUNIT
  32. *.VisualState.xml
  33. TestResult.xml
  34. # Build Results of an ATL Project
  35. [Dd]ebugPS/
  36. [Rr]eleasePS/
  37. dlldata.c
  38. # DNX
  39. project.lock.json
  40. artifacts/
  41. *_i.c
  42. *_p.c
  43. *_i.h
  44. *.ilk
  45. *.meta
  46. *.obj
  47. *.pch
  48. *.pdb
  49. *.pgc
  50. *.pgd
  51. *.rsp
  52. *.sbr
  53. *.tlb
  54. *.tli
  55. *.tlh
  56. *.tmp
  57. *.tmp_proj
  58. *.log
  59. *.vspscc
  60. *.vssscc
  61. .builds
  62. *.pidb
  63. *.svclog
  64. *.scc
  65. # Chutzpah Test files
  66. _Chutzpah*
  67. # Visual C++ cache files
  68. ipch/
  69. *.aps
  70. *.ncb
  71. *.opensdf
  72. *.sdf
  73. *.cachefile
  74. # Visual Studio profiler
  75. *.psess
  76. *.vsp
  77. *.vspx
  78. *.sap
  79. # TFS 2012 Local Workspace
  80. $tf/
  81. # Guidance Automation Toolkit
  82. *.gpState
  83. # ReSharper is a .NET coding add-in
  84. _ReSharper*/
  85. *.[Rr]e[Ss]harper
  86. *.DotSettings.user
  87. # JustCode is a .NET coding add-in
  88. .JustCode
  89. # TeamCity is a build add-in
  90. _TeamCity*
  91. # DotCover is a Code Coverage Tool
  92. *.dotCover
  93. # NCrunch
  94. _NCrunch_*
  95. .*crunch*.local.xml
  96. nCrunchTemp_*
  97. # MightyMoose
  98. *.mm.*
  99. AutoTest.Net/
  100. # Web workbench (sass)
  101. .sass-cache/
  102. # Installshield output folder
  103. [Ee]xpress/
  104. # DocProject is a documentation generator add-in
  105. DocProject/buildhelp/
  106. DocProject/Help/*.HxT
  107. DocProject/Help/*.HxC
  108. DocProject/Help/*.hhc
  109. DocProject/Help/*.hhk
  110. DocProject/Help/*.hhp
  111. DocProject/Help/Html2
  112. DocProject/Help/html
  113. # Click-Once directory
  114. publish/
  115. # Publish Web Output
  116. *.[Pp]ublish.xml
  117. *.azurePubxml
  118. # TODO: Comment the next line if you want to checkin your web deploy settings
  119. # but database connection strings (with potential passwords) will be unencrypted
  120. *.pubxml
  121. *.publishproj
  122. # NuGet Packages
  123. *.nupkg
  124. # The packages folder can be ignored because of Package Restore
  125. **/packages/*
  126. # except build/, which is used as an MSBuild target.
  127. !**/packages/build/
  128. # Uncomment if necessary however generally it will be regenerated when needed
  129. #!**/packages/repositories.config
  130. # Windows Azure Build Output
  131. csx/
  132. *.build.csdef
  133. # Windows Store app package directory
  134. AppPackages/
  135. # Visual Studio cache files
  136. # files ending in .cache can be ignored
  137. *.[Cc]ache
  138. # but keep track of directories ending in .cache
  139. !*.[Cc]ache/
  140. # Others
  141. ClientBin/
  142. [Ss]tyle[Cc]op.*
  143. ~$*
  144. *~
  145. *.dbmdl
  146. *.dbproj.schemaview
  147. *.pfx
  148. *.publishsettings
  149. node_modules/
  150. orleans.codegen.cs
  151. # RIA/Silverlight projects
  152. Generated_Code/
  153. # Backup & report files from converting an old project file
  154. # to a newer Visual Studio version. Backup files are not needed,
  155. # because we have git ;-)
  156. _UpgradeReport_Files/
  157. Backup*/
  158. UpgradeLog*.XML
  159. UpgradeLog*.htm
  160. # SQL Server files
  161. *.mdf
  162. *.ldf
  163. # Business Intelligence projects
  164. *.rdl.data
  165. *.bim.layout
  166. *.bim_*.settings
  167. # Microsoft Fakes
  168. FakesAssemblies/
  169. # Node.js Tools for Visual Studio
  170. .ntvs_analysis.dat
  171. # Visual Studio 6 build log
  172. *.plg
  173. # Visual Studio 6 workspace options file
  174. *.opt
  175. # Visual Studio LightSwitch build output
  176. **/*.HTMLClient/GeneratedArtifacts
  177. **/*.DesktopClient/GeneratedArtifacts
  178. **/*.DesktopClient/ModelManifest.xml
  179. **/*.Server/GeneratedArtifacts
  180. **/*.Server/ModelManifest.xml
  181. _Pvt_Extensions
  182. # ---> C Sharp
  183. # Build Folders (you can keep bin if you'd like, to store dlls and pdbs)
  184. [Bb]in/
  185. [Oo]bj/
  186. # mstest test results
  187. TestResults
  188. ## Ignore Visual Studio temporary files, build results, and
  189. ## files generated by popular Visual Studio add-ons.
  190. # User-specific files
  191. *.suo
  192. *.user
  193. *.sln.docstates
  194. # Build results
  195. [Dd]ebug/
  196. [Rr]elease/
  197. x64/
  198. *_i.c
  199. *_p.c
  200. *.ilk
  201. *.meta
  202. *.obj
  203. *.pch
  204. *.pdb
  205. *.pgc
  206. *.pgd
  207. *.rsp
  208. *.sbr
  209. *.tlb
  210. *.tli
  211. *.tlh
  212. *.tmp
  213. *.log
  214. *.vspscc
  215. *.vssscc
  216. .builds
  217. # Visual C++ cache files
  218. ipch/
  219. *.aps
  220. *.ncb
  221. *.opensdf
  222. *.sdf
  223. # Visual Studio profiler
  224. *.psess
  225. *.vsp
  226. *.vspx
  227. # Guidance Automation Toolkit
  228. *.gpState
  229. # ReSharper is a .NET coding add-in
  230. _ReSharper*
  231. # NCrunch
  232. *.ncrunch*
  233. .*crunch*.local.xml
  234. # Installshield output folder
  235. [Ee]xpress
  236. # DocProject is a documentation generator add-in
  237. DocProject/buildhelp/
  238. DocProject/Help/*.HxT
  239. DocProject/Help/*.HxC
  240. DocProject/Help/*.hhc
  241. DocProject/Help/*.hhk
  242. DocProject/Help/*.hhp
  243. DocProject/Help/Html2
  244. DocProject/Help/html
  245. # Click-Once directory
  246. publish
  247. # Publish Web Output
  248. *.Publish.xml
  249. # NuGet Packages Directory
  250. packages
  251. # Windows Azure Build Output
  252. csx
  253. *.build.csdef
  254. # Windows Store app package directory
  255. AppPackages/
  256. # Others
  257. [Bb]in
  258. [Oo]bj
  259. sql
  260. TestResults
  261. [Tt]est[Rr]esult*
  262. *.Cache
  263. ClientBin
  264. [Ss]tyle[Cc]op.*
  265. ~$*
  266. *.dbmdl
  267. Generated_Code #added for RIA/Silverlight projects
  268. # Backup & report files from converting an old project file to a newer
  269. # Visual Studio version. Backup files are not needed, because we have git ;-)
  270. _UpgradeReport_Files/
  271. Backup*/
  272. UpgradeLog*.XML