Skip to content

Commit 18dc7fe

Browse files
committed
feature Umbraco 15 support
1 parent a985d5d commit 18dc7fe

File tree

101 files changed

+1108
-1283
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+1108
-1283
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@ jobs:
1111
with:
1212
project-name: Umbraco.Community.DataProtection
1313
project-path: src/Umbraco.Community.DataProtection/Umbraco.Community.DataProtection.csproj
14-
umbraco-version: 14
14+
umbraco-version: 15
15+
dotnet-version: "9"

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ jobs:
1616
with:
1717
project-name: Umbraco.Community.DataProtection
1818
project-path: src/Umbraco.Community.DataProtection/Umbraco.Community.DataProtection.csproj
19-
umbraco-version: 14
19+
umbraco-version: 15
20+
dotnet-version: "9"
2021
- name: Release
2122
uses: jcdcdev/jcdcdev.Umbraco.GitHub.Release@main
2223
with:
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Umbraco.Cms.Core.Composing;
22
using Umbraco.Community.DataProtection.Composing;
33

4-
namespace TestSite.Fourteen;
4+
namespace TestSite;
55

66
public class Composer : IComposer
77
{
File renamed without changes.
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22
<PropertyGroup>
3-
<TargetFramework>net8.0</TargetFramework>
3+
<TargetFramework>net9.0</TargetFramework>
44
<ImplicitUsings>enable</ImplicitUsings>
55
<Nullable>enable</Nullable>
6-
<RootNamespace>TestSite.Fourteen</RootNamespace>
6+
<RootNamespace>TestSite</RootNamespace>
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Umbraco.Cms" Version="14.2.0"/>
11-
<PackageReference Include="uSync" Version="14.0.0"/>
10+
<PackageReference Include="Umbraco.Cms" Version="15.0.0-rc1"/>
11+
<!-- <PackageReference Include="uSync" Version="15.0.0"/>-->
1212
</ItemGroup>
1313

1414
<ItemGroup>

src/TestSite.14/Views/Partials/blockgrid/Components/umbBlockGridDemoHeadlineBlock.cshtml renamed to src/TestSite/Views/Partials/blockgrid/Components/umbBlockGridDemoHeadlineBlock.cshtml

File renamed without changes.

src/TestSite.14/Views/Partials/blockgrid/Components/umbBlockGridDemoImageBlock.cshtml renamed to src/TestSite/Views/Partials/blockgrid/Components/umbBlockGridDemoImageBlock.cshtml

File renamed without changes.

src/TestSite.14/Views/Partials/blockgrid/Components/umbBlockGridDemoRichTextBlock.cshtml renamed to src/TestSite/Views/Partials/blockgrid/Components/umbBlockGridDemoRichTextBlock.cshtml

File renamed without changes.

0 commit comments

Comments
 (0)