Skip to content

Commit

Permalink
feature: Umbraco v15 support
Browse files Browse the repository at this point in the history
  • Loading branch information
jcdcdev committed Oct 8, 2024
1 parent 3210825 commit 3b44a20
Show file tree
Hide file tree
Showing 98 changed files with 1,086 additions and 1,261 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ jobs:
with:
project-name: jcdcdev.Umbraco.Core
project-path: src/jcdcdev.Umbraco.Core/jcdcdev.Umbraco.Core.csproj
umbraco-version: 14
umbraco-version: 15
dotnet-version: "9"
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ jobs:
with:
project-name: jcdcdev.Umbraco.Core
project-path: src/jcdcdev.Umbraco.Core/jcdcdev.Umbraco.Core.csproj
umbraco-version: 14
umbraco-version: 15
dotnet-version: "9"
- name: Release
uses: jcdcdev/jcdcdev.Umbraco.GitHub.Release@main
with:
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/TestSite.14/Composer.cs → src/TestSite/Composer.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Umbraco.Cms.Core.Composing;
using Umbraco.Cms.Infrastructure.Manifest;

namespace TestSite.Fourteen;
namespace TestSite;

public class Composer : IComposer
{
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using Umbraco.Cms.Core.Manifest;
using Umbraco.Cms.Infrastructure.Manifest;

namespace TestSite.Fourteen;
namespace TestSite;

public class SimpleWorkspaceViewPackageManifestReader() : IPackageManifestReader
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>TestSite.Fourteen</RootNamespace>
<RootNamespace>TestSite</RootNamespace>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Umbraco.Cms" Version="14.2.0"/>
<PackageReference Include="uSync" Version="14.0.0"/>
<PackageReference Include="Umbraco.Cms" Version="15.0.0-rc1"/>
<!-- <PackageReference Include="uSync" Version="15.0.0"/>-->
</ItemGroup>

<ItemGroup>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit 3b44a20

Please sign in to comment.