Mike Chambers
Mike Chambers
some tips here too.. that might be of interest. .dockerignore and multistage looked interesting https://www.docker.com/blog/9-tips-for-containerizing-your-net-application/ PS this is the start of my docker journey, so forgive me if I'm telling...
sample aspnet7 dockerfile found on my travels. https://github.com/dotnet/dotnet-docker/blob/main/samples/aspnetapp/Dockerfile
@soreng Could you point me to where I'd need to remove the check for a fullwidth grid row configurtion. For our purposes we need to have a fullwidth migrated to...
thanks @soreng but say we have multiple controls in a fullwidth container from the legacy grid when migrated they end up as floating in the root adding to the block...
I was doing a migrate in place, and think the migrator defaults to only for v7 migrations.
h5yr.. will have a go with that!
Migration plan that updates legacy grid to block grid and Umbraco.MediaPicker to MediaPicker3 issues
resultant conversion.. Which actually now I look closely has stripped an existing `mediaPicker3` for `ogImage`, as well as `Images:` in the grid from dtge being `[]` ```xml bw /bw/CharitySupport false...
Migration plan that updates legacy grid to block grid and Umbraco.MediaPicker to MediaPicker3 issues
And here is it exiting the content conversion.. with the corresponding `a55c69bb47c64d8fa7a5e4d536f3a1b5` mediaKey? 
Migration plan that updates legacy grid to block grid and Umbraco.MediaPicker to MediaPicker3 issues
Further digging, and it seems to loop through twice trying to update mediaPicker to mediaPicker3, though the contentAlias is still mediaPicker on the second iteration whilst the contentProperty.Value is already...
Migration plan that updates legacy grid to block grid and Umbraco.MediaPicker to MediaPicker3 issues
or maybe better?? ```csharp try { var mp3 = JsonConvert.DeserializeObject(contentProperty.Value); return contentProperty.Value; } catch { } ```