| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- ########################################
- # OS
- ########################################
- .DS_Store
- Thumbs.db
- ########################################
- # Visual Studio
- ########################################
- .vs/
- *.user
- *.suo
- *.userosscache
- *.sln.docstates
- ########################################
- # Visual Studio Code
- ########################################
- .vscode/*
- !.vscode/settings.json
- !.vscode/tasks.json
- !.vscode/launch.json
- !.vscode/extensions.json
- ########################################
- # Build results
- ########################################
- bin/
- obj/
- out/
- ########################################
- # .NET
- ########################################
- *.dll
- *.exe
- *.pdb
- *.cache
- *.log
- *.tmp
- *.rsp
- *.nupkg
- *.snupkg
- project.lock.json
- project.fragment.lock.json
- artifacts/
- ########################################
- # ASP.NET Core
- ########################################
- appsettings.Development.json
- appsettings.Local.json
- appsettings.*.json
- !appsettings.json
- ########################################
- # User secrets
- ########################################
- secrets.json
- ########################################
- # Entity Framework
- ########################################
- Migrations/*.cs
- !Migrations/*Snapshot.cs
- ########################################
- # Test results
- ########################################
- TestResults/
- coverage/
- *.coverage
- *.coveragexml
- ########################################
- # Docker
- ########################################
- .dockerignore
- docker-compose.override.yml
- ########################################
- # Logs
- ########################################
- logs/
- *.log
- ########################################
- # Node / Frontend (if used)
- ########################################
- node_modules/
- npm-debug.log*
- yarn-debug.log*
- yarn-error.log*
- pnpm-debug.log*
- ########################################
- # Environment variables
- ########################################
- .env
- .env.*
- ########################################
- # Publish output
- ########################################
- publish/
- ########################################
- # Rider / JetBrains
- ########################################
- .idea/
- *.sln.iml
|