Lucene.Net package not found on dotnet clean, version 4.8.0-beta00016
t
I am using Umbraco 13.0.3:
Copy code
<PackageReference Include="Umbraco.Cms" Version="13.0.3" />
Trying to run
dotnet clean
I get this error:
Copy code
(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?
s
all a
dotnet 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/
92 Views