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
56 changes: 0 additions & 56 deletions dotnet/GitHub.Copilot.SDK.sln

This file was deleted.

13 changes: 13 additions & 0 deletions dotnet/GitHub.Copilot.SDK.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<Solution>
<Configurations>
<Platform Name="Any CPU" />
<Platform Name="x64" />
<Platform Name="x86" />
Comment on lines +1 to +5
Copy link

Copilot AI Feb 4, 2026

Choose a reason for hiding this comment

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

With the .sln removed, repo workflows that run dotnet restore, dotnet format, and dotnet build from the ./dotnet directory rely on implicit solution/project discovery (e.g. .github/workflows/dotnet-sdk-tests.yml:56-70). dotnet CLI commonly does not recognize .slnx as a build entrypoint, so these commands may start failing with “couldn’t find a project or solution file”. To keep CI/dev flows working, either keep the .sln alongside the .slnx, or update the affected scripts/workflows to pass explicit project/solution arguments (e.g., target src/GitHub.Copilot.SDK.csproj / test/GitHub.Copilot.SDK.Test.csproj, and point dotnet format at the same).

Copilot uses AI. Check for mistakes.
</Configurations>
<Folder Name="/src/">
<Project Path="src/GitHub.Copilot.SDK.csproj" />
</Folder>
<Folder Name="/test/">
<Project Path="test/GitHub.Copilot.SDK.Test.csproj" />
</Folder>
</Solution>
Loading