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.

VisualStudio.gitignore 5.3KB

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