chore: remove repository scaffolding artifacts and relocate .NET local tools manifest - #2
Merged
Merged
Conversation
Copilot
AI
changed the title
[WIP] Apply repository cleanup for GhostTrace
chore: remove repository scaffolding artifacts and relocate .NET local tools manifest
Jul 24, 2026
Devzinh
approved these changes
Jul 24, 2026
There was a problem hiding this comment.
Pull request overview
This PR performs repository housekeeping by removing empty scaffolding/placeholder artifacts and accidental scan output, while relocating the .NET local tools manifest to .config/dotnet-tools.json so dotnet tool restore discovers it via the canonical path.
Changes:
- Removed placeholder sample folders and placeholder/empty test project artifacts (including empty xUnit stubs and
.gitkeepmarkers). - Removed an accidentally committed scan artifact (
correlation.json) and an empty CI scaffold marker. - Added the local .NET tools manifest under
.config/dotnet-tools.jsonto align withdotnet tool restorediscovery rules.
Reviewed changes
Copilot reviewed 6 out of 21 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| tools/ci/.gitkeep | Removes empty CI scaffold marker. |
| tests/GhostTrace.Tests.Unit/UnitTest1.cs | Deletes placeholder unit test stub. |
| tests/GhostTrace.Tests.Unit/Modules/.gitkeep | Removes empty placeholder directory marker. |
| tests/GhostTrace.Tests.Unit/Core/.gitkeep | Removes empty placeholder directory marker. |
| tests/GhostTrace.Tests.Unit/CLI/.gitkeep | Removes empty placeholder directory marker. |
| tests/GhostTrace.Tests.Integration/UnitTest1.cs | Deletes placeholder integration test stub. |
| tests/GhostTrace.Tests.Integration/Reporting/.gitkeep | Removes empty placeholder directory marker. |
| tests/GhostTrace.Tests.Integration/Pipeline/.gitkeep | Removes empty placeholder directory marker. |
| tests/GhostTrace.Tests.Integration/GhostTrace.Tests.Integration.csproj | Removes placeholder integration test project definition. |
| tests/GhostTrace.Tests.Integration/Fixtures/.gitkeep | Removes empty placeholder directory marker. |
| tests/GhostTrace.Tests.ForensicSafety/UnitTest1.cs | Deletes placeholder forensic-safety test stub. |
| tests/GhostTrace.Tests.ForensicSafety/RegistryAccess/.gitkeep | Removes empty placeholder directory marker. |
| tests/GhostTrace.Tests.ForensicSafety/ReadOnlyGuards/.gitkeep | Removes empty placeholder directory marker. |
| tests/GhostTrace.Tests.ForensicSafety/GhostTrace.Tests.ForensicSafety.csproj | Removes placeholder forensic-safety test project definition. |
| tests/GhostTrace.Tests.ForensicSafety/FilesystemAccess/.gitkeep | Removes empty placeholder directory marker. |
| samples/reports/.gitkeep | Removes empty placeholder directory marker. |
| samples/profiles/.gitkeep | Removes empty placeholder directory marker. |
| samples/datasets/.gitkeep | Removes empty placeholder directory marker. |
| correlation.json | Removes accidentally tracked scan artifact from repo root. |
| .config/dotnet-tools.json | Adds local tool manifest in the canonical .config/ location for dotnet tool restore. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR applies a scoped repository cleanup: removes empty scaffolding/sample content and accidental scan/debug artifacts, and relocates the local .NET tools manifest to the canonical path used by
dotnet tool restore.Cleanup: empty scaffolding and placeholders
samples/placeholder tree (datasets/,profiles/,reportswith only.gitkeep).tests/GhostTrace.Tests.Integration/tests/GhostTrace.Tests.ForensicSafety/tests/GhostTrace.Tests.Unit/:UnitTest1.csCLI/.gitkeep,Core/.gitkeep,Modules/.gitkeeptools/ci/.gitkeep.Cleanup: accidental/unneeded tracked files
correlation.json.assets/readme/hero.gif.Tooling manifest path fix
dotnet-tools.json→.config/dotnet-tools.jsonIgnore rules
.gitignore:correlation.json*-report.json*-report.txtcleanup-*.logdotnet tool restoresucceeds with the manifest in.config/.dotnet build GhostTrace.slnstill fails on Linux at the existing Windows-only WiX installer project (GhostTrace.Installer.wixproj), unchanged by this cleanup.