.gitignore 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. ################################################################################
  2. # 此 .gitignore 文件已由 Microsoft(R) Visual Studio 自动创建。
  3. ################################################################################
  4. /.vs
  5. .DS_Store
  6. node_modules/
  7. npm-debug.log
  8. /Properties/launchSettings.json
  9. package-lock.json
  10. ## Ignore Visual Studio temporary files, build results, and
  11. ## files generated by popular Visual Studio add-ons.
  12. # User-specific files
  13. *.suo
  14. *.user
  15. *.userosscache
  16. *.sln.docstates
  17. # User-specific files (MonoDevelop/Xamarin Studio)
  18. *.userprefs
  19. # Build results
  20. [Dd]ebug/
  21. [Dd]ebugPublic/
  22. [Rr]elease/
  23. [Rr]eleases/
  24. x64/
  25. x86/
  26. build/
  27. bld/
  28. bin/
  29. Bin/
  30. obj/
  31. Obj/
  32. # Visual Studio 2015 cache/options directory
  33. .vs/
  34. /wwwroot/dist/**
  35. # Workaround for https://github.com/aspnet/JavaScriptServices/issues/235
  36. !/wwwroot/dist/_placeholder.txt
  37. /yarn.lock
  38. # MSTest test Results
  39. [Tt]est[Rr]esult*/
  40. [Bb]uild[Ll]og.*
  41. # NUNIT
  42. *.VisualState.xml
  43. TestResult.xml
  44. # Build Results of an ATL Project
  45. [Dd]ebugPS/
  46. [Rr]eleasePS/
  47. dlldata.c
  48. # DNX
  49. project.lock.json
  50. artifacts/
  51. *_i.c
  52. *_p.c
  53. *_i.h
  54. *.ilk
  55. *.meta
  56. *.obj
  57. *.pch
  58. *.pdb
  59. *.pgc
  60. *.pgd
  61. *.rsp
  62. *.sbr
  63. *.tlb
  64. *.tli
  65. *.tlh
  66. *.tmp
  67. *.tmp_proj
  68. *.log
  69. *.vspscc
  70. *.vssscc
  71. .builds
  72. *.pidb
  73. *.svclog
  74. *.scc
  75. # Chutzpah Test files
  76. _Chutzpah*
  77. # Visual C++ cache files
  78. ipch/
  79. *.aps
  80. *.ncb
  81. *.opendb
  82. *.opensdf
  83. *.sdf
  84. *.cachefile
  85. # Visual Studio profiler
  86. *.psess
  87. *.vsp
  88. *.vspx
  89. *.sap
  90. # TFS 2012 Local Workspace
  91. $tf/
  92. # Guidance Automation Toolkit
  93. *.gpState
  94. # ReSharper is a .NET coding add-in
  95. _ReSharper*/
  96. *.[Rr]e[Ss]harper
  97. *.DotSettings.user
  98. # JustCode is a .NET coding add-in
  99. .JustCode
  100. # TeamCity is a build add-in
  101. _TeamCity*
  102. # DotCover is a Code Coverage Tool
  103. *.dotCover
  104. # NCrunch
  105. _NCrunch_*
  106. .*crunch*.local.xml
  107. nCrunchTemp_*
  108. # MightyMoose
  109. *.mm.*
  110. AutoTest.Net/
  111. # Web workbench (sass)
  112. .sass-cache/
  113. # Installshield output folder
  114. [Ee]xpress/
  115. # DocProject is a documentation generator add-in
  116. DocProject/buildhelp/
  117. DocProject/Help/*.HxT
  118. DocProject/Help/*.HxC
  119. DocProject/Help/*.hhc
  120. DocProject/Help/*.hhk
  121. DocProject/Help/*.hhp
  122. DocProject/Help/Html2
  123. DocProject/Help/html
  124. # Click-Once directory
  125. publish/
  126. # Publish Web Output
  127. *.[Pp]ublish.xml
  128. *.azurePubxml
  129. # TODO: Comment the next line if you want to checkin your web deploy settings
  130. # but database connection strings (with potential passwords) will be unencrypted
  131. *.pubxml
  132. *.publishproj
  133. # NuGet Packages
  134. *.nupkg
  135. # The packages folder can be ignored because of Package Restore
  136. **/packages/*
  137. # except build/, which is used as an MSBuild target.
  138. !**/packages/build/
  139. # Uncomment if necessary however generally it will be regenerated when needed
  140. #!**/packages/repositories.config
  141. # Microsoft Azure Build Output
  142. csx/
  143. *.build.csdef
  144. # Microsoft Azure Emulator
  145. ecf/
  146. rcf/
  147. # Microsoft Azure ApplicationInsights config file
  148. ApplicationInsights.config
  149. # Windows Store app package directory
  150. AppPackages/
  151. BundleArtifacts/
  152. # Visual Studio cache files
  153. # files ending in .cache can be ignored
  154. *.[Cc]ache
  155. # but keep track of directories ending in .cache
  156. !*.[Cc]ache/
  157. # Others
  158. ClientBin/
  159. ~$*
  160. *~
  161. *.dbmdl
  162. *.dbproj.schemaview
  163. *.pfx
  164. *.publishsettings
  165. orleans.codegen.cs
  166. # Workaround for https://github.com/aspnet/JavaScriptServices/issues/235
  167. /node_modules/**
  168. !/node_modules/_placeholder.txt
  169. # RIA/Silverlight projects
  170. Generated_Code/
  171. # Backup & report files from converting an old project file
  172. # to a newer Visual Studio version. Backup files are not needed,
  173. # because we have git ;-)
  174. _UpgradeReport_Files/
  175. Backup*/
  176. UpgradeLog*.XML
  177. UpgradeLog*.htm
  178. # SQL Server files
  179. *.mdf
  180. *.ldf
  181. # Business Intelligence projects
  182. *.rdl.data
  183. *.bim.layout
  184. *.bim_*.settings
  185. # Microsoft Fakes
  186. FakesAssemblies/
  187. # GhostDoc plugin setting file
  188. *.GhostDoc.xml
  189. # Node.js Tools for Visual Studio
  190. .ntvs_analysis.dat
  191. # Visual Studio 6 build log
  192. *.plg
  193. # Visual Studio 6 workspace options file
  194. *.opt
  195. # Visual Studio LightSwitch build output
  196. **/*.HTMLClient/GeneratedArtifacts
  197. **/*.DesktopClient/GeneratedArtifacts
  198. **/*.DesktopClient/ModelManifest.xml
  199. **/*.Server/GeneratedArtifacts
  200. **/*.Server/ModelManifest.xml
  201. _Pvt_Extensions
  202. # Paket dependency manager
  203. .paket/paket.exe
  204. # FAKE - F# Make
  205. .fake/
  206. .vscode/
  207. /.idea
  208. /TEAMModelOS.SmartClass/ClientApp
  209. /TEAMModelOS.SmartClass/ClientApp/assets/image
  210. /TEAMModelOS.SmartClass/ClientApp/assets/image/1.png