.gitignore 5.8 KB

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