All checks were successful
Deploy ASP.NET MVC to OCI / build-and-deploy (push) Successful in 15m36s
58 lines
530 B
Plaintext
58 lines
530 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
.gitmodules
|
|
|
|
# CI/CD
|
|
.gitea/
|
|
.github/
|
|
*.yml
|
|
*.yaml
|
|
|
|
# Documentation
|
|
README.md
|
|
*.md
|
|
docs/
|
|
|
|
# Build artifacts
|
|
**/bin/
|
|
**/obj/
|
|
**/out/
|
|
**/publish/
|
|
|
|
# VS Code
|
|
.vscode/
|
|
*.code-workspace
|
|
|
|
# Visual Studio
|
|
.vs/
|
|
*.user
|
|
*.suo
|
|
*.userosscache
|
|
*.sln.docstates
|
|
|
|
# Testing
|
|
**/TestResults/
|
|
**/*.trx
|
|
**/*.coverage
|
|
|
|
# Node modules (se houver)
|
|
node_modules/
|
|
npm-debug.log*
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp |