.gitignore 4.8 KB

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