Skip to content

Latest commit

 

History

History
45 lines (32 loc) · 733 Bytes

File metadata and controls

45 lines (32 loc) · 733 Bytes

Contributing

Development

Install pinned local tools:

dotnet tool restore

Restore, build, and format before submitting changes:

dotnet restore
dotnet build
dotnet csharpier format .

Commit Messages

Use Conventional Commits:

<type>(optional-scope): <description>

Common types:

  • feat: new behavior
  • fix: bug fix
  • docs: documentation only
  • style: formatting only
  • refactor: code change without behavior change
  • test: tests only
  • chore: maintenance

Examples:

feat: add assembly output path option
fix: preserve entry point declaring type name
docs: document csharpier usage

Keep commits focused. Use imperative mood in the description.