.gitignore 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381
  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. # ---> JetBrains
  93. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
  94. *.iml
  95. ## Directory-based project format:
  96. .idea/
  97. # if you remove the above rule, at least ignore the following:
  98. # User-specific stuff:
  99. # .idea/workspace.xml
  100. # .idea/tasks.xml
  101. # .idea/dictionaries
  102. # Sensitive or high-churn files:
  103. # .idea/dataSources.ids
  104. # .idea/dataSources.xml
  105. # .idea/sqlDataSources.xml
  106. # .idea/dynamic.xml
  107. # .idea/uiDesigner.xml
  108. # Gradle:
  109. # .idea/gradle.xml
  110. # .idea/libraries
  111. # Mongo Explorer plugin:
  112. # .idea/mongoSettings.xml
  113. ## File-based project format:
  114. *.ipr
  115. *.iws
  116. ## Plugin-specific files:
  117. # IntelliJ
  118. /out/
  119. # mpeltonen/sbt-idea plugin
  120. .idea_modules/
  121. # JIRA plugin
  122. atlassian-ide-plugin.xml
  123. # Crashlytics plugin (for Android Studio and IntelliJ)
  124. com_crashlytics_export_strings.xml
  125. crashlytics.properties
  126. crashlytics-build.properties
  127. # ---> VisualStudio
  128. ## Ignore Visual Studio temporary files, build results, and
  129. ## files generated by popular Visual Studio add-ons.
  130. # User-specific files
  131. *.suo
  132. *.user
  133. *.userosscache
  134. *.sln.docstates
  135. # User-specific files (MonoDevelop/Xamarin Studio)
  136. *.userprefs
  137. # Build results
  138. [Dd]ebug/
  139. [Dd]ebugPublic/
  140. [Rr]elease/
  141. [Rr]eleases/
  142. x64/
  143. x86/
  144. build/
  145. bld/
  146. [Bb]in/
  147. [Oo]bj/
  148. # Visual Studio 2015 cache/options directory
  149. .vs/
  150. # Uncomment if you have tasks that create the project's static files in wwwroot
  151. #wwwroot/
  152. # MSTest test Results
  153. [Tt]est[Rr]esult*/
  154. [Bb]uild[Ll]og.*
  155. # NUNIT
  156. *.VisualState.xml
  157. TestResult.xml
  158. # Build Results of an ATL Project
  159. [Dd]ebugPS/
  160. [Rr]eleasePS/
  161. dlldata.c
  162. # DNX
  163. project.lock.json
  164. artifacts/
  165. *_i.c
  166. *_p.c
  167. *_i.h
  168. *.ilk
  169. *.meta
  170. *.obj
  171. *.pch
  172. *.pdb
  173. *.pgc
  174. *.pgd
  175. *.rsp
  176. *.sbr
  177. *.tlb
  178. *.tli
  179. *.tlh
  180. *.tmp
  181. *.tmp_proj
  182. *.log
  183. *.vspscc
  184. *.vssscc
  185. .builds
  186. *.pidb
  187. *.svclog
  188. *.scc
  189. # Chutzpah Test files
  190. _Chutzpah*
  191. # Visual C++ cache files
  192. ipch/
  193. *.aps
  194. *.ncb
  195. *.opensdf
  196. *.sdf
  197. *.cachefile
  198. # Visual Studio profiler
  199. *.psess
  200. *.vsp
  201. *.vspx
  202. *.sap
  203. # TFS 2012 Local Workspace
  204. $tf/
  205. # Guidance Automation Toolkit
  206. *.gpState
  207. # ReSharper is a .NET coding add-in
  208. _ReSharper*/
  209. *.[Rr]e[Ss]harper
  210. *.DotSettings.user
  211. # JustCode is a .NET coding add-in
  212. .JustCode
  213. # TeamCity is a build add-in
  214. _TeamCity*
  215. # DotCover is a Code Coverage Tool
  216. *.dotCover
  217. # NCrunch
  218. _NCrunch_*
  219. .*crunch*.local.xml
  220. nCrunchTemp_*
  221. # MightyMoose
  222. *.mm.*
  223. AutoTest.Net/
  224. # Web workbench (sass)
  225. .sass-cache/
  226. # Installshield output folder
  227. [Ee]xpress/
  228. # DocProject is a documentation generator add-in
  229. DocProject/buildhelp/
  230. DocProject/Help/*.HxT
  231. DocProject/Help/*.HxC
  232. DocProject/Help/*.hhc
  233. DocProject/Help/*.hhk
  234. DocProject/Help/*.hhp
  235. DocProject/Help/Html2
  236. DocProject/Help/html
  237. # Click-Once directory
  238. publish/
  239. # Publish Web Output
  240. *.[Pp]ublish.xml
  241. *.azurePubxml
  242. # TODO: Comment the next line if you want to checkin your web deploy settings
  243. # but database connection strings (with potential passwords) will be unencrypted
  244. *.pubxml
  245. *.publishproj
  246. # NuGet Packages
  247. *.nupkg
  248. # The packages folder can be ignored because of Package Restore
  249. **/packages/*
  250. # except build/, which is used as an MSBuild target.
  251. !**/packages/build/
  252. # Uncomment if necessary however generally it will be regenerated when needed
  253. #!**/packages/repositories.config
  254. # Windows Azure Build Output
  255. csx/
  256. *.build.csdef
  257. # Windows Store app package directory
  258. AppPackages/
  259. # Visual Studio cache files
  260. # files ending in .cache can be ignored
  261. *.[Cc]ache
  262. # but keep track of directories ending in .cache
  263. !*.[Cc]ache/
  264. # Others
  265. ClientBin/
  266. [Ss]tyle[Cc]op.*
  267. ~$*
  268. *~
  269. *.dbmdl
  270. *.dbproj.schemaview
  271. *.pfx
  272. *.publishsettings
  273. node_modules/
  274. orleans.codegen.cs
  275. # RIA/Silverlight projects
  276. Generated_Code/
  277. # Backup & report files from converting an old project file
  278. # to a newer Visual Studio version. Backup files are not needed,
  279. # because we have git ;-)
  280. _UpgradeReport_Files/
  281. Backup*/
  282. UpgradeLog*.XML
  283. UpgradeLog*.htm
  284. # SQL Server files
  285. *.mdf
  286. *.ldf
  287. # Business Intelligence projects
  288. *.rdl.data
  289. *.bim.layout
  290. *.bim_*.settings
  291. # Microsoft Fakes
  292. FakesAssemblies/
  293. # Node.js Tools for Visual Studio
  294. .ntvs_analysis.dat
  295. # Visual Studio 6 build log
  296. *.plg
  297. # Visual Studio 6 workspace options file
  298. *.opt
  299. # Visual Studio LightSwitch build output
  300. **/*.HTMLClient/GeneratedArtifacts
  301. **/*.DesktopClient/GeneratedArtifacts
  302. **/*.DesktopClient/ModelManifest.xml
  303. **/*.Server/GeneratedArtifacts
  304. **/*.Server/ModelManifest.xml
  305. _Pvt_Extensions
  306. # ---> VisualStudioCode
  307. .settings