TackleMcClean 🏅
01/08/2024, 9:20 AM<PackageReference Include="Umbraco.Cms" Version="13.0.3" />
Trying to run dotnet clean
I get this error:
(ResolvePackageAssets target) ->
/usr/share/dotnet/sdk/8.0.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.PackageDependencyResolution.targets(266,5): error NETSDK1064: Package Lucene.Net, version 4.8.0-beta00016 was not found. It might have been deleted since NuGet restore. Otherwise, NuGet restore might have only partially completed, which might have been due to maximum path length restrictions.
Does this mean there is a dependency on a non-existant package?
I can run dotnet restore
without problem. Is this expected behavior?Sebastiaan
01/08/2024, 9:47 AMSebastiaan
01/08/2024, 9:48 AMSebastiaan
01/08/2024, 9:50 AMdotnet clean
does is delete everything in bin
and obj
I think, so you could try that.
99.99% of the time you would never need to do a clean anyway, so maybe also consider what you're trying to solve/