.gitignore 3.8 KB

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