Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS has been phased out. To see alternatives please check here

Skip to content
Snippets Groups Projects
Commit e80baea7 authored by Michael KRISPER's avatar Michael KRISPER
Browse files

StarterHelper: corrected check for empty params

parent 37dab17e
No related branches found
No related tags found
No related merge requests found
...@@ -13,7 +13,7 @@ namespace TUGraz.VECTO ...@@ -13,7 +13,7 @@ namespace TUGraz.VECTO
{ {
var path = "No path found."; var path = "No path found.";
string version = "No version found."; string version = "No version found.";
if (validVersions is null) { if (validVersions is null || validVersions.Length == 0) {
validVersions = new[] { "net45", "net48", "net60" }; validVersions = new[] { "net45", "net48", "net60" };
} }
try { try {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment