What changed, and why it matters
This commit fixes a typo in a package version number. The version string for the NBXplorer.Client package had an extra stray backtick character (`), which would break the build. Removing the backtick restores the intended version 5.0.6 and allows the project to compile normally. There is no security issue here.
No security action needed. This is a routine build-fix commit.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff shows a one-character change in BTCPayServer.Common.csproj: the NBXplorer.Client PackageReference Version attribute was corrected from “5.0.6`” (with a trailing backtick) to “5.0.6”. This is a syntactic fix to restore a valid NuGet package version and resolve a build failure. No functional, behavioral, or security change is introduced.
Changed components
BTCPayServer.Common/BTCPayServer.Common.csprojInspect captured patch +1 / −1
diff --git a/BTCPayServer.Common/BTCPayServer.Common.csproj b/BTCPayServer.Common/BTCPayServer.Common.csproj
index e0594e0..acf2963 100644
--- a/BTCPayServer.Common/BTCPayServer.Common.csproj
+++ b/BTCPayServer.Common/BTCPayServer.Common.csproj
@@ -2,7 +2,7 @@
<Import Project="../Build/Version.csproj" Condition="Exists('../Build/Version.csproj')" />
<Import Project="../Build/Common.csproj" />
<ItemGroup>
- <PackageReference Include="NBXplorer.Client" Version="5.0.6`" />
+ <PackageReference Include="NBXplorer.Client" Version="5.0.6" />
<PackageReference Include="NicolasDorier.StandardConfiguration" Version="2.0.1" />
</ItemGroup>
</Project>
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.