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.

274 lines
4.7 KiB

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