Skip to content

Commit 479ea0c

Browse files
authored
Further dependency upgrades (#19202)
* Updates dependencies on Umbraco.Code and Microsoft.CodeAnalysis.*. * Avoids dependency warnings on build of Web.UI project. * Bumped version to 16.0-rc2.
1 parent 65d3ace commit 479ea0c

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

Directory.Packages.props

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,17 @@
77
<ItemGroup>
88
<GlobalPackageReference Include="Nerdbank.GitVersioning" Version="3.7.115" />
99
<GlobalPackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.556" />
10-
<GlobalPackageReference Include="Umbraco.Code" Version="2.2.0" />
10+
<GlobalPackageReference Include="Umbraco.Code" Version="2.3.0" />
1111
<GlobalPackageReference Include="Umbraco.GitVersioning.Extensions" Version="0.2.0" />
1212
</ItemGroup>
1313
<!-- Microsoft packages -->
1414
<ItemGroup>
1515
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="9.0.4" />
16-
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp" Version="4.10.0" /> <!-- TODO: Update the hard-dependency that Umbraco.Code has on 4.10.0 to allow update of this to latest (4.13.0). -->
16+
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp" Version="4.13.0" />
17+
<PackageVersion Include="Microsoft.CodeAnalysis.Common" Version="4.13.0" />
18+
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.13.0" />
19+
<PackageVersion Include="Microsoft.CodeAnalysis.Workspaces.Common" Version="4.13.0" />
20+
<PackageVersion Include="Microsoft.CodeAnalysis.Workspaces.MSBuild" Version="4.13.0" />
1721
<PackageVersion Include="Microsoft.Data.Sqlite" Version="9.0.4" />
1822
<PackageVersion Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.4" />
1923
<PackageVersion Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.4" />

src/Umbraco.Web.UI/Umbraco.Web.UI.csproj

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk.Web">
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
22
<PropertyGroup>
33
<RootNamespace>Umbraco.Cms.Web.UI</RootNamespace>
44
<IsPackable>false</IsPackable>
@@ -24,6 +24,11 @@
2424
<ItemGroup>
2525
<!-- Add design/build time support for EF Core migrations -->
2626
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" PrivateAssets="all" />
27+
<!-- Explicit transitive references to avoid warnings on build - see https://github.com/dotnet/efcore/issues/35143-->
28+
<PackageReference Include="Microsoft.CodeAnalysis.Common" />
29+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" />
30+
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.Common" />
31+
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.MSBuild" />
2732
</ItemGroup>
2833

2934
<ItemGroup>

0 commit comments

Comments
 (0)