Skip to content
Merged
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
8 changes: 4 additions & 4 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ no ambient static service locators. Logging goes through the injected
never commit a `packages.lock.json`. Central package management
(`Directory.Packages.props`) pins versions. If lock files appear,
remove the property and delete the files.
- **CI publishes the libraries.** `.github/workflows/ci.yml` builds and
packs `Vice.slnx` and pushes the library packages (`Vice`,
`Vice.Parser`) to NuGet on push to `main` via the `nuget` environment's
`NUGET_API_KEY` secret. The CLI projects are not packed.
- **CI publishes the library.** `.github/workflows/ci.yml` builds and
packs `src/Vice/Vice.csproj` and pushes the `Vice` package to NuGet on
push to `main` via the `nuget` environment's `NUGET_API_KEY` secret. The
CLI and parser projects are not packed.
- **Don't hand-edit generator output.** Generated composition wiring
comes from `Vice.Generators`; change the generator, rebuild.
- **Local packing is scripted.** `scripts/release.sh` and
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ To compare throughput run-over-run automatically, pass `--gate`: the harness dif

## Status

Active development; the framework API is still evolving. Library packages (`Vice`, `Vice.Parser`) publish to NuGet from CI on push to `main`.
Active development; the framework API is still evolving. The `Vice` library package publishes to NuGet from CI on push to `main`.

## License

Expand Down
Loading