Updated workflow, widened support, now including Net 8, 9 and 10
Some checks failed
Nuget Pkg Build / build (push) Failing after 58s

This commit is contained in:
Samuele Lorefice
2025-09-22 02:26:07 +02:00
parent 16d0142967
commit d0ccdbfa0f
4 changed files with 10 additions and 7 deletions

View File

@@ -39,7 +39,7 @@ class GuidDependantService {
}
public void LogWithId(string message) {
logService.Log($"[GuidDependantService] {message} (ID: {guidService.Id})");
logService.Log($"[GuidDependantService] {message} (ID: {guidService?.Id})");
}
}