You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

325 lines
5.0 KiB

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