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
79 changes: 0 additions & 79 deletions IssueManager.sln

This file was deleted.

25 changes: 25 additions & 0 deletions IssueManager.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<Project Format="1.0" ToolsVersion="Current">
<Configurations>
<Configuration>
<Name>Debug</Name>
<Platform>Any CPU</Platform>
</Configuration>
<Configuration>
<Name>Release</Name>
<Platform>Any CPU</Platform>
</Configuration>
</Configurations>
<Projects>
<Project Path="src\AppHost\AppHost.csproj" />
<Project Path="src\ServiceDefaults\ServiceDefaults.csproj" />
<Project Path="src\Shared\Shared.csproj" />
<Project Path="src\Api\Api.csproj" />
<Project Path="src\Web\Web.csproj" />
<Project Path="tests\Unit\Unit.csproj" />
<Project Path="tests\Architecture\Architecture.csproj" />
<Project Path="tests\BlazorTests\BlazorTests.csproj" />
<Project Path="tests\Integration\Integration.csproj" />
<Project Path="tests\Aspire\Aspire.csproj" />
<Project Path="tests\E2E\E2E.csproj" />
Comment on lines +13 to +23
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.

Switching the repo to the new IssueManager.slnx file while deleting IssueManager.sln will break existing CI jobs that still build IssueManager.sln (e.g., .github/workflows/test.yml uses dotnet build IssueManager.sln). Either update those workflows/scripts to use IssueManager.slnx or keep the .sln file to avoid CI failures.

Copilot uses AI. Check for mistakes.
</Projects>
</Project>
4 changes: 3 additions & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"sdk": {
"version": "10.0.200-preview.0.26103.119"
"version": "10.0.100",
"rollForward": "latestMinor",
"allowPrerelease": false
}
Comment on lines 1 to 6
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.

CI configuration references Global.json (capital G) as the global-json-file (see .github/workflows/squad-ci.yml), but the repository file is global.json. On Linux runners this casing mismatch will cause the setup step to fail unless the file is renamed or the workflow is updated.

Copilot uses AI. Check for mistakes.
}