Craig100
07/14/2023, 12:29 PMSebastiaan
07/14/2023, 12:32 PMCraig100
07/14/2023, 12:48 PMskttl
07/14/2023, 1:00 PMCraig100
07/14/2023, 1:06 PMCraig100
07/14/2023, 1:06 PMCraig100
07/14/2023, 1:09 PMCraig100
07/14/2023, 1:21 PMskttl
07/14/2023, 9:00 PMCraig100
07/15/2023, 3:42 PMCraig100
07/16/2023, 12:22 PMCraig100
07/17/2023, 10:17 AMKevin Jump
07/18/2023, 8:41 AMUmbraco.Cms.Web.Website
& Umbraco.Cms.Web.BackOffice
at v12 - and this https://learn.microsoft.com/en-us/nuget/concepts/dependency-resolution#cousin-dependencies explains why uSync v12 will upgrade some packages in the background - Ideas on how to stop it without the need for changes the Core Umbraco packages welcome. (this is not just an uSync issue, assuming many packages will do the same if you installed v12 versions on v11).Sebastiaan
07/18/2023, 8:48 AMKevin Jump
07/18/2023, 8:48 AM<PackageReference Include="Umbraco.Cms" Version="12.0.0" ExcludeAssets="all" />
but that actually means you don't get the reference in the package, however
<PackageReference Include="Umbraco.Cms" Version="12.0.0" ExcludeAssets="contentfiles" />
does seem to do something and it doesn't increase the size of the nuget package, so it might be that.Kevin Jump
07/18/2023, 8:49 AMKevin Jump
07/18/2023, 8:49 AM<PackageReference Include="Umbraco.Cms" Version="[12, 13)" ExcludeAssets="contentfiles" />
Sebastiaan
07/18/2023, 8:52 AMKevin Jump
07/18/2023, 8:54 AM