Я занимаюсь исследованием EPiserver. Я настроил окружение localhost, я создал addOn, и теперь я пытаюсь загрузить его, так как я уже создал файл .nupkg. Но я получаю это исключение:
"Версия схемы TestAddOn несовместима с версией NuGet 2.0.30619.9119. Пожалуйста, обновите NuGet до последней версии с http://go.microsoft.com/fwlink/?LinkId=213942.
"
Я бегу
nuget.exe update -Self
на моем компьютере, но у меня уже установлена последняя версия.
Checking for updates from https://www.nuget.org/api/v2/.
Currently running NuGet.exe 4.6.2.
NuGet.exe is up to date.
В чем здесь может быть несоответствие? Заранее спасибо.
UPDATE
Вот файл nuspec:
<?xml version="1.0"?>
<package >
<metadata>
<id>$id$</id>
<version>$version$</version>
<title>$title$</title>
<authors>$author$</authors>
<owners>$author$</owners>
<licenseUrl>http://LICENSE_URL_HERE_OR_DELETE_THIS_LINE</licenseUrl>
<projectUrl>http://PROJECT_URL_HERE_OR_DELETE_THIS_LINE</projectUrl>
<iconUrl>http://ICON_URL_HERE_OR_DELETE_THIS_LINE</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>$description$</description>
<releaseNotes>Summary of changes made in this release of the package.</releaseNotes>
<copyright>Copyright 2018</copyright>
<tags>Tag1 Tag2</tags>