.gitignore 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. ## Ignore Visual Studio temporary files, build results, and
  2. ## files generated by popular Visual Studio add-ins.
  3. # User-specific files
  4. *.rsuser
  5. *.suo
  6. *.user
  7. *.userosscache
  8. *.sln.docstates
  9. # User-specific files (MonoDevelop/Xamarin Studio)
  10. *.userprefs
  11. # Mono auto generated files
  12. mono_crash.*
  13. # Build results
  14. [Dd]ebug/
  15. [Dd]ebugPublic/
  16. [Rr]elease/
  17. [Rr]eleases/
  18. x64/
  19. x86/
  20. [Ww][Ii][Nn]32/
  21. [Aa][Rr][Mm]/
  22. [Aa][Rr][Mm]64/
  23. bld/
  24. [Bb]in/
  25. [Oo]bj/
  26. [Ll]og/
  27. [Ll]ogs/
  28. # Visual Studio cache/options directory
  29. .vs/
  30. # Uncomment if you have tasks that create the project's static files in wwwroot
  31. #wwwroot/
  32. # Visual Studio auto generated files
  33. Generated\ Files/
  34. # MSTest test Results
  35. [Tt]est[Rr]esult*/
  36. [Bb]uild[Ll]og.*
  37. # NUnit
  38. *.VisualState.xml
  39. TestResult.xml
  40. nunit-*.xml
  41. # Build Results of an ASP.NET application
  42. [Dd]ebug[Pp]rofile/
  43. [Pp]ublish[Ss]ettings/
  44. *.[Pp]ublish.xml
  45. *.azurePubxml
  46. *.pubxml
  47. *.publishproj
  48. # NuGet Packages
  49. *.nupkg
  50. # NuGet Symbol Packages
  51. *.snupkg
  52. # The packages folder can be ignored because of Package Restore
  53. **/[Pp]ackages/*
  54. # except build/, which is used as an MSBuild target.
  55. !**/[Pp]ackages/build/
  56. # Uncomment if necessary however generally it will be regenerated when needed
  57. #!**/[Pp]ackages/repositories.config
  58. # NuGet v3's project.json files produces more ignorable files
  59. *.nuget.props
  60. *.nuget.targets
  61. # Microsoft Fakes
  62. FakesAssemblies/
  63. # GhostDoc plugin setting file
  64. *.GhostDoc.xml
  65. # Node.js Tools for Visual Studio
  66. .ntvs_analysis.dat
  67. node_modules/
  68. # Visual Studio cache files
  69. # files ending in .cache can be ignored
  70. *.[Cc]ache
  71. # but keep track of directories ending in .cache
  72. !?*.[Cc]ache/
  73. # Others
  74. ClientApp/node_modules/
  75. ClientApp/build/
  76. ClientApp/dist/
  77. *.swp
  78. *.*~
  79. project.lock.json
  80. .DS_Store
  81. *.pyc
  82. .vscode
  83. appsettings.Development.json
  84. # =========================
  85. # Java
  86. # =========================
  87. *.class
  88. *.log
  89. # Package Files
  90. *.jar
  91. *.war
  92. *.nar
  93. *.ear
  94. *.zip
  95. *.tar.gz
  96. *.rar
  97. # virtual machine crash logs
  98. hs_err_pid*
  99. replay_pid*
  100. # Eclipse
  101. .classpath
  102. .project
  103. .settings/
  104. # IntelliJ IDEA
  105. .idea/
  106. *.iws
  107. *.iml
  108. *.ipr
  109. out/
  110. # Maven
  111. target/
  112. pom.xml.tag
  113. pom.xml.releaseBackup
  114. pom.xml.versionsBackup
  115. pom.xml.next
  116. release.properties
  117. dependency-reduced-pom.xml
  118. buildNumber.properties
  119. .mvn/timing.properties
  120. .mvn/wrapper/maven-wrapper.jar
  121. # Gradle
  122. .gradle/
  123. !gradle/wrapper/gradle-wrapper.jar