.gitignore 3.7 KB

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