Skip to content

feat(shared): create Shared class library (#2)#6

Merged
mpaulosky merged 2 commits intomainfrom
squad/2-add-shared-library
Feb 19, 2026
Merged

feat(shared): create Shared class library (#2)#6
mpaulosky merged 2 commits intomainfrom
squad/2-add-shared-library

Conversation

@mpaulosky
Copy link
Copy Markdown
Owner

Pull Request

Description

Closes #

Changes

  • Change 1
  • Change 2
  • Change 3

Type of Change

  • Bug fix (non-breaking change that fixes an issue)
  • New feature (non-breaking change that adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to change)
  • Documentation update

Testing

  • Unit tests added/updated
  • Integration tests added/updated
  • Manual testing performed (describe)

Checklist

  • Code follows the project's coding standards (see docs/CONTRIBUTING.md)
  • I have performed a self-review of my own code
  • I have commented my code, particularly in hard-to-understand areas
  • I have updated documentation as needed
  • My changes generate no new warnings
  • I have added tests that prove my fix is effective or that my feature works
  • New and existing unit tests pass locally with my changes
  • Any dependent changes have been merged and published

Squad Label

Review Notes

Screenshots / Videos

mpaulosky and others added 2 commits February 18, 2026 17:27
- Create new Shared class library project (net10.0, C# 14.0)
- Add Shared.csproj with standard configuration (Nullable, ImplicitUsings)
- Add Shared/Utilities.cs placeholder class
- Register Shared project in IssueManager.slnx solution file
- Project ready for shared utilities, extensions, and constants

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
- Created IssueManager.Shared class library in src/Shared/
- Configured for .NET 10.0 with C# 14.0
- Added to IssueManager.slnx solution file
- Zero external dependencies (uses only .NET BCL)
- Placeholder Utilities.cs class provides starting point
- Will house shared DTOs, extensions, constants, and validation rules

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Copilot AI review requested due to automatic review settings February 19, 2026 01:31
@mpaulosky mpaulosky added the enhancement New feature or request label Feb 19, 2026
@mpaulosky mpaulosky merged commit f3cd7d0 into main Feb 19, 2026
7 checks passed
@mpaulosky mpaulosky deleted the squad/2-add-shared-library branch February 19, 2026 01:32
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Adds a new IssueManager.Shared class library intended to host cross-cutting shared code (DTOs, extensions, constants, etc.) for the IssueManager solution.

Changes:

  • Created src/Shared/Shared.csproj targeting net10.0 with nullable and implicit usings enabled.
  • Added a placeholder Utilities static class in IssueManager.Shared.
  • Registered the Shared project in IssueManager.slnx and documented the decision/history in .ai-team/.

Reviewed changes

Copilot reviewed 5 out of 5 changed files in this pull request and generated 1 comment.

Show a summary per file
File Description
src/Shared/Utilities.cs Adds initial placeholder type in the new shared library namespace.
src/Shared/Shared.csproj Introduces the new Shared class library project configuration.
IssueManager.slnx Adds the Shared project to the solution manifest.
.ai-team/decisions/inbox/aragorn-shared-library-design.md Captures the intended Shared library structure and constraints.
.ai-team/agents/aragorn/history.md Records the implementation notes/patterns for Issue #2.

Comment thread src/Shared/Shared.csproj
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>IssueManager.Shared</RootNamespace>
</PropertyGroup>
Copy link

Copilot AI Feb 19, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

src/Shared/Shared.csproj is missing the ProjectCapability Include="CanEvaluateItemsWithTargetFramework" item group that exists in the other projects (e.g., src/Api/Api.csproj:18-20, src/ServiceDefaults/ServiceDefaults.csproj:17-19). If this capability is required for consistent tooling/solution evaluation in this repo, please add the same ProjectCapability item group here as well.

Suggested change
</PropertyGroup>
</PropertyGroup>
<ItemGroup>
<ProjectCapability Include="CanEvaluateItemsWithTargetFramework" />
</ItemGroup>

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

enhancement New feature or request

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants