Add nuget.config with Gitea package source for MarketAlly.* packages and credential configuration using environment variables. Remove nuget.config from .gitignore to track package source configuration while keeping credentials secure through environment variable substitution.
60 lines
582 B
Plaintext
60 lines
582 B
Plaintext
# Build results
|
|
[Dd]ebug/
|
|
[Rr]elease/
|
|
x64/
|
|
x86/
|
|
[Bb]in/
|
|
[Oo]bj/
|
|
[Ll]og/
|
|
[Ll]ogs/
|
|
|
|
# Visual Studio
|
|
.vs/
|
|
*.user
|
|
*.suo
|
|
*.userosscache
|
|
*.sln.docstates
|
|
*.userprefs
|
|
|
|
# JetBrains Rider
|
|
.idea/
|
|
*.sln.iml
|
|
|
|
# Build artifacts
|
|
*.nupkg
|
|
*.snupkg
|
|
*.zip
|
|
*.tar.gz
|
|
|
|
# Local config overrides
|
|
appsettings.*.local.json
|
|
appsettings.local.json
|
|
*.local.json
|
|
|
|
# Secrets and licenses
|
|
*.key
|
|
*.pem
|
|
*.license
|
|
secrets.json
|
|
license.json
|
|
|
|
# Docker
|
|
.docker/
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Test results
|
|
TestResults/
|
|
coverage/
|
|
*.coverage
|
|
*.coveragexml
|
|
|
|
# NuGet
|
|
packages/
|
|
*.nupkg
|
|
|
|
# Generated proto files
|
|
**/Proto/
|