.gitignore 7.8 KB

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