.gitignore 5.7 KB

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