Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/copilot-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The repository uses a **config-driven approach** where all bindings are defined
- **`config.json`**: Master configuration containing all 600+ Maven artifacts to bind, their versions, and NuGet package information
- **`build.cake`**: Main Cake build script orchestrating the entire build process
- **`BUILDING.md`**: Comprehensive build instructions and prerequisites
- **`source/AssemblyInfo.cs`**: Contains build metadata placeholders that are replaced during the build process. **DO NOT EDIT** this file or modify the placeholder tokens - always revert any changes to maintain the original placeholder format.
- **`source/AssemblyInfo.cs`**: Contains build metadata placeholders that are replaced during the build process. **DO NOT EDIT** this file or modify the placeholder tokens. **CRITICAL**: This file is often modified by the build process. **ALWAYS check and revert `source/AssemblyInfo.cs` before committing** using `git checkout HEAD~1 -- source/AssemblyInfo.cs` or `git checkout <commit>~1 -- source/AssemblyInfo.cs` to restore placeholder tokens like `{BUILD_COMMIT}`, `{BUILD_NUMBER}`, and `{BUILD_TIMESTAMP}`.


### Directory Structure
Expand Down
Loading