matrix-coro

A WIP highlevel matrix c++ SDK with a MAS first approach
git clone git://archive.git.mtrnord.blog/MTRNord/matrix-coro.git
Log | Files | Refs | README | LICENSE

.gitignore (10047B)


      1 ### VisualStudioCode template
      2 .vscode/*
      3 !.vscode/settings.json
      4 !.vscode/tasks.json
      5 !.vscode/launch.json
      6 !.vscode/extensions.json
      7 !.vscode/*.code-snippets
      8 
      9 # Local History for Visual Studio Code
     10 .history/
     11 
     12 # Built Visual Studio Code Extensions
     13 *.vsix
     14 
     15 ### C++ template
     16 # Prerequisites
     17 *.d
     18 
     19 # Compiled Object files
     20 *.slo
     21 *.lo
     22 *.o
     23 *.obj
     24 
     25 # Precompiled Headers
     26 *.gch
     27 *.pch
     28 
     29 # Compiled Dynamic libraries
     30 *.so
     31 *.dylib
     32 *.dll
     33 
     34 # Fortran module files
     35 *.mod
     36 *.smod
     37 
     38 # Compiled Static libraries
     39 *.lai
     40 *.la
     41 *.a
     42 *.lib
     43 
     44 # Executables
     45 *.exe
     46 *.out
     47 *.app
     48 
     49 ### JetBrains template
     50 # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
     51 # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
     52 
     53 # User-specific stuff
     54 .idea/**/workspace.xml
     55 .idea/**/tasks.xml
     56 .idea/**/usage.statistics.xml
     57 .idea/**/dictionaries
     58 .idea/**/shelf
     59 
     60 # AWS User-specific
     61 .idea/**/aws.xml
     62 
     63 # Generated files
     64 .idea/**/contentModel.xml
     65 
     66 # Sensitive or high-churn files
     67 .idea/**/dataSources/
     68 .idea/**/dataSources.ids
     69 .idea/**/dataSources.local.xml
     70 .idea/**/sqlDataSources.xml
     71 .idea/**/dynamic.xml
     72 .idea/**/uiDesigner.xml
     73 .idea/**/dbnavigator.xml
     74 
     75 # Gradle
     76 .idea/**/gradle.xml
     77 .idea/**/libraries
     78 
     79 # Gradle and Maven with auto-import
     80 # When using Gradle or Maven with auto-import, you should exclude module files,
     81 # since they will be recreated, and may cause churn.  Uncomment if using
     82 # auto-import.
     83 # .idea/artifacts
     84 # .idea/compiler.xml
     85 # .idea/jarRepositories.xml
     86 # .idea/modules.xml
     87 # .idea/*.iml
     88 # .idea/modules
     89 # *.iml
     90 # *.ipr
     91 
     92 # CMake
     93 cmake-build-*/
     94 
     95 # Mongo Explorer plugin
     96 .idea/**/mongoSettings.xml
     97 
     98 # File-based project format
     99 *.iws
    100 
    101 # IntelliJ
    102 out/
    103 
    104 # mpeltonen/sbt-idea plugin
    105 .idea_modules/
    106 
    107 # JIRA plugin
    108 atlassian-ide-plugin.xml
    109 
    110 # Cursive Clojure plugin
    111 .idea/replstate.xml
    112 
    113 # SonarLint plugin
    114 .idea/sonarlint/
    115 
    116 # Crashlytics plugin (for Android Studio and IntelliJ)
    117 com_crashlytics_export_strings.xml
    118 crashlytics.properties
    119 crashlytics-build.properties
    120 fabric.properties
    121 
    122 # Editor-based Rest Client
    123 .idea/httpRequests
    124 
    125 # Android studio 3.1+ serialized cache file
    126 .idea/caches/build_file_checksums.ser
    127 
    128 ### CMake template
    129 CMakeLists.txt.user
    130 CMakeCache.txt
    131 CMakeFiles
    132 CMakeScripts
    133 Testing
    134 Makefile
    135 cmake_install.cmake
    136 install_manifest.txt
    137 compile_commands.json
    138 CTestTestfile.cmake
    139 _deps
    140 
    141 ### VisualStudio template
    142 ## Ignore Visual Studio temporary files, build results, and
    143 ## files generated by popular Visual Studio add-ons.
    144 ##
    145 ## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
    146 
    147 # User-specific files
    148 *.rsuser
    149 *.suo
    150 *.user
    151 *.userosscache
    152 *.sln.docstates
    153 
    154 # User-specific files (MonoDevelop/Xamarin Studio)
    155 *.userprefs
    156 
    157 # Mono auto generated files
    158 mono_crash.*
    159 
    160 # Build results
    161 [Dd]ebug/
    162 [Dd]ebugPublic/
    163 [Rr]elease/
    164 [Rr]eleases/
    165 x64/
    166 x86/
    167 [Ww][Ii][Nn]32/
    168 [Aa][Rr][Mm]/
    169 [Aa][Rr][Mm]64/
    170 bld/
    171 [Bb]in/
    172 [Oo]bj/
    173 [Ll]og/
    174 [Ll]ogs/
    175 
    176 # Visual Studio 2015/2017 cache/options directory
    177 .vs/
    178 # Uncomment if you have tasks that create the project's static files in wwwroot
    179 #wwwroot/
    180 
    181 # Visual Studio 2017 auto generated files
    182 Generated\ Files/
    183 
    184 # MSTest test Results
    185 [Tt]est[Rr]esult*/
    186 [Bb]uild[Ll]og.*
    187 
    188 # NUnit
    189 *.VisualState.xml
    190 TestResult.xml
    191 nunit-*.xml
    192 
    193 # Build Results of an ATL Project
    194 [Dd]ebugPS/
    195 [Rr]eleasePS/
    196 dlldata.c
    197 
    198 # Benchmark Results
    199 BenchmarkDotNet.Artifacts/
    200 
    201 # .NET Core
    202 project.lock.json
    203 project.fragment.lock.json
    204 artifacts/
    205 
    206 # ASP.NET Scaffolding
    207 ScaffoldingReadMe.txt
    208 
    209 # StyleCop
    210 StyleCopReport.xml
    211 
    212 # Files built by Visual Studio
    213 *_i.c
    214 *_p.c
    215 *_h.h
    216 *.ilk
    217 *.meta
    218 *.iobj
    219 *.pdb
    220 *.ipdb
    221 *.pgc
    222 *.pgd
    223 *.rsp
    224 *.sbr
    225 *.tlb
    226 *.tli
    227 *.tlh
    228 *.tmp
    229 *.tmp_proj
    230 *_wpftmp.csproj
    231 *.log
    232 *.tlog
    233 *.vspscc
    234 *.vssscc
    235 .builds
    236 *.pidb
    237 *.svclog
    238 *.scc
    239 
    240 # Chutzpah Test files
    241 _Chutzpah*
    242 
    243 # Visual C++ cache files
    244 ipch/
    245 *.aps
    246 *.ncb
    247 *.opendb
    248 *.opensdf
    249 *.sdf
    250 *.cachefile
    251 *.VC.db
    252 *.VC.VC.opendb
    253 
    254 # Visual Studio profiler
    255 *.psess
    256 *.vsp
    257 *.vspx
    258 *.sap
    259 
    260 # Visual Studio Trace Files
    261 *.e2e
    262 
    263 # TFS 2012 Local Workspace
    264 $tf/
    265 
    266 # Guidance Automation Toolkit
    267 *.gpState
    268 
    269 # ReSharper is a .NET coding add-in
    270 _ReSharper*/
    271 *.[Rr]e[Ss]harper
    272 *.DotSettings.user
    273 
    274 # TeamCity is a build add-in
    275 _TeamCity*
    276 
    277 # DotCover is a Code Coverage Tool
    278 *.dotCover
    279 
    280 # AxoCover is a Code Coverage Tool
    281 .axoCover/*
    282 !.axoCover/settings.json
    283 
    284 # Coverlet is a free, cross platform Code Coverage Tool
    285 coverage*.json
    286 coverage*.xml
    287 coverage*.info
    288 
    289 # Visual Studio code coverage results
    290 *.coverage
    291 *.coveragexml
    292 
    293 # NCrunch
    294 _NCrunch_*
    295 .*crunch*.local.xml
    296 nCrunchTemp_*
    297 
    298 # MightyMoose
    299 *.mm.*
    300 AutoTest.Net/
    301 
    302 # Web workbench (sass)
    303 .sass-cache/
    304 
    305 # Installshield output folder
    306 [Ee]xpress/
    307 
    308 # DocProject is a documentation generator add-in
    309 DocProject/buildhelp/
    310 DocProject/Help/*.HxT
    311 DocProject/Help/*.HxC
    312 DocProject/Help/*.hhc
    313 DocProject/Help/*.hhk
    314 DocProject/Help/*.hhp
    315 DocProject/Help/Html2
    316 DocProject/Help/html
    317 
    318 # Click-Once directory
    319 publish/
    320 
    321 # Publish Web Output
    322 *.[Pp]ublish.xml
    323 *.azurePubxml
    324 # Note: Comment the next line if you want to checkin your web deploy settings,
    325 # but database connection strings (with potential passwords) will be unencrypted
    326 *.pubxml
    327 *.publishproj
    328 
    329 # Microsoft Azure Web App publish settings. Comment the next line if you want to
    330 # checkin your Azure Web App publish settings, but sensitive information contained
    331 # in these scripts will be unencrypted
    332 PublishScripts/
    333 
    334 # NuGet Packages
    335 *.nupkg
    336 # NuGet Symbol Packages
    337 *.snupkg
    338 # The packages folder can be ignored because of Package Restore
    339 **/[Pp]ackages/*
    340 # except build/, which is used as an MSBuild target.
    341 !**/[Pp]ackages/build/
    342 # Uncomment if necessary however generally it will be regenerated when needed
    343 #!**/[Pp]ackages/repositories.config
    344 # NuGet v3's project.json files produces more ignorable files
    345 *.nuget.props
    346 *.nuget.targets
    347 
    348 # Microsoft Azure Build Output
    349 csx/
    350 *.build.csdef
    351 
    352 # Microsoft Azure Emulator
    353 ecf/
    354 rcf/
    355 
    356 # Windows Store app package directories and files
    357 AppPackages/
    358 BundleArtifacts/
    359 Package.StoreAssociation.xml
    360 _pkginfo.txt
    361 *.appx
    362 *.appxbundle
    363 *.appxupload
    364 
    365 # Visual Studio cache files
    366 # files ending in .cache can be ignored
    367 *.[Cc]ache
    368 # but keep track of directories ending in .cache
    369 !?*.[Cc]ache/
    370 
    371 # Others
    372 ClientBin/
    373 ~$*
    374 *~
    375 *.dbmdl
    376 *.dbproj.schemaview
    377 *.jfm
    378 *.pfx
    379 *.publishsettings
    380 orleans.codegen.cs
    381 
    382 # Including strong name files can present a security risk
    383 # (https://github.com/github/gitignore/pull/2483#issue-259490424)
    384 #*.snk
    385 
    386 # Since there are multiple workflows, uncomment next line to ignore bower_components
    387 # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
    388 #bower_components/
    389 
    390 # RIA/Silverlight projects
    391 Generated_Code/
    392 
    393 # Backup & report files from converting an old project file
    394 # to a newer Visual Studio version. Backup files are not needed,
    395 # because we have git ;-)
    396 _UpgradeReport_Files/
    397 Backup*/
    398 UpgradeLog*.XML
    399 UpgradeLog*.htm
    400 ServiceFabricBackup/
    401 *.rptproj.bak
    402 
    403 # SQL Server files
    404 *.mdf
    405 *.ldf
    406 *.ndf
    407 
    408 # Business Intelligence projects
    409 *.rdl.data
    410 *.bim.layout
    411 *.bim_*.settings
    412 *.rptproj.rsuser
    413 *- [Bb]ackup.rdl
    414 *- [Bb]ackup ([0-9]).rdl
    415 *- [Bb]ackup ([0-9][0-9]).rdl
    416 
    417 # Microsoft Fakes
    418 FakesAssemblies/
    419 
    420 # GhostDoc plugin setting file
    421 *.GhostDoc.xml
    422 
    423 # Node.js Tools for Visual Studio
    424 .ntvs_analysis.dat
    425 node_modules/
    426 
    427 # Visual Studio 6 build log
    428 *.plg
    429 
    430 # Visual Studio 6 workspace options file
    431 *.opt
    432 
    433 # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
    434 *.vbw
    435 
    436 # Visual Studio 6 auto-generated project file (contains which files were open etc.)
    437 *.vbp
    438 
    439 # Visual Studio 6 workspace and project file (working project files containing files to include in project)
    440 *.dsw
    441 *.dsp
    442 
    443 # Visual Studio 6 technical files
    444 
    445 # Visual Studio LightSwitch build output
    446 **/*.HTMLClient/GeneratedArtifacts
    447 **/*.DesktopClient/GeneratedArtifacts
    448 **/*.DesktopClient/ModelManifest.xml
    449 **/*.Server/GeneratedArtifacts
    450 **/*.Server/ModelManifest.xml
    451 _Pvt_Extensions
    452 
    453 # Paket dependency manager
    454 .paket/paket.exe
    455 paket-files/
    456 
    457 # FAKE - F# Make
    458 .fake/
    459 
    460 # CodeRush personal settings
    461 .cr/personal
    462 
    463 # Python Tools for Visual Studio (PTVS)
    464 __pycache__/
    465 *.pyc
    466 
    467 # Cake - Uncomment if you are using it
    468 # tools/**
    469 # !tools/packages.config
    470 
    471 # Tabs Studio
    472 *.tss
    473 
    474 # Telerik's JustMock configuration file
    475 *.jmconfig
    476 
    477 # BizTalk build output
    478 *.btp.cs
    479 *.btm.cs
    480 *.odx.cs
    481 *.xsd.cs
    482 
    483 # OpenCover UI analysis results
    484 OpenCover/
    485 
    486 # Azure Stream Analytics local run output
    487 ASALocalRun/
    488 
    489 # MSBuild Binary and Structured Log
    490 *.binlog
    491 
    492 # NVidia Nsight GPU debugger configuration file
    493 *.nvuser
    494 
    495 # MFractors (Xamarin productivity tool) working folder
    496 .mfractor/
    497 
    498 # Local History for Visual Studio
    499 .localhistory/
    500 
    501 # Visual Studio History (VSHistory) files
    502 .vshistory/
    503 
    504 # BeatPulse healthcheck temp database
    505 healthchecksdb
    506 
    507 # Backup folder for Package Reference Convert tool in Visual Studio 2017
    508 MigrationBackup/
    509 
    510 # Ionide (cross platform F# VS Code tools) working folder
    511 .ionide/
    512 
    513 # Fody - auto-generated XML schema
    514 FodyWeavers.xsd
    515 
    516 # VS Code files for those working on multiple tools
    517 *.code-workspace
    518 
    519 # Local History for Visual Studio Code
    520 
    521 # Windows Installer files from build outputs
    522 *.cab
    523 *.msi
    524 *.msix
    525 *.msm
    526 *.msp
    527 
    528 # JetBrains Rider
    529 *.sln.iml
    530 
    531 ### CLion template
    532 # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
    533 # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
    534 
    535 # User-specific stuff
    536 
    537 # AWS User-specific
    538 
    539 # Generated files
    540 
    541 # Sensitive or high-churn files
    542 
    543 # Gradle
    544 
    545 # Gradle and Maven with auto-import
    546 # When using Gradle or Maven with auto-import, you should exclude module files,
    547 # since they will be recreated, and may cause churn.  Uncomment if using
    548 # auto-import.
    549 # .idea/artifacts
    550 # .idea/compiler.xml
    551 # .idea/jarRepositories.xml
    552 # .idea/modules.xml
    553 # .idea/*.iml
    554 # .idea/modules
    555 # *.iml
    556 # *.ipr
    557 
    558 # CMake
    559 
    560 # Mongo Explorer plugin
    561 
    562 # File-based project format
    563 
    564 # IntelliJ
    565 
    566 # mpeltonen/sbt-idea plugin
    567 
    568 # JIRA plugin
    569 
    570 # Cursive Clojure plugin
    571 
    572 # SonarLint plugin
    573 
    574 # Crashlytics plugin (for Android Studio and IntelliJ)
    575 
    576 # Editor-based Rest Client
    577 
    578 # Android studio 3.1+ serialized cache file
    579