Projektarbeit Datalogger
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 6.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365
  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. # Mono auto generated files
  14. mono_crash.*
  15. # Build results
  16. [Dd]ebug/
  17. [Dd]ebugPublic/
  18. [Rr]elease/
  19. [Rr]eleases/
  20. x64/
  21. x86/
  22. [Ww][Ii][Nn]32/
  23. [Aa][Rr][Mm]/
  24. [Aa][Rr][Mm]64/
  25. bld/
  26. [Bb]in/
  27. [Oo]bj/
  28. [Oo]ut/
  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. *.sln
  87. *.vcxproj*
  88. # Chutzpah Test files
  89. _Chutzpah*
  90. # Visual C++ cache files
  91. ipch/
  92. *.aps
  93. *.ncb
  94. *.opendb
  95. *.opensdf
  96. *.sdf
  97. *.cachefile
  98. *.VC.db
  99. *.VC.VC.opendb
  100. # Visual Studio profiler
  101. *.psess
  102. *.vsp
  103. *.vspx
  104. *.sap
  105. # Visual Studio Trace Files
  106. *.e2e
  107. # TFS 2012 Local Workspace
  108. $tf/
  109. # Guidance Automation Toolkit
  110. *.gpState
  111. # ReSharper is a .NET coding add-in
  112. _ReSharper*/
  113. *.[Rr]e[Ss]harper
  114. *.DotSettings.user
  115. # TeamCity is a build add-in
  116. _TeamCity*
  117. # DotCover is a Code Coverage Tool
  118. *.dotCover
  119. # AxoCover is a Code Coverage Tool
  120. .axoCover/*
  121. !.axoCover/settings.json
  122. # Coverlet is a free, cross platform Code Coverage Tool
  123. coverage*.json
  124. coverage*.xml
  125. coverage*.info
  126. # Visual Studio code coverage results
  127. *.coverage
  128. *.coveragexml
  129. # NCrunch
  130. _NCrunch_*
  131. .*crunch*.local.xml
  132. nCrunchTemp_*
  133. # MightyMoose
  134. *.mm.*
  135. AutoTest.Net/
  136. # Web workbench (sass)
  137. .sass-cache/
  138. # Installshield output folder
  139. [Ee]xpress/
  140. # DocProject is a documentation generator add-in
  141. DocProject/buildhelp/
  142. DocProject/Help/*.HxT
  143. DocProject/Help/*.HxC
  144. DocProject/Help/*.hhc
  145. DocProject/Help/*.hhk
  146. DocProject/Help/*.hhp
  147. DocProject/Help/Html2
  148. DocProject/Help/html
  149. # Click-Once directory
  150. publish/
  151. # Publish Web Output
  152. *.[Pp]ublish.xml
  153. *.azurePubxml
  154. # Note: Comment the next line if you want to checkin your web deploy settings,
  155. # but database connection strings (with potential passwords) will be unencrypted
  156. *.pubxml
  157. *.publishproj
  158. # Microsoft Azure Web App publish settings. Comment the next line if you want to
  159. # checkin your Azure Web App publish settings, but sensitive information contained
  160. # in these scripts will be unencrypted
  161. PublishScripts/
  162. # NuGet Packages
  163. *.nupkg
  164. # NuGet Symbol Packages
  165. *.snupkg
  166. # The packages folder can be ignored because of Package Restore
  167. **/[Pp]ackages/*
  168. # except build/, which is used as an MSBuild target.
  169. !**/[Pp]ackages/build/
  170. # Uncomment if necessary however generally it will be regenerated when needed
  171. #!**/[Pp]ackages/repositories.config
  172. # NuGet v3's project.json files produces more ignorable files
  173. *.nuget.props
  174. *.nuget.targets
  175. # Microsoft Azure Build Output
  176. csx/
  177. *.build.csdef
  178. # Microsoft Azure Emulator
  179. ecf/
  180. rcf/
  181. # Windows Store app package directories and files
  182. AppPackages/
  183. BundleArtifacts/
  184. Package.StoreAssociation.xml
  185. _pkginfo.txt
  186. *.appx
  187. *.appxbundle
  188. *.appxupload
  189. # Visual Studio cache files
  190. # files ending in .cache can be ignored
  191. *.[Cc]ache
  192. # but keep track of directories ending in .cache
  193. !?*.[Cc]ache/
  194. # Others
  195. ClientBin/
  196. ~$*
  197. *~
  198. *.dbmdl
  199. *.dbproj.schemaview
  200. *.jfm
  201. *.pfx
  202. *.publishsettings
  203. orleans.codegen.cs
  204. # Including strong name files can present a security risk
  205. # (https://github.com/github/gitignore/pull/2483#issue-259490424)
  206. #*.snk
  207. # Since there are multiple workflows, uncomment next line to ignore bower_components
  208. # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
  209. #bower_components/
  210. # RIA/Silverlight projects
  211. Generated_Code/
  212. # Backup & report files from converting an old project file
  213. # to a newer Visual Studio version. Backup files are not needed,
  214. # because we have git ;-)
  215. _UpgradeReport_Files/
  216. Backup*/
  217. UpgradeLog*.XML
  218. UpgradeLog*.htm
  219. ServiceFabricBackup/
  220. *.rptproj.bak
  221. # SQL Server files
  222. *.mdf
  223. *.ldf
  224. *.ndf
  225. # Business Intelligence projects
  226. *.rdl.data
  227. *.bim.layout
  228. *.bim_*.settings
  229. *.rptproj.rsuser
  230. *- [Bb]ackup.rdl
  231. *- [Bb]ackup ([0-9]).rdl
  232. *- [Bb]ackup ([0-9][0-9]).rdl
  233. # Microsoft Fakes
  234. FakesAssemblies/
  235. # GhostDoc plugin setting file
  236. *.GhostDoc.xml
  237. # Node.js Tools for Visual Studio
  238. .ntvs_analysis.dat
  239. node_modules/
  240. # Visual Studio 6 build log
  241. *.plg
  242. # Visual Studio 6 workspace options file
  243. *.opt
  244. # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
  245. *.vbw
  246. # Visual Studio LightSwitch build output
  247. **/*.HTMLClient/GeneratedArtifacts
  248. **/*.DesktopClient/GeneratedArtifacts
  249. **/*.DesktopClient/ModelManifest.xml
  250. **/*.Server/GeneratedArtifacts
  251. **/*.Server/ModelManifest.xml
  252. _Pvt_Extensions
  253. # Paket dependency manager
  254. .paket/paket.exe
  255. paket-files/
  256. # FAKE - F# Make
  257. .fake/
  258. # CodeRush personal settings
  259. .cr/personal
  260. # Python Tools for Visual Studio (PTVS)
  261. __pycache__/
  262. *.pyc
  263. # Cake - Uncomment if you are using it
  264. # tools/**
  265. # !tools/packages.config
  266. # Tabs Studio
  267. *.tss
  268. # Telerik's JustMock configuration file
  269. *.jmconfig
  270. # BizTalk build output
  271. *.btp.cs
  272. *.btm.cs
  273. *.odx.cs
  274. *.xsd.cs
  275. # OpenCover UI analysis results
  276. OpenCover/
  277. # Azure Stream Analytics local run output
  278. ASALocalRun/
  279. # MSBuild Binary and Structured Log
  280. *.binlog
  281. # NVidia Nsight GPU debugger configuration file
  282. *.nvuser
  283. # MFractors (Xamarin productivity tool) working folder
  284. .mfractor/
  285. # Local History for Visual Studio
  286. .localhistory/
  287. # BeatPulse healthcheck temp database
  288. healthchecksdb
  289. # Backup folder for Package Reference Convert tool in Visual Studio 2017
  290. MigrationBackup/
  291. # Ionide (cross platform F# VS Code tools) working folder
  292. .ionide/
  293. # Fody - auto-generated XML schema
  294. FodyWeavers.xsd