Black Rock Reporting Azure Function
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. ## Ignore Visual Studio temporary files, build results, and
  2. ## files generated by popular Visual Studio add-ons.
  3. # Azure Functions localsettings file
  4. local.settings.json
  5. # User-specific files
  6. *.suo
  7. *.user
  8. *.userosscache
  9. *.sln.docstates
  10. # User-specific files (MonoDevelop/Xamarin Studio)
  11. *.userprefs
  12. # Build results
  13. [Dd]ebug/
  14. [Dd]ebugPublic/
  15. [Rr]elease/
  16. [Rr]eleases/
  17. x64/
  18. x86/
  19. bld/
  20. [Bb]in/
  21. [Oo]bj/
  22. [Ll]og/
  23. # Visual Studio 2015 cache/options directory
  24. .vs/
  25. # Uncomment if you have tasks that create the project's static files in wwwroot
  26. #wwwroot/
  27. # MSTest test Results
  28. [Tt]est[Rr]esult*/
  29. [Bb]uild[Ll]og.*
  30. # NUNIT
  31. *.VisualState.xml
  32. TestResult.xml
  33. # Build Results of an ATL Project
  34. [Dd]ebugPS/
  35. [Rr]eleasePS/
  36. dlldata.c
  37. # DNX
  38. project.lock.json
  39. project.fragment.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. # Others
  157. ClientBin/
  158. ~$*
  159. *~
  160. *.dbmdl
  161. *.dbproj.schemaview
  162. *.jfm
  163. *.pfx
  164. *.publishsettings
  165. node_modules/
  166. orleans.codegen.cs
  167. # Since there are multiple workflows, uncomment next line to ignore bower_components
  168. # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
  169. #bower_components/
  170. # RIA/Silverlight projects
  171. Generated_Code/
  172. # Backup & report files from converting an old project file
  173. # to a newer Visual Studio version. Backup files are not needed,
  174. # because we have git ;-)
  175. _UpgradeReport_Files/
  176. Backup*/
  177. UpgradeLog*.XML
  178. UpgradeLog*.htm
  179. # SQL Server files
  180. *.mdf
  181. *.ldf
  182. # Business Intelligence projects
  183. *.rdl.data
  184. *.bim.layout
  185. *.bim_*.settings
  186. # Microsoft Fakes
  187. FakesAssemblies/
  188. # GhostDoc plugin setting file
  189. *.GhostDoc.xml
  190. # Node.js Tools for Visual Studio
  191. .ntvs_analysis.dat
  192. # Visual Studio 6 build log
  193. *.plg
  194. # Visual Studio 6 workspace options file
  195. *.opt
  196. # Visual Studio LightSwitch build output
  197. **/*.HTMLClient/GeneratedArtifacts
  198. **/*.DesktopClient/GeneratedArtifacts
  199. **/*.DesktopClient/ModelManifest.xml
  200. **/*.Server/GeneratedArtifacts
  201. **/*.Server/ModelManifest.xml
  202. _Pvt_Extensions
  203. # Paket dependency manager
  204. .paket/paket.exe
  205. paket-files/
  206. # FAKE - F# Make
  207. .fake/
  208. # JetBrains Rider
  209. .idea/
  210. *.sln.iml
  211. # CodeRush
  212. .cr/
  213. # Python Tools for Visual Studio (PTVS)
  214. __pycache__/
  215. *.pyc