sprints work

This commit is contained in:
StellaOps Bot
2025-12-24 21:46:08 +02:00
parent 43e2af88f6
commit b9f71fc7e9
161 changed files with 29566 additions and 527 deletions

View File

@@ -225,17 +225,17 @@ internal static class ReachabilityStackEndpoints
return new EntrypointDto(
Name: entrypoint.Name,
Type: entrypoint.Type.ToString(),
File: entrypoint.File,
File: entrypoint.Location,
Description: entrypoint.Description);
}
private static CallSiteDto MapCallSiteToDto(CallSite site)
{
return new CallSiteDto(
Method: site.Method,
Type: site.ContainingType,
File: site.File,
Line: site.Line,
Method: site.MethodName,
Type: site.ClassName,
File: site.FileName,
Line: site.LineNumber,
CallType: site.Type.ToString());
}