.gitignore 5.5 KB

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