Compiling with 14.3.0 now has an issue copying res...
# help-with-umbraco
s
Has anyone else experienced this? C:\Program Files\dotnet\sdk\8.0.401\Sdks\Microsoft.NET.Sdk.StaticWebAssets\targets\Microsoft.NET.Sdk.StaticWebAssets.Publish.targets(150,5): Warning MSB3026: Could not copy "C:\[REMOVED]\.nuget\packages\umbraco.cms.staticassets\14.2.0\staticwebassets\umbraco\backoffice\packages\relations\relation-types\repository\detail\relation-type-detail.store.js" to "C:\[REMOVED]\obj\Release\net8.0\linux-x64\PubTmp\Out\wwwroot\umbraco\backoffice\packages\relations\relation-types\repository\detail\relation-type-detail.store.js".
I removed the obvious bits of the paths
j
We support a base path up to 140 characters for older versions of msbuild, that still has the arbitrary max path length in WIndows of 260 characters. Another thing that caught my eye is that you are copying assets from 14.2.0 and not 14.3.0. Did you update all dependencies?
Adding to the explanation: I think you got the error either because the path is too long or because it's copying from another version of Umbraco.Cms.StaticAssets package than what is needed.
s
Holy Crap! Yep! Having a second set of eyes always helps. I checked out a clean version of the project and forgot to do the update. Big Thx @Jacob Overgaard !!!
10 Views