.gitignore 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  1. #################
  2. ## Eclipse
  3. #################
  4. *.pydevproject
  5. .project
  6. .metadata
  7. tmp/
  8. *.swp
  9. *~.nib
  10. local.properties
  11. .classpath
  12. .settings/
  13. .loadpath
  14. # External tool builders
  15. .externalToolBuilders/
  16. # Locally stored "Eclipse launch configurations"
  17. *.launch
  18. # CDT-specific
  19. .cproject
  20. # PDT-specific
  21. .buildpath
  22. ###########################################################
  23. ## Ignore Visual Studio temporary files, build results, and
  24. ## files generated by popular Visual Studio add-ons.
  25. ###########################################################
  26. # User-specific files
  27. *.suo
  28. *.user
  29. *.userosscache
  30. *.sln.docstates
  31. # User-specific files (MonoDevelop/Xamarin Studio)
  32. *.userprefs
  33. # Build results
  34. [Dd]ebug/
  35. [Dd]ebugPublic/
  36. [Rr]elease/
  37. [Rr]eleases/
  38. x64/
  39. x86/
  40. bld/
  41. [Bb]in/
  42. [Oo]bj/
  43. # Visual Studio 2015 cache/options directory
  44. .vs/
  45. # Uncomment if you have tasks that create the project's static files in wwwroot
  46. #wwwroot/
  47. # MSTest test Results
  48. [Tt]est[Rr]esult*/
  49. [Bb]uild[Ll]og.*
  50. # NUNIT
  51. *.VisualState.xml
  52. TestResult.xml
  53. # Build Results of an ATL Project
  54. [Dd]ebugPS/
  55. [Rr]eleasePS/
  56. dlldata.c
  57. # DNX
  58. project.lock.json
  59. artifacts/
  60. *_i.c
  61. *_p.c
  62. *_i.h
  63. *.ilk
  64. *.meta
  65. *.obj
  66. *.pch
  67. *.pdb
  68. *.pgc
  69. *.pgd
  70. *.rsp
  71. *.sbr
  72. *.tlb
  73. *.tli
  74. *.tlh
  75. *.tmp
  76. *.tmp_proj
  77. *.log
  78. *.vspscc
  79. *.vssscc
  80. .builds
  81. *.pidb
  82. *.svclog
  83. *.scc
  84. # Visual C++ cache files
  85. ipch/
  86. *.aps
  87. *.ncb
  88. *.opensdf
  89. *.sdf
  90. *.cachefile
  91. # Visual Studio profiler
  92. *.psess
  93. *.vsp
  94. *.vspx
  95. *.sap
  96. # Guidance Automation Toolkit
  97. *.gpState
  98. # ReSharper is a .NET coding add-in
  99. _ReSharper*/
  100. *.[Rr]e[Ss]harper
  101. # TeamCity is a build add-in
  102. _TeamCity*
  103. # DotCover is a Code Coverage Tool
  104. *.dotCover
  105. # NCrunch
  106. _NCrunch_*
  107. .*crunch*.local.xml
  108. nCrunchTemp_*
  109. # MightyMoose
  110. *.mm.*
  111. AutoTest.Net/
  112. # Web workbench (sass)
  113. .sass-cache/
  114. # Installshield output folder
  115. [Ee]xpress/
  116. # DocProject is a documentation generator add-in
  117. DocProject/buildhelp/
  118. DocProject/Help/*.HxT
  119. DocProject/Help/*.HxC
  120. DocProject/Help/*.hhc
  121. DocProject/Help/*.hhk
  122. DocProject/Help/*.hhp
  123. DocProject/Help/Html2
  124. DocProject/Help/html
  125. # Click-Once directory
  126. publish/
  127. # Publish Web Output
  128. *.[Pp]ublish.xml
  129. *.azurePubxml
  130. # TODO: Comment the next line if you want to checkin your web deploy settings
  131. # but database connection strings (with potential passwords) will be unencrypted
  132. *.pubxml
  133. *.publishproj
  134. # NuGet Packages
  135. *.nupkg
  136. # The packages folder can be ignored because of Package Restore
  137. **/packages/*
  138. # except build/, which is used as an MSBuild target.
  139. !**/packages/build/
  140. # Uncomment if necessary however generally it will be regenerated when needed
  141. #!**/packages/repositories.config
  142. # NuGet v3's project.json files produces more ignoreable files
  143. *.nuget.props
  144. *.nuget.targets
  145. # Windows Azure Build Output
  146. csx
  147. *.build.csdef
  148. # Microsoft Azure Emulator
  149. ecf/
  150. rcf/
  151. # Microsoft Azure ApplicationInsights config file
  152. ApplicationInsights.config
  153. # Windows Store app package directory
  154. AppPackages/
  155. BundleArtifacts/
  156. # Visual Studio cache files
  157. # files ending in .cache can be ignored
  158. *.[Cc]ache
  159. # but keep track of directories ending in .cache
  160. !*.[Cc]ache/
  161. # Others
  162. # sql/
  163. ClientBin/
  164. [Ss]tyle[Cc]op.*
  165. ~$*
  166. *~
  167. *.dbmdl
  168. *.dbproj.schemaview
  169. *.pfx
  170. *.publishsettings
  171. node_modules/
  172. orleans.codegen.cs
  173. # RIA/Silverlight projects
  174. Generated_Code/
  175. # Backup & report files from converting an old project file to a newer
  176. # Visual Studio version. Backup files are not needed, 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. # FAKE - F# Make
  208. .fake/
  209. # Windows image file caches
  210. Thumbs.db
  211. ehthumbs.db
  212. # Folder config file
  213. Desktop.ini
  214. # Recycle Bin used on file shares
  215. $RECYCLE.BIN/
  216. # Mac crap
  217. .DS_Store
  218. ###########
  219. ## Symlinks
  220. ###########
  221. *-sym.*
  222. *-symdir/
  223. [Ee]xternal[Ff]iles/
  224. /src/Plugins/*-sym
  225. /src/Tests/*-sym
  226. /src/Presentation/SmartStore.Web/Themes/*-sym
  227. /src/Presentation/SmartStore.Web/Themes/HP
  228. ###########
  229. ## Specific
  230. ###########
  231. # Backups
  232. [Bb]ackup/
  233. [Bb]ackups/
  234. _[Bb]ackup/
  235. _[Bb]ackups/
  236. *.bak
  237. *.orig
  238. Kopie von*
  239. /build
  240. /src/Presentation/SmartStore.Web/Plugins
  241. /src/Presentation/SmartStore.Web/App_Data/_temp/
  242. /src/Presentation/SmartStore.Web/App_Data/ExportProfiles/
  243. /src/Presentation/SmartStore.Web/App_Data/ImportProfiles/
  244. /src/Presentation/SmartStore.Web/App_Data/Indexing/
  245. /src/Presentation/SmartStore.Web/App_Data/Lucene/
  246. /src/Presentation/SmartStore.Web/App_Data/Settings.txt
  247. /src/Presentation/SmartStore.Web/App_Data/InstalledPlugins.txt
  248. /src/Presentation/SmartStore.Web/App_Data/Licenses.lic
  249. /src/Presentation/SmartStore.Web/Media
  250. /src/**/App_Data/Tenants/
  251. # Import/Export
  252. /src/Presentation/SmartStore.Web/Content/files/[Ee]xport[Ii]mport/*.*
  253. /src/Presentation/SmartStore.Web/[Ee]xchange/*
  254. # Media
  255. /src/Presentation/SmartStore.Web/Media/[Tt]humbs
  256. /src/Presentation/SmartStore.Web/Media/[Uu]ploaded
  257. # Tools
  258. /src/Tools/SmartStore.WebApi.Client/packages
  259. /src/Tools/SmartStore.WebApi.Client/SmartStore.WebApi.Client.sln
  260. src/SmartStoreNET.Packager.sln
  261. Log.txt
  262. src/Presentation/SmartStore.Web/Themes/FlexMuseo/