cscg22-gearboy

CSCG 2022 Challenge 'Gearboy'
git clone https://git.sinitax.com/sinitax/cscg22-gearboy
Log | Files | Refs | sfeed.txt

.gitignore (6616B)


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