Continous Integration in der Praxis Gruppenarbeit
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

364 lines
6.1 KiB

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