.gitignore 6.4 KB

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