huwred
02/28/2023, 9:03 AMBootFailedException: Boot failed: Umbraco cannot run. See Umbraco's log file for more details.
-> Umbraco.Cms.Core.Exceptions.BootFailedException: Value cannot be null. (Parameter 'packageXmlFile')
-> System.ArgumentNullException: Value cannot be null. (Parameter 'packageXmlFile')
at Umbraco.Cms.Infrastructure.Packaging.PackageInstallation.ReadPackage(XDocument packageXmlFile)
ANy body any bright ideas as to what is going on?Sebastiaan
02/28/2023, 9:13 AMSebastiaan
02/28/2023, 9:15 AMhuwred
02/28/2023, 9:19 AMSebastiaan
02/28/2023, 9:22 AMSebastiaan
02/28/2023, 9:23 AMhuwred
02/28/2023, 9:28 AMSebastiaan
02/28/2023, 9:34 AMSebastiaan
02/28/2023, 9:39 AMdotnet add package Cultiv.Hangfire --source D:\Dev\Cultiv.Hangfire\Release --prerelease
This SHOULD solve caching issues, as I believe it doesn't get cached if you use --source
- however, to be EXTRA safe, I always make sure I change the version number before I upload to nuget.org. So locally I keep changing the version on each build: dotnet build --configuration Release /p:Version=2.2.2-rc001
(and rc002
, etc).
When I finally upload to nuget.org, it has to be at LEAST rc003
if I previously used rc002
locally.
Might be paranoia, but it saves me from issue like this! 😅