Skip to content

Commit b8cb0e3

Browse files
committed
feature: support Umbraco 17.0.0-rc4
1 parent 5c8f250 commit b8cb0e3

File tree

7 files changed

+524
-502
lines changed

7 files changed

+524
-502
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ 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: Umbraco.Community.DataProtection
1313
project-path: src/Umbraco.Community.DataProtection/Umbraco.Community.DataProtection.csproj
14-
umbraco-version: 17
15-
dotnet-version: "10"

.github/workflows/release.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,12 @@ 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: Umbraco.Community.DataProtection
1919
project-path: src/Umbraco.Community.DataProtection/Umbraco.Community.DataProtection.csproj
20-
umbraco-version: 17
21-
dotnet-version: "10"
2220
- name: Release
23-
uses: jcdcdev/jcdcdev.Umbraco.GitHub.Release@main
21+
uses: jcdcdev/jcdcdev.Umbraco.GitHub.Release@v17
2422
with:
2523
artifact-name: ${{ steps.build.outputs.artifact-name }}
2624
version: ${{ steps.build.outputs.version }}

src/Umbraco.Community.DataProtection.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/Umbraco.Community.DataProtection.TestSite/Umbraco.Community.DataProtection.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="../Umbraco.Community.DataProtection/Umbraco.Community.DataProtection.csproj"/>
14+
<ProjectReference Include="../Umbraco.Community.DataProtection/Umbraco.Community.DataProtection.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>

src/Umbraco.Community.DataProtection.TestSite/packages.lock.json

Lines changed: 337 additions & 316 deletions
Large diffs are not rendered by default.

src/Umbraco.Community.DataProtection/Umbraco.Community.DataProtection.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@
2323
</PropertyGroup>
2424

2525
<ItemGroup>
26-
<FrameworkReference Include="Microsoft.AspNetCore.App"/>
27-
<PackageReference Include="jcdcdev.Umbraco.Core" Version="17.0.0-alpha0003" />
28-
<PackageReference Include="Umbraco.Cms.Core" Version="17.0.0-rc1" />
29-
<PackageReference Include="Umbraco.Cms.Infrastructure" Version="17.0.0-rc1" />
26+
<FrameworkReference Include="Microsoft.AspNetCore.App" />
27+
<PackageReference Include="jcdcdev.Umbraco.Core" Version="17.0.0-alpha.8" />
28+
<PackageReference Include="Umbraco.Cms.Core" Version="17.0.0-rc4" />
29+
<PackageReference Include="Umbraco.Cms.Infrastructure" Version="17.0.0-rc4" />
3030
</ItemGroup>
3131

3232
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
@@ -40,7 +40,7 @@
4040
</PropertyGroup>
4141

4242
<ItemGroup>
43-
<None Include="..\..\docs\icon.png" Pack="true" PackagePath="images\icon.png"/>
44-
<None Include="..\..\docs\README_nuget.md" Pack="true" PackagePath="\"/>
43+
<None Include="..\..\docs\icon.png" Pack="true" PackagePath="images\icon.png" />
44+
<None Include="..\..\docs\README_nuget.md" Pack="true" PackagePath="\" />
4545
</ItemGroup>
4646
</Project>

0 commit comments

Comments
 (0)