.gitignore 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487
  1. 1000.txt
  2. iteration-results.txt
  3. ## Ignore Visual Studio temporary files, build results, and
  4. ## files generated by popular Visual Studio add-ons.
  5. ##
  6. ## Get latest from `dotnet new gitignore`
  7. # dotenv files
  8. .env
  9. # User-specific files
  10. *.rsuser
  11. *.suo
  12. *.user
  13. *.userosscache
  14. *.sln.docstates
  15. # User-specific files (MonoDevelop/Xamarin Studio)
  16. *.userprefs
  17. # Mono auto generated files
  18. mono_crash.*
  19. # Build results
  20. [Dd]ebug/
  21. [Dd]ebugPublic/
  22. [Rr]elease/
  23. [Rr]eleases/
  24. x64/
  25. x86/
  26. [Ww][Ii][Nn]32/
  27. [Aa][Rr][Mm]/
  28. [Aa][Rr][Mm]64/
  29. bld/
  30. [Bb]in/
  31. [Oo]bj/
  32. [Ll]og/
  33. [Ll]ogs/
  34. # Visual Studio 2015/2017 cache/options directory
  35. .vs/
  36. # Uncomment if you have tasks that create the project's static files in wwwroot
  37. #wwwroot/
  38. # Visual Studio 2017 auto generated files
  39. Generated\ Files/
  40. # MSTest test Results
  41. [Tt]est[Rr]esult*/
  42. [Bb]uild[Ll]og.*
  43. # NUnit
  44. *.VisualState.xml
  45. TestResult.xml
  46. nunit-*.xml
  47. # Build Results of an ATL Project
  48. [Dd]ebugPS/
  49. [Rr]eleasePS/
  50. dlldata.c
  51. # Benchmark Results
  52. BenchmarkDotNet.Artifacts/
  53. # .NET
  54. project.lock.json
  55. project.fragment.lock.json
  56. artifacts/
  57. # Tye
  58. .tye/
  59. # ASP.NET Scaffolding
  60. ScaffoldingReadMe.txt
  61. # StyleCop
  62. StyleCopReport.xml
  63. # Files built by Visual Studio
  64. *_i.c
  65. *_p.c
  66. *_h.h
  67. *.ilk
  68. *.meta
  69. *.obj
  70. *.iobj
  71. *.pch
  72. *.pdb
  73. *.ipdb
  74. *.pgc
  75. *.pgd
  76. *.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. # Mac bundle stuff
  343. *.dmg
  344. *.app
  345. # content below from: https://github.com/github/gitignore/blob/main/Global/macOS.gitignore
  346. # General
  347. .DS_Store
  348. .AppleDouble
  349. .LSOverride
  350. # Icon must end with two \r
  351. Icon
  352. # Thumbnails
  353. ._*
  354. # Files that might appear in the root of a volume
  355. .DocumentRevisions-V100
  356. .fseventsd
  357. .Spotlight-V100
  358. .TemporaryItems
  359. .Trashes
  360. .VolumeIcon.icns
  361. .com.apple.timemachine.donotpresent
  362. # Directories potentially created on remote AFP share
  363. .AppleDB
  364. .AppleDesktop
  365. Network Trash Folder
  366. Temporary Items
  367. .apdisk
  368. # content below from: https://github.com/github/gitignore/blob/main/Global/Windows.gitignore
  369. # Windows thumbnail cache files
  370. Thumbs.db
  371. ehthumbs.db
  372. ehthumbs_vista.db
  373. # Dump file
  374. *.stackdump
  375. # Folder config file
  376. [Dd]esktop.ini
  377. # Recycle Bin used on file shares
  378. $RECYCLE.BIN/
  379. # Windows Installer files
  380. *.cab
  381. *.msi
  382. *.msix
  383. *.msm
  384. *.msp
  385. # Windows shortcuts
  386. *.lnk
  387. # Vim temporary swap files
  388. *.swp