Skip to content

Commit 17b05d5

Browse files
committed
feature: support Umbraco 17.0.0-rc4
1 parent b5c0889 commit 17b05d5

File tree

13 files changed

+1181
-1110
lines changed

13 files changed

+1181
-1110
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,10 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Build
10-
uses: jcdcdev/jcdcdev.Umbraco.Github.Build@main
10+
uses: jcdcdev/jcdcdev.Umbraco.Github.Build@v17
1111
with:
1212
project-name: jcdcdev.Umbraco.ReadingTime
1313
project-path: src/jcdcdev.Umbraco.ReadingTime/jcdcdev.Umbraco.ReadingTime.csproj
1414
npm-working-dir: src/jcdcdev.Umbraco.ReadingTime.Client
1515
npm-enabled: true
1616
npm-version: "22.x"
17-
umbraco-version: 17
18-
dotnet-version: "10"

.github/workflows/release.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,15 @@ jobs:
1313
steps:
1414
- name: Build
1515
id: build
16-
uses: jcdcdev/jcdcdev.Umbraco.GitHub.Build@main
16+
uses: jcdcdev/jcdcdev.Umbraco.Github.Build@v17
1717
with:
1818
project-name: jcdcdev.Umbraco.ReadingTime
1919
project-path: src/jcdcdev.Umbraco.ReadingTime/jcdcdev.Umbraco.ReadingTime.csproj
2020
npm-working-dir: src/jcdcdev.Umbraco.ReadingTime.Client
2121
npm-enabled: true
2222
npm-version: "22.x"
23-
umbraco-version: 17
24-
dotnet-version: "10"
2523
- name: Release
26-
uses: jcdcdev/jcdcdev.Umbraco.GitHub.Release@main
24+
uses: jcdcdev/jcdcdev.Umbraco.GitHub.Release@v17
2725
with:
2826
artifact-name: ${{ steps.build.outputs.artifact-name }}
2927
version: ${{ steps.build.outputs.version }}

src/jcdcdev.Umbraco.ReadingTime.TestSite/Program.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
using Umbraco.Cms.Core.DependencyInjection;
2-
using Umbraco.Extensions;
3-
41
var builder = WebApplication.CreateBuilder(args);
52

63
builder.CreateUmbracoBuilder()

src/jcdcdev.Umbraco.ReadingTime.TestSite/jcdcdev.Umbraco.ReadingTime.TestSite.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Umbraco.Cms" Version="17.0.0-rc1" />
10-
<PackageReference Include="uSync" Version="17.0.0-rc1" />
9+
<PackageReference Include="Umbraco.Cms" Version="17.0.0-rc4" />
10+
<PackageReference Include="uSync" Version="17.0.0-rc4" />
1111
</ItemGroup>
1212

1313
<ItemGroup>
14-
<ProjectReference Include="../jcdcdev.Umbraco.ReadingTime/jcdcdev.Umbraco.ReadingTime.csproj"/>
14+
<ProjectReference Include="../jcdcdev.Umbraco.ReadingTime/jcdcdev.Umbraco.ReadingTime.csproj" />
1515
</ItemGroup>
1616

1717
<ItemGroup>
1818
<!-- Opt-in to app-local ICU to ensure consistent globalization APIs across different platforms -->
19-
<PackageReference Include="Microsoft.ICU.ICU4C.Runtime" Version="72.1.0.3"/>
20-
<RuntimeHostConfigurationOption Include="System.Globalization.AppLocalIcu" Value="72.1.0.3" Condition="$(RuntimeIdentifier.StartsWith('linux')) or $(RuntimeIdentifier.StartsWith('win')) or ('$(RuntimeIdentifier)' == '' and !$([MSBuild]::IsOSPlatform('osx')))"/>
19+
<PackageReference Include="Microsoft.ICU.ICU4C.Runtime" Version="72.1.0.3" />
20+
<RuntimeHostConfigurationOption Include="System.Globalization.AppLocalIcu" Value="72.1.0.3" Condition="$(RuntimeIdentifier.StartsWith('linux')) or $(RuntimeIdentifier.StartsWith('win')) or ('$(RuntimeIdentifier)' == '' and !$([MSBuild]::IsOSPlatform('osx')))" />
2121
</ItemGroup>
2222

2323
<PropertyGroup>

0 commit comments

Comments
 (0)