fix #1987 Nuspec to include 'content'

This commit is contained in:
Tonći Vatavuk 2022-02-08 19:38:23 +01:00
parent bba5caecf7
commit 48e7a41af6

View File

@ -128,11 +128,8 @@ namespace Oqtane.Infrastructure
case "refs": // refs/net*/...
filename = ExtractFile(entry, Path.Combine(binPath, "refs"), 2);
break;
case "content": // ...
filename = ExtractFile(entry, contentRootPath, 1);
break;
case "contentFiles": // ...
filename = ExtractFile(entry, contentRootPath, 3);
case "content": // content/...
filename = ExtractFile(entry, contentRootPath, 0);
break;
}