Skip to content

Commit

Permalink
feature Umbraco 15 support
Browse files Browse the repository at this point in the history
  • Loading branch information
jcdcdev committed Oct 8, 2024
1 parent c96872e commit 7cc6e0d
Show file tree
Hide file tree
Showing 109 changed files with 1,252 additions and 1,413 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ jobs:
project-path: src/Umbraco.Community.SimpleDashboards/Umbraco.Community.SimpleDashboards.csproj
npm-working-dir: src/Umbraco.Community.SimpleDashboards.Client
npm-enabled: true
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 @@ -18,7 +18,8 @@ jobs:
project-path: src/Umbraco.Community.SimpleDashboards/Umbraco.Community.SimpleDashboards.csproj
npm-working-dir: src/Umbraco.Community.SimpleDashboards.Client
npm-enabled: true
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.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Umbraco.Community.SimpleDashboards.Web;

namespace TestSite.Fourteen.Dashboards;
namespace TestSite.Dashboards;

public class BasicDashboard : SimpleDashboard
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Umbraco.Community.SimpleDashboards.Web;

namespace TestSite.Fourteen.Dashboards;
namespace TestSite.Dashboards;

public class ExampleDashboard : SimpleDashboard
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Umbraco.Community.SimpleDashboards.Web;

namespace TestSite.Fourteen.Dashboards;
namespace TestSite.Dashboards;

public class FrameExampleDashboard : SimpleDashboard
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Umbraco.Community.SimpleDashboards.Web;

namespace TestSite.Fourteen.Dashboards;
namespace TestSite.Dashboards;

public class ThisDashboardHasNoViewDashboard : SimpleDashboard
{
Expand Down
File renamed without changes.
File renamed without changes.
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
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Microsoft.AspNetCore.Mvc;
using Umbraco.Community.SimpleDashboards.Web;

namespace TestSite.Fourteen.ViewComponents.Dashboards;
namespace TestSite.ViewComponents.Dashboards;

public class ExampleDashboardViewComponent : DashboardViewComponent
{
Expand Down
File renamed without changes.
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 7cc6e0d

Please sign in to comment.