.gitignore 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. ## Ignore Visual Studio temporary files, build results, and
  2. ## files generated by popular Visual Studio add-ons.
  3. # User-specific files
  4. *.suo
  5. *.user
  6. *.sln.docstates
  7. # Build results
  8. [Dd]ebug/
  9. [Rr]elease/
  10. x64/
  11. build/
  12. [Bb]in/
  13. [Oo]bj/
  14. bin-debug/
  15. # Remove generated docs
  16. src/MoonSharp.Documentation/Help/html/
  17. src/MoonSharp.Documentation/Help/toc/
  18. src/MoonSharp.Documentation/Help/fti/
  19. src/MoonSharp.Documentation/Help/styles/
  20. src/MoonSharp.Documentation/Help/icons/
  21. src/MoonSharp.Documentation/Help/
  22. #
  23. # Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets
  24. !packages/*/build/
  25. # MSTest test Results
  26. [Tt]est[Rr]esult*/
  27. [Bb]uild[Ll]og.*
  28. *_i.c
  29. *_p.c
  30. *.ilk
  31. *.meta
  32. *.obj
  33. *.pch
  34. *.pdb
  35. *.pgc
  36. *.pgd
  37. *.rsp
  38. *.sbr
  39. *.tlb
  40. *.tli
  41. *.tlh
  42. *.tmp
  43. *.tmp_proj
  44. *.log
  45. *.vspscc
  46. *.vssscc
  47. .builds
  48. *.pidb
  49. *.log
  50. *.scc
  51. # Visual C++ cache files
  52. ipch/
  53. *.aps
  54. *.ncb
  55. *.opensdf
  56. *.sdf
  57. *.cachefile
  58. # Visual Studio profiler
  59. *.psess
  60. *.vsp
  61. *.vspx
  62. # Guidance Automation Toolkit
  63. *.gpState
  64. # ReSharper is a .NET coding add-in
  65. _ReSharper*/
  66. *.[Rr]e[Ss]harper
  67. # TeamCity is a build add-in
  68. _TeamCity*
  69. # DotCover is a Code Coverage Tool
  70. *.dotCover
  71. # NCrunch
  72. *.ncrunch*
  73. .*crunch*.local.xml
  74. # Installshield output folder
  75. [Ee]xpress/
  76. # DocProject is a documentation generator add-in
  77. DocProject/buildhelp/
  78. DocProject/Help/*.HxT
  79. DocProject/Help/*.HxC
  80. DocProject/Help/*.hhc
  81. DocProject/Help/*.hhk
  82. DocProject/Help/*.hhp
  83. DocProject/Help/Html2
  84. DocProject/Help/html
  85. # Click-Once directory
  86. publish/
  87. # Publish Web Output
  88. *.Publish.xml
  89. # NuGet Packages Directory
  90. ## TODO: If you have NuGet Package Restore enabled, uncomment the next line
  91. #packages/
  92. # Windows Azure Build Output
  93. csx
  94. *.build.csdef
  95. # Windows Store app package directory
  96. AppPackages/
  97. # Others
  98. sql/
  99. *.Cache
  100. ClientBin/
  101. [Ss]tyle[Cc]op.*
  102. ~$*
  103. *~
  104. *.dbmdl
  105. *.[Pp]ublish.xml
  106. *.pfx
  107. *.publishsettings
  108. # RIA/Silverlight projects
  109. Generated_Code/
  110. # Backup & report files from converting an old project file to a newer
  111. # Visual Studio version. Backup files are not needed, because we have git ;-)
  112. _UpgradeReport_Files/
  113. Backup*/
  114. UpgradeLog*.XML
  115. UpgradeLog*.htm
  116. # SQL Server files
  117. App_Data/*.mdf
  118. App_Data/*.ldf
  119. #LightSwitch generated files
  120. GeneratedArtifacts/
  121. _Pvt_Extensions/
  122. ModelManifest.xml
  123. # =========================
  124. # Windows detritus
  125. # =========================
  126. # Windows image file caches
  127. Thumbs.db
  128. ehthumbs.db
  129. # Folder config file
  130. Desktop.ini
  131. # Recycle Bin used on file shares
  132. $RECYCLE.BIN/
  133. # Mac desktop service store files
  134. .DS_Store