chore(repo): normalize ignore policy and repository metadata paths

This commit is contained in:
José René White Enciso 2026-03-06 08:17:46 -06:00
parent 1b94aa68ed
commit 97de9e9b29
3 changed files with 16 additions and 46 deletions

58
.gitignore vendored
View File

@ -1,53 +1,23 @@
# AgileWebs local orchestration # Repository orchestration folders (local only)
.repo-tasks/
.repo-context/
.tasks/ .tasks/
.agile/ .agile/
# Build artifacts # .NET build outputs
**/[Bb]in/ **/bin/
**/[Oo]bj/ **/obj/
/**/out/
/**/artifacts/
# IDE and editor files
.vs/ .vs/
.idea/ TestResults/
.vscode/ **/TestResults/
*.suo
*.user *.user
*.userosscache *.suo
*.sln.docstates
*.rsuser *.rsuser
*.swp
*.swo
# NuGet # IDE
.idea/
# Package artifacts
*.nupkg *.nupkg
*.snupkg *.snupkg
**/packages/* artifacts/
!**/packages/build/
# Test output
**/TestResults/
*.trx
*.coverage
*.coveragexml
# Logs
*.log
logs/
# Local environment files
.env
.env.*
!.env.example
# Docker
.docker/
**/.docker/
*.pid
docker-compose.override.yml
docker-compose.*.override.yml
# OS files
.DS_Store
Thumbs.db

View File

@ -15,7 +15,7 @@ Remove cross-repo source coupling from `Furniture.DAL` and consume shared contra
Repository-level `nuget.config` includes: Repository-level `nuget.config` includes:
- `gitea-org`: `http://192.168.68.156:3000/api/packages/AgileWebs/nuget/index.json` - `gitea-org`: `http://192.168.10.100:3000/api/packages/AgileWebs/nuget/index.json`
- `nuget.org` - `nuget.org`
Because feed is currently HTTP, `allowInsecureConnections="true"` is required for the Gitea source. Because feed is currently HTTP, `allowInsecureConnections="true"` is required for the Gitea source.

View File

@ -2,7 +2,7 @@
<configuration> <configuration>
<packageSources> <packageSources>
<clear /> <clear />
<add key="gitea-org" value="http://192.168.68.156:3000/api/packages/AgileWebs/nuget/index.json" allowInsecureConnections="true" /> <add key="gitea-org" value="http://192.168.10.100:3000/api/packages/AgileWebs/nuget/index.json" allowInsecureConnections="true" />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" /> <add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
</packageSources> </packageSources>
</configuration> </configuration>