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
13 changes: 13 additions & 0 deletions .ai-team/decisions/inbox/copilot-directive-slnx-only.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
### 2026-02-19: Use .slnx format exclusively—no .sln conversions

**By:** mpaulosky (via Copilot)

**What:** Team must use .slnx (new solution file format for .NET 10.0) in all processes. No conversions to legacy .sln format.

**Why:** User preference—ensures consistency with .NET 10.0 standard and prevents tooling confusion.

**Implementation:**
- All build workflows target `IssueManager.slnx` (not any `.sln` equivalent)
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.

The directive states "All build workflows target IssueManager.slnx (not any .sln equivalent)", but the actual implementation is incomplete. The file .github/workflows/test.yml still references IssueManager.sln in 7 places (lines 62, 91, 145, 198, 265, 319, and 373). These references need to be updated to IssueManager.slnx to align with this directive.

While this file is not part of the current diff, the directive being added explicitly promises that this change has been made, creating a discrepancy between the documented decision and the actual codebase state.

Copilot uses AI. Check for mistakes.
- Agents should never auto-generate or suggest `.sln` files
- When agents see `.sln` in output, treat it as a tooling error to flag
- Documentation and scripts reference `.slnx` exclusively
1 change: 1 addition & 0 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
<PackageVersion Include="Microsoft.AspNetCore.Components.Web" Version="10.0.0" />
<PackageVersion Include="Microsoft.Extensions.ServiceDiscovery" Version="10.0.0" />
<!-- MongoDB -->
<PackageVersion Include="MongoDB.Bson" Version="3.5.2" />
<PackageVersion Include="MongoDB.Entities" Version="25.0.0" />
<PackageVersion Include="MongoDB.Driver" Version="3.5.2" />
<!-- API Documentation -->
Expand Down
1 change: 1 addition & 0 deletions IssueManager.slnx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Format="1.0" ToolsVersion="Current">
<Configurations>
<Configuration>
Expand Down
1 change: 1 addition & 0 deletions src/Shared/Shared.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FluentValidation" />
<PackageReference Include="MongoDB.Bson" />
</ItemGroup>
</Project>
Loading