Skip to content
Open
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
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<LangVersion>Latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.400" PrivateAssets="All" />

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🟠 High src/Directory.Build.props:27

CI restore and build fail because Microsoft.SourceLink.GitHub 10.0.400 requires a .NET 8 SDK, while the repository workflows install only .NET 6.0.x and 7.0.x. Retain a SourceLink release compatible with those SDKs or update the workflows and SDK baseline.

Suggested change
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.400" PrivateAssets="All" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
🚀 Reply "fix it for me" or copy this AI Prompt for your agent:
In file @src/Directory.Build.props around line 27:

CI restore and build fail because `Microsoft.SourceLink.GitHub` `10.0.400` requires a .NET 8 SDK, while the repository workflows install only .NET `6.0.x` and `7.0.x`. Retain a SourceLink release compatible with those SDKs or update the workflows and SDK baseline.

</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="MongoFramework" Version="0.29.0" />
<PackageReference Include="Microsoft.Extensions.Identity.Core" Version="7.0.20" />
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="7.0.20" />
<PackageReference Include="Microsoft.Extensions.Identity.Core" Version="10.0.11" />
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="10.0.11" />
</ItemGroup>
</When>
<When Condition=" '$(TargetFramework)' == 'net6.0' ">
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="MongoFramework" Version="0.29.0" />
<PackageReference Include="Microsoft.Extensions.Identity.Core" Version="6.0.33" />
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="6.0.33" />
<PackageReference Include="Microsoft.Extensions.Identity.Core" Version="10.0.11" />
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="10.0.11" />
</ItemGroup>
</When>
</Choose>
Expand Down
Loading