Do not add the SkiaSharp prefix to dependencies (#1331)

This commit is contained in:
Matthew Leibowitz 2020-06-11 20:41:29 +02:00 коммит произвёл GitHub
Родитель 8791714683
Коммит 5e10849c89
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -115,9 +115,13 @@ void CreateSamplesDirectory(DirectoryPath samplesDirPath, DirectoryPath outputDi
if (!string.IsNullOrWhiteSpace(version)) {
Debug($"Substituting project reference {relFilePath} for project {rel}.");
var name = projItem.Name.Namespace + "PackageReference";
// only add the suffix for our nugets
if (packagingGroup.StartsWith("SkiaSharp") || packagingGroup.StartsWith("HarfBuzzSharp")) {
version += suffix;
}
projItem.AddAfterSelf(new XElement(name, new object[] {
new XAttribute("Include", packagingGroup),
new XAttribute("Version", version + suffix),
new XAttribute("Version", version),
}));
} else {
Warning($"Unable to find version information for package '{packagingGroup}'.");