Package deletion and types

This commit is contained in:
2024-04-28 15:44:12 +01:00
parent 62a8bf27cb
commit 01405abdf2
14 changed files with 67 additions and 70 deletions

View File

@ -50,7 +50,7 @@ namespace isnd.Data.Packages
internal string GetLatestVersion()
{
return Versions.Max(v => v.NugetVersion).ToFullString();
return Versions.Max(v => v.NugetVersion)?.ToFullString();
}
}
}