.gitignore 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  1. ## Ignore Visual Studio temporary files, build results, and
  2. ## files generated by popular Visual Studio add-ons.
  3. ##
  4. ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
  5. ## 语法:
  6. ## 以”#”号开头表示注释;
  7. ## 以斜杠“/”开头表示目录;
  8. ## 以星号“*”通配多个字符;
  9. ## 以问号“?”通配单个字符
  10. ## 以方括号“[]”包含单个字符的匹配列表;
  11. ## 以叹号“!”表示不忽略(跟踪)匹配到的文件或目录;
  12. ## 此外,git 对于 .ignore 配置文件是按行从上到下进行规则匹配的,意味着如果前面的规则匹配的范围更大,则后面的规则将不会生效
  13. # User-specific files
  14. *.rsuser
  15. *.suo
  16. *.user
  17. *.userosscache
  18. *.sln.docstates
  19. # User-specific files (MonoDevelop/Xamarin Studio)
  20. *.userprefs
  21. # Mono auto generated files
  22. mono_crash.*
  23. # Build results
  24. [Dd]ebug/
  25. [Dd]ebugPublic/
  26. [Rr]elease/
  27. [Rr]eleases/
  28. x64/
  29. x86/
  30. [Ww][Ii][Nn]32/
  31. [Aa][Rr][Mm]/
  32. [Aa][Rr][Mm]64/
  33. bld/
  34. [Bb]in/
  35. [Oo]bj/
  36. [Ll]og/
  37. [Ll]ogs/
  38. # Visual Studio 2015/2017 cache/options directory
  39. .vs/
  40. # Uncomment if you have tasks that create the project's static files in wwwroot
  41. #wwwroot/
  42. # Visual Studio 2017 auto generated files
  43. Generated\ Files/
  44. # MSTest test Results
  45. [Tt]est[Rr]esult*/
  46. [Bb]uild[Ll]og.*
  47. # NUnit
  48. *.VisualState.xml
  49. TestResult.xml
  50. nunit-*.xml
  51. # Build Results of an ATL Project
  52. [Dd]ebugPS/
  53. [Rr]eleasePS/
  54. dlldata.c
  55. # Benchmark Results
  56. BenchmarkDotNet.Artifacts/
  57. # .NET Core
  58. project.lock.json
  59. project.fragment.lock.json
  60. artifacts/
  61. # ASP.NET Scaffolding
  62. ScaffoldingReadMe.txt
  63. # StyleCop
  64. StyleCopReport.xml
  65. # Files built by Visual Studio
  66. *_i.c
  67. *_p.c
  68. *_h.h
  69. *.ilk
  70. *.meta
  71. *.obj
  72. *.iobj
  73. *.pch
  74. *.pdb
  75. *.ipdb
  76. *.pgc
  77. *.pgd
  78. *.rsp
  79. *.sbr
  80. *.tlb
  81. *.tli
  82. *.tlh
  83. *.tmp
  84. *.tmp_proj
  85. *_wpftmp.csproj
  86. *.log
  87. *.vspscc
  88. *.vssscc
  89. .builds
  90. *.pidb
  91. *.svclog
  92. *.scc
  93. # Chutzpah Test files
  94. _Chutzpah*
  95. # Visual C++ cache files
  96. ipch/
  97. *.aps
  98. *.ncb
  99. *.opendb
  100. *.opensdf
  101. *.sdf
  102. *.cachefile
  103. *.VC.db
  104. *.VC.VC.opendb
  105. # Visual Studio profiler
  106. *.psess
  107. *.vsp
  108. *.vspx
  109. *.sap
  110. # Visual Studio Trace Files
  111. *.e2e
  112. # TFS 2012 Local Workspace
  113. $tf/
  114. # Guidance Automation Toolkit
  115. *.gpState
  116. # ReSharper is a .NET coding add-in
  117. _ReSharper*/
  118. *.[Rr]e[Ss]harper
  119. *.DotSettings.user
  120. # TeamCity is a build add-in
  121. _TeamCity*
  122. # DotCover is a Code Coverage Tool
  123. *.dotCover
  124. # AxoCover is a Code Coverage Tool
  125. .axoCover/*
  126. !.axoCover/settings.json
  127. # Coverlet is a free, cross platform Code Coverage Tool
  128. coverage*.json
  129. coverage*.xml
  130. coverage*.info
  131. # Visual Studio code coverage results
  132. *.coverage
  133. *.coveragexml
  134. # NCrunch
  135. _NCrunch_*
  136. .*crunch*.local.xml
  137. nCrunchTemp_*
  138. # MightyMoose
  139. *.mm.*
  140. AutoTest.Net/
  141. # Web workbench (sass)
  142. .sass-cache/
  143. # Installshield output folder
  144. [Ee]xpress/
  145. # DocProject is a documentation generator add-in
  146. DocProject/buildhelp/
  147. DocProject/Help/*.HxT
  148. DocProject/Help/*.HxC
  149. DocProject/Help/*.hhc
  150. DocProject/Help/*.hhk
  151. DocProject/Help/*.hhp
  152. DocProject/Help/Html2
  153. DocProject/Help/html
  154. # Click-Once directory
  155. publish/
  156. # Publish Web Output
  157. *.[Pp]ublish.xml
  158. *.azurePubxml
  159. # Note: Comment the next line if you want to checkin your web deploy settings,
  160. # but database connection strings (with potential passwords) will be unencrypted
  161. *.pubxml
  162. *.publishproj
  163. # Microsoft Azure Web App publish settings. Comment the next line if you want to
  164. # checkin your Azure Web App publish settings, but sensitive information contained
  165. # in these scripts will be unencrypted
  166. PublishScripts/
  167. # NuGet Packages
  168. *.nupkg
  169. # NuGet Symbol Packages
  170. *.snupkg
  171. # The packages folder can be ignored because of Package Restore
  172. **/[Pp]ackages/*
  173. # except build/, which is used as an MSBuild target.
  174. !**/[Pp]ackages/build/
  175. # Uncomment if necessary however generally it will be regenerated when needed
  176. #!**/[Pp]ackages/repositories.config
  177. # NuGet v3's project.json files produces more ignorable files
  178. *.nuget.props
  179. *.nuget.targets
  180. # Microsoft Azure Build Output
  181. csx/
  182. *.build.csdef
  183. # Microsoft Azure Emulator
  184. ecf/
  185. rcf/
  186. # Windows Store app package directories and files
  187. AppPackages/
  188. BundleArtifacts/
  189. Package.StoreAssociation.xml
  190. _pkginfo.txt
  191. *.appx
  192. *.appxbundle
  193. *.appxupload
  194. # Visual Studio cache files
  195. # files ending in .cache can be ignored
  196. *.[Cc]ache
  197. # but keep track of directories ending in .cache
  198. !?*.[Cc]ache/
  199. # Others
  200. ClientBin/
  201. ~$*
  202. *~
  203. *.dbmdl
  204. *.dbproj.schemaview
  205. *.jfm
  206. *.pfx
  207. *.publishsettings
  208. orleans.codegen.cs
  209. # Including strong name files can present a security risk
  210. # (https://github.com/github/gitignore/pull/2483#issue-259490424)
  211. #*.snk
  212. # Since there are multiple workflows, uncomment next line to ignore bower_components
  213. # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
  214. #bower_components/
  215. # RIA/Silverlight projects
  216. Generated_Code/
  217. # Backup & report files from converting an old project file
  218. # to a newer Visual Studio version. Backup files are not needed,
  219. # because we have git ;-)
  220. _UpgradeReport_Files/
  221. Backup*/
  222. UpgradeLog*.XML
  223. UpgradeLog*.htm
  224. ServiceFabricBackup/
  225. *.rptproj.bak
  226. # SQL Server files
  227. *.mdf
  228. *.ldf
  229. *.ndf
  230. # Business Intelligence projects
  231. *.rdl.data
  232. *.bim.layout
  233. *.bim_*.settings
  234. *.rptproj.rsuser
  235. *- [Bb]ackup.rdl
  236. *- [Bb]ackup ([0-9]).rdl
  237. *- [Bb]ackup ([0-9][0-9]).rdl
  238. # Microsoft Fakes
  239. FakesAssemblies/
  240. # GhostDoc plugin setting file
  241. *.GhostDoc.xml
  242. # Node.js Tools for Visual Studio
  243. .ntvs_analysis.dat
  244. node_modules/
  245. # Visual Studio 6 build log
  246. *.plg
  247. # Visual Studio 6 workspace options file
  248. *.opt
  249. # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
  250. *.vbw
  251. # Visual Studio LightSwitch build output
  252. **/*.HTMLClient/GeneratedArtifacts
  253. **/*.DesktopClient/GeneratedArtifacts
  254. **/*.DesktopClient/ModelManifest.xml
  255. **/*.Server/GeneratedArtifacts
  256. **/*.Server/ModelManifest.xml
  257. _Pvt_Extensions
  258. # Paket dependency manager
  259. .paket/paket.exe
  260. paket-files/
  261. # FAKE - F# Make
  262. .fake/
  263. # CodeRush personal settings
  264. .cr/personal
  265. # Python Tools for Visual Studio (PTVS)
  266. __pycache__/
  267. *.pyc
  268. # Cake - Uncomment if you are using it
  269. # tools/**
  270. # !tools/packages.config
  271. # Tabs Studio
  272. *.tss
  273. # Telerik's JustMock configuration file
  274. *.jmconfig
  275. # BizTalk build output
  276. *.btp.cs
  277. *.btm.cs
  278. *.odx.cs
  279. *.xsd.cs
  280. # OpenCover UI analysis results
  281. OpenCover/
  282. # Azure Stream Analytics local run output
  283. ASALocalRun/
  284. # MSBuild Binary and Structured Log
  285. *.binlog
  286. # NVidia Nsight GPU debugger configuration file
  287. *.nvuser
  288. # MFractors (Xamarin productivity tool) working folder
  289. .mfractor/
  290. # Local History for Visual Studio
  291. .localhistory/
  292. # BeatPulse healthcheck temp database
  293. healthchecksdb
  294. # Backup folder for Package Reference Convert tool in Visual Studio 2017
  295. MigrationBackup/
  296. # Ionide (cross platform F# VS Code tools) working folder
  297. .ionide/
  298. # Fody - auto-generated XML schema
  299. FodyWeavers.xsd