gitignore 4.6 KB

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