You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

277 lines
4.8 KiB

8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
  1. ## Ignore Visual Studio temporary files, build results, and
  2. ## files generated by popular Visual Studio add-ons.
  3. # User-specific files
  4. *.suo
  5. *.user
  6. *.userosscache
  7. *.sln.docstates
  8. .vscode/
  9. # User-specific files (MonoDevelop/Xamarin Studio)
  10. *.userprefs
  11. # Build results
  12. [Dd]ebug/
  13. [Dd]ebugPublic/
  14. [Rr]elease/
  15. [Rr]eleases/
  16. x64/
  17. x86/
  18. bld/
  19. [Bb]in/
  20. [Oo]bj/
  21. [Ll]og/
  22. # Visual Studio 2015 cache/options directory
  23. .vs/
  24. # Uncomment if you have tasks that create the project's static files in wwwroot
  25. **/wwwroot/lib/
  26. !/wwwroot/lib/signalr
  27. !/wwwroot/lib/toastr
  28. # MSTest test Results
  29. [Tt]est[Rr]esult*/
  30. [Bb]uild[Ll]og.*
  31. # NUNIT
  32. *.VisualState.xml
  33. TestResult.xml
  34. # Build Results of an ATL Project
  35. [Dd]ebugPS/
  36. [Rr]eleasePS/
  37. dlldata.c
  38. # DNX
  39. project.lock.json
  40. artifacts/
  41. *_i.c
  42. *_p.c
  43. *_i.h
  44. *.ilk
  45. *.meta
  46. *.obj
  47. *.pch
  48. *.pdb
  49. *.pgc
  50. *.pgd
  51. *.rsp
  52. *.sbr
  53. *.tlb
  54. *.tli
  55. *.tlh
  56. *.tmp
  57. *.tmp_proj
  58. *.log
  59. *.vspscc
  60. *.vssscc
  61. .builds
  62. *.pidb
  63. *.svclog
  64. *.scc
  65. # Chutzpah Test files
  66. _Chutzpah*
  67. # Visual C++ cache files
  68. ipch/
  69. *.aps
  70. *.ncb
  71. *.opendb
  72. *.opensdf
  73. *.sdf
  74. *.cachefile
  75. *.VC.db
  76. *.VC.VC.opendb
  77. # Visual Studio profiler
  78. *.psess
  79. *.vsp
  80. *.vspx
  81. *.sap
  82. # TFS 2012 Local Workspace
  83. $tf/
  84. # Guidance Automation Toolkit
  85. *.gpState
  86. # ReSharper is a .NET coding add-in
  87. _ReSharper*/
  88. *.[Rr]e[Ss]harper
  89. *.DotSettings.user
  90. # JustCode is a .NET coding add-in
  91. .JustCode
  92. # TeamCity is a build add-in
  93. _TeamCity*
  94. # DotCover is a Code Coverage Tool
  95. *.dotCover
  96. # NCrunch
  97. _NCrunch_*
  98. .*crunch*.local.xml
  99. nCrunchTemp_*
  100. # MightyMoose
  101. *.mm.*
  102. AutoTest.Net/
  103. # Web workbench (sass)
  104. .sass-cache/
  105. # Installshield output folder
  106. [Ee]xpress/
  107. # DocProject is a documentation generator add-in
  108. DocProject/buildhelp/
  109. DocProject/Help/*.HxT
  110. DocProject/Help/*.HxC
  111. DocProject/Help/*.hhc
  112. DocProject/Help/*.hhk
  113. DocProject/Help/*.hhp
  114. DocProject/Help/Html2
  115. DocProject/Help/html
  116. # Click-Once directory
  117. publish/
  118. # Publish Web Output
  119. *.[Pp]ublish.xml
  120. *.azurePubxml
  121. # TODO: Comment the next line if you want to checkin your web deploy settings
  122. # but database connection strings (with potential passwords) will be unencrypted
  123. *.pubxml
  124. *.publishproj
  125. # Microsoft Azure Web App publish settings. Comment the next line if you want to
  126. # checkin your Azure Web App publish settings, but sensitive information contained
  127. # in these scripts will be unencrypted
  128. PublishScripts/
  129. # NuGet Packages
  130. *.nupkg
  131. # The packages folder can be ignored because of Package Restore
  132. **/packages/*
  133. # except build/, which is used as an MSBuild target.
  134. !**/packages/build/
  135. # Uncomment if necessary however generally it will be regenerated when needed
  136. #!**/packages/repositories.config
  137. # NuGet v3's project.json files produces more ignoreable files
  138. *.nuget.props
  139. *.nuget.targets
  140. # Microsoft Azure Build Output
  141. csx/
  142. *.build.csdef
  143. # Microsoft Azure Emulator
  144. ecf/
  145. rcf/
  146. # Windows Store app package directories and files
  147. AppPackages/
  148. BundleArtifacts/
  149. Package.StoreAssociation.xml
  150. _pkginfo.txt
  151. # Visual Studio cache files
  152. # files ending in .cache can be ignored
  153. *.[Cc]ache
  154. # but keep track of directories ending in .cache
  155. !*.[Cc]ache/
  156. #Node.js
  157. src/Web/WebSPA/node_modules/**
  158. src/Services/Identity/Identity.API/node_modules/**
  159. # Others
  160. ClientBin/
  161. ~$*
  162. *~
  163. *.dbmdl
  164. *.dbproj.schemaview
  165. *.publishsettings
  166. node_modules/
  167. /src/Web/WebMVC/wwwroot/css/**
  168. /src/Web/WebMVC/wwwroot/js/**
  169. /src/Web/WebSPA/wwwroot/js/**/**
  170. /src/Web/WebMVC/wwwroot/lib
  171. src/Web/WebMVC/wwwroot/lib/**
  172. /src/Web/WebMVC/wwwroot/lib/**/**
  173. src/Services/Identity/Identity.API/wwwroot/js/**
  174. src/Services/Identity/Identity.API/wwwroot/js/**/**
  175. src/Services/Identity/Identity.API/wwwroot/lib
  176. src/Services/Identity/Identity.API/wwwroot/lib/**
  177. src/Services/Identity/Identity.API/wwwroot/lib/**/**
  178. src/Web/WebMVC/node_modules/**
  179. # Since there are multiple workflows, uncomment next line to ignore bower_components
  180. # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
  181. #bower_components/
  182. # RIA/Silverlight projects
  183. Generated_Code/
  184. # Backup & report files from converting an old project file
  185. # to a newer Visual Studio version. Backup files are not needed,
  186. # because we have git ;-)
  187. _UpgradeReport_Files/
  188. Backup*/
  189. UpgradeLog*.XML
  190. UpgradeLog*.htm
  191. # SQL Server files
  192. *.mdf
  193. *.ldf
  194. # Business Intelligence projects
  195. *.rdl.data
  196. *.bim.layout
  197. *.bim_*.settings
  198. # Microsoft Fakes
  199. FakesAssemblies/
  200. # GhostDoc plugin setting file
  201. *.GhostDoc.xml
  202. # Node.js Tools for Visual Studio
  203. .ntvs_analysis.dat
  204. # Visual Studio 6 build log
  205. *.plg
  206. # Visual Studio 6 workspace options file
  207. *.opt
  208. # Visual Studio LightSwitch build output
  209. **/*.HTMLClient/GeneratedArtifacts
  210. **/*.DesktopClient/GeneratedArtifacts
  211. **/*.DesktopClient/ModelManifest.xml
  212. **/*.Server/GeneratedArtifacts
  213. **/*.Server/ModelManifest.xml
  214. _Pvt_Extensions
  215. # Paket dependency manager
  216. .paket/paket.exe
  217. paket-files/
  218. # FAKE - F# Make
  219. .fake/
  220. # JetBrains Rider
  221. .idea/
  222. *.sln.iml
  223. pub/
  224. #Ignore marker-file used to know which docker files we have.
  225. .eshopdocker_*
  226. **/.kube/**
  227. .mfractor
  228. orleans.codegen.cs