.gitignore 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. ## Ignore Visual Studio temporary files, build results, and
  2. ## files generated by popular Visual Studio add-ons.
  3. ##
  4. ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
  5. # User-specific files
  6. *.rsuser
  7. *.suo
  8. *.user
  9. *.userosscache
  10. *.sln.docstates
  11. # User-specific files (MonoDevelop/Xamarin Studio)
  12. *.userprefs
  13. # Build results
  14. [Dd]ebug/
  15. [Dd]ebugPublic/
  16. [Rr]elease/
  17. [Rr]eleases/
  18. x64/
  19. x86/
  20. [Aa][Rr][Mm]/
  21. [Aa][Rr][Mm]64/
  22. bld/
  23. [Bb]in/
  24. [Oo]bj/
  25. [Ll]og/
  26. *.Comments.xml
  27. # Visual Studio 2015/2017 cache/options directory
  28. .vs/
  29. # Uncomment if you have tasks that create the project's static files in wwwroot
  30. #wwwroot/
  31. # Visual Studio 2017 auto generated files
  32. Generated\ Files/
  33. # MSTest test Results
  34. [Tt]est[Rr]esult*/
  35. [Bb]uild[Ll]og.*
  36. # NUNIT
  37. *.VisualState.xml
  38. TestResult.xml
  39. # Build Results of an ATL Project
  40. [Dd]ebugPS/
  41. [Rr]eleasePS/
  42. dlldata.c
  43. # Benchmark Results
  44. BenchmarkDotNet.Artifacts/
  45. # .NET Core
  46. project.lock.json
  47. project.fragment.lock.json
  48. artifacts/
  49. # StyleCop
  50. StyleCopReport.xml
  51. # Files built by Visual Studio
  52. *_i.c
  53. *_p.c
  54. *_h.h
  55. *.ilk
  56. *.meta
  57. *.obj
  58. *.iobj
  59. *.pch
  60. *.pdb
  61. *.ipdb
  62. *.pgc
  63. *.pgd
  64. *.rsp
  65. *.sbr
  66. *.tlb
  67. *.tli
  68. *.tlh
  69. *.tmp
  70. *.tmp_proj
  71. *_wpftmp.csproj
  72. *.log
  73. *.vspscc
  74. *.vssscc
  75. .builds
  76. *.pidb
  77. *.svclog
  78. *.scc
  79. # Chutzpah Test files
  80. _Chutzpah*
  81. # Visual C++ cache files
  82. ipch/
  83. *.aps
  84. *.ncb
  85. *.opendb
  86. *.opensdf
  87. *.sdf
  88. *.cachefile
  89. *.VC.db
  90. *.VC.VC.opendb
  91. # Visual Studio profiler
  92. *.psess
  93. *.vsp
  94. *.vspx
  95. *.sap
  96. # Visual Studio Trace Files
  97. *.e2e
  98. # TFS 2012 Local Workspace
  99. $tf/
  100. # Guidance Automation Toolkit
  101. *.gpState
  102. # ReSharper is a .NET coding add-in
  103. _ReSharper*/
  104. *.[Rr]e[Ss]harper
  105. *.DotSettings.user
  106. # JustCode is a .NET coding add-in
  107. .JustCode
  108. # TeamCity is a build add-in
  109. _TeamCity*
  110. # DotCover is a Code Coverage Tool
  111. *.dotCover
  112. # AxoCover is a Code Coverage Tool
  113. .axoCover/*
  114. !.axoCover/settings.json
  115. # Visual Studio code coverage results
  116. *.coverage
  117. *.coveragexml
  118. # NCrunch
  119. _NCrunch_*
  120. .*crunch*.local.xml
  121. nCrunchTemp_*
  122. # MightyMoose
  123. *.mm.*
  124. AutoTest.Net/
  125. # Web workbench (sass)
  126. .sass-cache/
  127. # Installshield output folder
  128. [Ee]xpress/
  129. # DocProject is a documentation generator add-in
  130. DocProject/buildhelp/
  131. DocProject/Help/*.HxT
  132. DocProject/Help/*.HxC
  133. DocProject/Help/*.hhc
  134. DocProject/Help/*.hhk
  135. DocProject/Help/*.hhp
  136. DocProject/Help/Html2
  137. DocProject/Help/html
  138. # Click-Once directory
  139. publish/
  140. # Publish Web Output
  141. *.[Pp]ublish.xml
  142. *.azurePubxml
  143. # Note: Comment the next line if you want to checkin your web deploy settings,
  144. # but database connection strings (with potential passwords) will be unencrypted
  145. *.pubxml
  146. *.publishproj
  147. # Microsoft Azure Web App publish settings. Comment the next line if you want to
  148. # checkin your Azure Web App publish settings, but sensitive information contained
  149. # in these scripts will be unencrypted
  150. PublishScripts/
  151. # NuGet Packages
  152. *.nupkg
  153. # The packages folder can be ignored because of Package Restore
  154. **/[Pp]ackages/*
  155. # except build/, which is used as an MSBuild target.
  156. !**/[Pp]ackages/build/
  157. # Uncomment if necessary however generally it will be regenerated when needed
  158. #!**/[Pp]ackages/repositories.config
  159. # NuGet v3's project.json files produces more ignorable files
  160. *.nuget.props
  161. *.nuget.targets
  162. # Microsoft Azure Build Output
  163. csx/
  164. *.build.csdef
  165. # Microsoft Azure Emulator
  166. ecf/
  167. rcf/
  168. # Windows Store app package directories and files
  169. AppPackages/
  170. BundleArtifacts/
  171. Package.StoreAssociation.xml
  172. _pkginfo.txt
  173. *.appx
  174. # Visual Studio cache files
  175. # files ending in .cache can be ignored
  176. *.[Cc]ache
  177. # but keep track of directories ending in .cache
  178. !?*.[Cc]ache/
  179. # Others
  180. ClientBin/
  181. ~$*
  182. *~
  183. *.dbmdl
  184. *.dbproj.schemaview
  185. *.jfm
  186. *.pfx
  187. *.publishsettings
  188. orleans.codegen.cs
  189. # Including strong name files can present a security risk
  190. # (https://github.com/github/gitignore/pull/2483#issue-259490424)
  191. #*.snk
  192. # Since there are multiple workflows, uncomment next line to ignore bower_components
  193. # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
  194. #bower_components/
  195. # RIA/Silverlight projects
  196. Generated_Code/
  197. # Backup & report files from converting an old project file
  198. # to a newer Visual Studio version. Backup files are not needed,
  199. # because we have git ;-)
  200. _UpgradeReport_Files/
  201. Backup*/
  202. UpgradeLog*.XML
  203. UpgradeLog*.htm
  204. ServiceFabricBackup/
  205. *.rptproj.bak
  206. # SQL Server files
  207. *.mdf
  208. *.ldf
  209. *.ndf
  210. # Business Intelligence projects
  211. *.rdl.data
  212. *.bim.layout
  213. *.bim_*.settings
  214. *.rptproj.rsuser
  215. *- Backup*.rdl
  216. # Microsoft Fakes
  217. FakesAssemblies/
  218. # GhostDoc plugin setting file
  219. *.GhostDoc.xml
  220. # Node.js Tools for Visual Studio
  221. .ntvs_analysis.dat
  222. node_modules/
  223. # Visual Studio 6 build log
  224. *.plg
  225. # Visual Studio 6 workspace options file
  226. *.opt
  227. # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
  228. *.vbw
  229. # Visual Studio LightSwitch build output
  230. **/*.HTMLClient/GeneratedArtifacts
  231. **/*.DesktopClient/GeneratedArtifacts
  232. **/*.DesktopClient/ModelManifest.xml
  233. **/*.Server/GeneratedArtifacts
  234. **/*.Server/ModelManifest.xml
  235. _Pvt_Extensions
  236. # Paket dependency manager
  237. .paket/paket.exe
  238. paket-files/
  239. # FAKE - F# Make
  240. .fake/
  241. # JetBrains Rider
  242. .idea/
  243. *.sln.iml
  244. # CodeRush personal settings
  245. .cr/personal
  246. # Python Tools for Visual Studio (PTVS)
  247. __pycache__/
  248. *.pyc
  249. # Cake - Uncomment if you are using it
  250. # tools/**
  251. # !tools/packages.config
  252. # Tabs Studio
  253. *.tss
  254. # Telerik's JustMock configuration file
  255. *.jmconfig
  256. # BizTalk build output
  257. *.btp.cs
  258. *.btm.cs
  259. *.odx.cs
  260. *.xsd.cs
  261. # OpenCover UI analysis results
  262. OpenCover/
  263. # Azure Stream Analytics local run output
  264. ASALocalRun/
  265. # MSBuild Binary and Structured Log
  266. *.binlog
  267. # NVidia Nsight GPU debugger configuration file
  268. *.nvuser
  269. # MFractors (Xamarin productivity tool) working folder
  270. .mfractor/
  271. # Local History for Visual Studio
  272. .localhistory/
  273. # BeatPulse healthcheck temp database
  274. healthchecksdb
  275. /src/CallCenter.Api/Document.xml