.gitignore 5.4 KB

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