Skip to content

Latest commit

 

History

History
50 lines (36 loc) · 934 Bytes

File metadata and controls

50 lines (36 loc) · 934 Bytes

Contributing to NetContextServer

Quick Start

  1. Fork and clone the repository
  2. Install .NET 9.0 SDK or later
  3. Build: dotnet build
  4. Test: dotnet test

Development Process

  1. Create a feature branch:

    git checkout -b feature/your-feature
    # or
    git checkout -b fix/your-bug
  2. Make changes:

    • Follow C# coding conventions
    • Add/update tests
    • Update relevant documentation
  3. Commit with clear messages:

    git commit -m "feat: add new feature
    
    - Brief description of changes
    - Additional details if needed
    
    Fixes #123"
  4. Push and create a Pull Request

Guidelines

  • Keep changes focused and atomic
  • Include tests for new features
  • Update documentation as needed
  • Follow existing code style
  • Test AI integration if relevant

Need Help?

  • Check existing issues
  • Create a new issue
  • Join community discussions

Thank you for contributing!