.gitignore 6.6 KB

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