.gitignore 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485
  1. ## Ignore Visual Studio temporary files, build results, and
  2. ## files generated by popular Visual Studio add-ons.
  3. ##
  4. ## Get latest from `dotnet new gitignore`
  5. data/*
  6. # dotenv files
  7. .env
  8. # User-specific files
  9. *.rsuser
  10. *.suo
  11. *.user
  12. *.userosscache
  13. *.sln.docstates
  14. # User-specific files (MonoDevelop/Xamarin Studio)
  15. *.userprefs
  16. # Mono auto generated files
  17. mono_crash.*
  18. # Build results
  19. [Dd]ebug/
  20. [Dd]ebugPublic/
  21. [Rr]elease/
  22. [Rr]eleases/
  23. x64/
  24. x86/
  25. [Ww][Ii][Nn]32/
  26. [Aa][Rr][Mm]/
  27. [Aa][Rr][Mm]64/
  28. bld/
  29. [Bb]in/
  30. [Oo]bj/
  31. [Ll]og/
  32. [Ll]ogs/
  33. # Visual Studio 2015/2017 cache/options directory
  34. .vs/
  35. # Uncomment if you have tasks that create the project's static files in wwwroot
  36. #wwwroot/
  37. # Visual Studio 2017 auto generated files
  38. Generated\ Files/
  39. # MSTest test Results
  40. [Tt]est[Rr]esult*/
  41. [Bb]uild[Ll]og.*
  42. # NUnit
  43. *.VisualState.xml
  44. TestResult.xml
  45. nunit-*.xml
  46. # Build Results of an ATL Project
  47. [Dd]ebugPS/
  48. [Rr]eleasePS/
  49. dlldata.c
  50. # Benchmark Results
  51. BenchmarkDotNet.Artifacts/
  52. # .NET
  53. project.lock.json
  54. project.fragment.lock.json
  55. artifacts/
  56. # Tye
  57. .tye/
  58. # ASP.NET Scaffolding
  59. ScaffoldingReadMe.txt
  60. # StyleCop
  61. StyleCopReport.xml
  62. # Files built by Visual Studio
  63. *_i.c
  64. *_p.c
  65. *_h.h
  66. *.ilk
  67. *.meta
  68. *.obj
  69. *.iobj
  70. *.pch
  71. *.pdb
  72. *.ipdb
  73. *.pgc
  74. *.pgd
  75. *.rsp
  76. *.sbr
  77. *.tlb
  78. *.tli
  79. *.tlh
  80. *.tmp
  81. *.tmp_proj
  82. *_wpftmp.csproj
  83. *.log
  84. *.tlog
  85. *.vspscc
  86. *.vssscc
  87. .builds
  88. *.pidb
  89. *.svclog
  90. *.scc
  91. # Chutzpah Test files
  92. _Chutzpah*
  93. # Visual C++ cache files
  94. ipch/
  95. *.aps
  96. *.ncb
  97. *.opendb
  98. *.opensdf
  99. *.sdf
  100. *.cachefile
  101. *.VC.db
  102. *.VC.VC.opendb
  103. # Visual Studio profiler
  104. *.psess
  105. *.vsp
  106. *.vspx
  107. *.sap
  108. # Visual Studio Trace Files
  109. *.e2e
  110. # TFS 2012 Local Workspace
  111. $tf/
  112. # Guidance Automation Toolkit
  113. *.gpState
  114. # ReSharper is a .NET coding add-in
  115. _ReSharper*/
  116. *.[Rr]e[Ss]harper
  117. *.DotSettings.user
  118. # TeamCity is a build add-in
  119. _TeamCity*
  120. # DotCover is a Code Coverage Tool
  121. *.dotCover
  122. # AxoCover is a Code Coverage Tool
  123. .axoCover/*
  124. !.axoCover/settings.json
  125. # Coverlet is a free, cross platform Code Coverage Tool
  126. coverage*.json
  127. coverage*.xml
  128. coverage*.info
  129. # Visual Studio code coverage results
  130. *.coverage
  131. *.coveragexml
  132. # NCrunch
  133. _NCrunch_*
  134. .*crunch*.local.xml
  135. nCrunchTemp_*
  136. # MightyMoose
  137. *.mm.*
  138. AutoTest.Net/
  139. # Web workbench (sass)
  140. .sass-cache/
  141. # Installshield output folder
  142. [Ee]xpress/
  143. # DocProject is a documentation generator add-in
  144. DocProject/buildhelp/
  145. DocProject/Help/*.HxT
  146. DocProject/Help/*.HxC
  147. DocProject/Help/*.hhc
  148. DocProject/Help/*.hhk
  149. DocProject/Help/*.hhp
  150. DocProject/Help/Html2
  151. DocProject/Help/html
  152. # Click-Once directory
  153. publish/
  154. # Publish Web Output
  155. *.[Pp]ublish.xml
  156. *.azurePubxml
  157. # Note: Comment the next line if you want to checkin your web deploy settings,
  158. # but database connection strings (with potential passwords) will be unencrypted
  159. *.pubxml
  160. *.publishproj
  161. # Microsoft Azure Web App publish settings. Comment the next line if you want to
  162. # checkin your Azure Web App publish settings, but sensitive information contained
  163. # in these scripts will be unencrypted
  164. PublishScripts/
  165. # NuGet Packages
  166. *.nupkg
  167. # NuGet Symbol Packages
  168. *.snupkg
  169. # The packages folder can be ignored because of Package Restore
  170. **/[Pp]ackages/*
  171. # except build/, which is used as an MSBuild target.
  172. !**/[Pp]ackages/build/
  173. # Uncomment if necessary however generally it will be regenerated when needed
  174. #!**/[Pp]ackages/repositories.config
  175. # NuGet v3's project.json files produces more ignorable files
  176. *.nuget.props
  177. *.nuget.targets
  178. # Microsoft Azure Build Output
  179. csx/
  180. *.build.csdef
  181. # Microsoft Azure Emulator
  182. ecf/
  183. rcf/
  184. # Windows Store app package directories and files
  185. AppPackages/
  186. BundleArtifacts/
  187. Package.StoreAssociation.xml
  188. _pkginfo.txt
  189. *.appx
  190. *.appxbundle
  191. *.appxupload
  192. # Visual Studio cache files
  193. # files ending in .cache can be ignored
  194. *.[Cc]ache
  195. # but keep track of directories ending in .cache
  196. !?*.[Cc]ache/
  197. # Others
  198. ClientBin/
  199. ~$*
  200. *~
  201. *.dbmdl
  202. *.dbproj.schemaview
  203. *.jfm
  204. *.pfx
  205. *.publishsettings
  206. orleans.codegen.cs
  207. # Including strong name files can present a security risk
  208. # (https://github.com/github/gitignore/pull/2483#issue-259490424)
  209. #*.snk
  210. # Since there are multiple workflows, uncomment next line to ignore bower_components
  211. # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
  212. #bower_components/
  213. # RIA/Silverlight projects
  214. Generated_Code/
  215. # Backup & report files from converting an old project file
  216. # to a newer Visual Studio version. Backup files are not needed,
  217. # because we have git ;-)
  218. _UpgradeReport_Files/
  219. Backup*/
  220. UpgradeLog*.XML
  221. UpgradeLog*.htm
  222. ServiceFabricBackup/
  223. *.rptproj.bak
  224. # SQL Server files
  225. *.mdf
  226. *.ldf
  227. *.ndf
  228. # Business Intelligence projects
  229. *.rdl.data
  230. *.bim.layout
  231. *.bim_*.settings
  232. *.rptproj.rsuser
  233. *- [Bb]ackup.rdl
  234. *- [Bb]ackup ([0-9]).rdl
  235. *- [Bb]ackup ([0-9][0-9]).rdl
  236. # Microsoft Fakes
  237. FakesAssemblies/
  238. # GhostDoc plugin setting file
  239. *.GhostDoc.xml
  240. # Node.js Tools for Visual Studio
  241. .ntvs_analysis.dat
  242. node_modules/
  243. # Visual Studio 6 build log
  244. *.plg
  245. # Visual Studio 6 workspace options file
  246. *.opt
  247. # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
  248. *.vbw
  249. # Visual Studio 6 auto-generated project file (contains which files were open etc.)
  250. *.vbp
  251. # Visual Studio 6 workspace and project file (working project files containing files to include in project)
  252. *.dsw
  253. *.dsp
  254. # Visual Studio 6 technical files
  255. *.ncb
  256. *.aps
  257. # Visual Studio LightSwitch build output
  258. **/*.HTMLClient/GeneratedArtifacts
  259. **/*.DesktopClient/GeneratedArtifacts
  260. **/*.DesktopClient/ModelManifest.xml
  261. **/*.Server/GeneratedArtifacts
  262. **/*.Server/ModelManifest.xml
  263. _Pvt_Extensions
  264. # Paket dependency manager
  265. .paket/paket.exe
  266. paket-files/
  267. # FAKE - F# Make
  268. .fake/
  269. # CodeRush personal settings
  270. .cr/personal
  271. # Python Tools for Visual Studio (PTVS)
  272. __pycache__/
  273. *.pyc
  274. # Cake - Uncomment if you are using it
  275. # tools/**
  276. # !tools/packages.config
  277. # Tabs Studio
  278. *.tss
  279. # Telerik's JustMock configuration file
  280. *.jmconfig
  281. # BizTalk build output
  282. *.btp.cs
  283. *.btm.cs
  284. *.odx.cs
  285. *.xsd.cs
  286. # OpenCover UI analysis results
  287. OpenCover/
  288. # Azure Stream Analytics local run output
  289. ASALocalRun/
  290. # MSBuild Binary and Structured Log
  291. *.binlog
  292. # NVidia Nsight GPU debugger configuration file
  293. *.nvuser
  294. # MFractors (Xamarin productivity tool) working folder
  295. .mfractor/
  296. # Local History for Visual Studio
  297. .localhistory/
  298. # Visual Studio History (VSHistory) files
  299. .vshistory/
  300. # BeatPulse healthcheck temp database
  301. healthchecksdb
  302. # Backup folder for Package Reference Convert tool in Visual Studio 2017
  303. MigrationBackup/
  304. # Ionide (cross platform F# VS Code tools) working folder
  305. .ionide/
  306. # Fody - auto-generated XML schema
  307. FodyWeavers.xsd
  308. # VS Code files for those working on multiple tools
  309. .vscode/*
  310. !.vscode/settings.json
  311. !.vscode/tasks.json
  312. !.vscode/launch.json
  313. !.vscode/extensions.json
  314. *.code-workspace
  315. # Local History for Visual Studio Code
  316. .history/
  317. # Windows Installer files from build outputs
  318. *.cab
  319. *.msi
  320. *.msix
  321. *.msm
  322. *.msp
  323. # JetBrains Rider
  324. *.sln.iml
  325. .idea
  326. ##
  327. ## Visual studio for Mac
  328. ##
  329. # globs
  330. Makefile.in
  331. *.userprefs
  332. *.usertasks
  333. config.make
  334. config.status
  335. aclocal.m4
  336. install-sh
  337. autom4te.cache/
  338. *.tar.gz
  339. tarballs/
  340. test-results/
  341. # Mac bundle stuff
  342. *.dmg
  343. *.app
  344. # content below from: https://github.com/github/gitignore/blob/master/Global/macOS.gitignore
  345. # General
  346. .DS_Store
  347. .AppleDouble
  348. .LSOverride
  349. # Icon must end with two \r
  350. Icon
  351. # Thumbnails
  352. ._*
  353. # Files that might appear in the root of a volume
  354. .DocumentRevisions-V100
  355. .fseventsd
  356. .Spotlight-V100
  357. .TemporaryItems
  358. .Trashes
  359. .VolumeIcon.icns
  360. .com.apple.timemachine.donotpresent
  361. # Directories potentially created on remote AFP share
  362. .AppleDB
  363. .AppleDesktop
  364. Network Trash Folder
  365. Temporary Items
  366. .apdisk
  367. # content below from: https://github.com/github/gitignore/blob/master/Global/Windows.gitignore
  368. # Windows thumbnail cache files
  369. Thumbs.db
  370. ehthumbs.db
  371. ehthumbs_vista.db
  372. # Dump file
  373. *.stackdump
  374. # Folder config file
  375. [Dd]esktop.ini
  376. # Recycle Bin used on file shares
  377. $RECYCLE.BIN/
  378. # Windows Installer files
  379. *.cab
  380. *.msi
  381. *.msix
  382. *.msm
  383. *.msp
  384. # Windows shortcuts
  385. *.lnk
  386. # Vim temporary swap files
  387. *.swp