.gitignore 7.8 KB

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