Videoverarbeitung eines Beerpongspiels. Entstehung im Rahmen einer Praktikumsaufgabe im Fach "Interaktion".
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.

.gitignore 7.0KB

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