.gitignore 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  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. *.sln.docstates
  7. .vs
  8. .vscode
  9. # Build results
  10. [Dd]ebug*/
  11. [Rr]elease*/
  12. x64/
  13. build/
  14. [Bb]in/
  15. [Oo]bj/
  16. AppDir/
  17. # Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets
  18. !packages/*/build/
  19. # MSTest test Results
  20. [Tt]est[Rr]esult*/
  21. [Bb]uild[Ll]og.*
  22. *_i.c
  23. *_p.c
  24. *.ilk
  25. *.meta
  26. *.obj
  27. *.pch
  28. *.pdb
  29. *.pgc
  30. *.pgd
  31. *.rsp
  32. *.sbr
  33. *.tlb
  34. *.tli
  35. *.tlh
  36. *.tmp
  37. *.tmp_proj
  38. *.log
  39. *.vspscc
  40. *.vssscc
  41. .builds
  42. *.pidb
  43. *.log
  44. *.scc
  45. # Visual C++ cache files
  46. ipch/
  47. *.aps
  48. *.ncb
  49. *.opensdf
  50. *.sdf
  51. *.cachefile
  52. # Visual Studio profiler
  53. *.psess
  54. *.vsp
  55. *.vspx
  56. # Guidance Automation Toolkit
  57. *.gpState
  58. # ReSharper is a .NET coding add-in
  59. _ReSharper*/
  60. *.[Rr]e[Ss]harper
  61. # TeamCity is a build add-in
  62. _TeamCity*
  63. # DotCover is a Code Coverage Tool
  64. *.dotCover
  65. # Rider is a Visual Studio alternative
  66. .idea/*
  67. # NCrunch
  68. *.ncrunch*
  69. .*crunch*.local.xml
  70. # Installshield output folder
  71. [Ee]xpress/
  72. # DocProject is a documentation generator add-in
  73. DocProject/buildhelp/
  74. DocProject/Help/*.HxT
  75. DocProject/Help/*.HxC
  76. DocProject/Help/*.hhc
  77. DocProject/Help/*.hhk
  78. DocProject/Help/*.hhp
  79. DocProject/Help/Html2
  80. DocProject/Help/html
  81. # Click-Once directory
  82. publish*/
  83. # Publish Web Output
  84. *.Publish.xml
  85. # NuGet Packages Directory
  86. ## TODO: If you have NuGet Package Restore enabled, uncomment the next line
  87. #packages/
  88. # Windows Azure Build Output
  89. csx
  90. *.build.csdef
  91. # Windows Store app package directory
  92. AppPackages/
  93. # Others
  94. sql/
  95. *.Cache
  96. ClientBin/
  97. [Ss]tyle[Cc]op.*
  98. ~$*
  99. *~
  100. *.dbmdl
  101. *.[Pp]ublish.xml
  102. *.pfx
  103. *.publishsettings
  104. packages/*
  105. *.config
  106. # Include nuget.config
  107. !nuget.config
  108. # RIA/Silverlight projects
  109. Generated_Code/
  110. # Backup & report files from converting an old project file to a newer
  111. # Visual Studio version. Backup files are not needed, because we have git ;-)
  112. _UpgradeReport_Files/
  113. Backup*/
  114. UpgradeLog*.XML
  115. UpgradeLog*.htm
  116. # SQL Server files
  117. App_Data/*.mdf
  118. App_Data/*.ldf
  119. #LightSwitch generated files
  120. GeneratedArtifacts/
  121. _Pvt_Extensions/
  122. ModelManifest.xml
  123. # =========================
  124. # Windows detritus
  125. # =========================
  126. # Windows image file caches
  127. Thumbs.db
  128. ehthumbs.db
  129. # Folder config file
  130. Desktop.ini
  131. # Recycle Bin used on file shares
  132. $RECYCLE.BIN/
  133. # Mac desktop service store files
  134. .DS_Store
  135. # VS Launch Settings
  136. launchSettings.json
  137. # NetCore Publishing Profiles
  138. PublishProfiles/
  139. # Glade backup files
  140. *.glade~