File tree Expand file tree Collapse file tree 9 files changed +573
-545
lines changed
Expand file tree Collapse file tree 9 files changed +573
-545
lines changed Original file line number Diff line number Diff line change 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.SimpleDashboards
1313 project-path : src/Umbraco.Community.SimpleDashboards/Umbraco.Community.SimpleDashboards.csproj
1414 npm-working-dir : src/Umbraco.Community.SimpleDashboards.Client
1515 npm-enabled : true
16- umbraco-version : 17
17- dotnet-version : " 10"
1816 npm-version : " 22.x"
Original file line number Diff line number Diff 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 : Umbraco.Community.SimpleDashboards
1919 project-path : src/Umbraco.Community.SimpleDashboards/Umbraco.Community.SimpleDashboards.csproj
2020 npm-working-dir : src/Umbraco.Community.SimpleDashboards.Client
2121 npm-enabled : true
22- umbraco-version : 17
23- dotnet-version : " 10"
2422 npm-version : " 22.x"
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 }}
Original file line number Diff line number Diff line change 1- using Umbraco . Cms . Core . DependencyInjection ;
2- using Umbraco . Extensions ;
3-
41var builder = WebApplication . CreateBuilder ( args ) ;
52
63builder . CreateUmbracoBuilder ( )
Original file line number Diff line number Diff line change 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.SimpleDashboards\Umbraco.Community.SimpleDashboards.csproj" />
14+ <ProjectReference Include =" ..\Umbraco.Community.SimpleDashboards\Umbraco.Community.SimpleDashboards.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 >
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 1- using System . Collections . Concurrent ;
2- using Humanizer ;
3- using Umbraco . Community . SimpleDashboards . Core . Models ;
1+ using Umbraco . Community . SimpleDashboards . Core . Models ;
42using Umbraco . Extensions ;
53
64namespace Umbraco . Community . SimpleDashboards . Core ;
Original file line number Diff line number Diff line change 2323 </PropertyGroup >
2424
2525 <ItemGroup >
26- <PackageReference Include =" Umbraco.Cms.Api.Common" Version =" 17.0.0-rc1 " />
27- <PackageReference Include =" Umbraco.Cms.Api.Management" Version =" 17.0.0-rc1 " />
28- <PackageReference Include =" Umbraco.Cms.Core" Version =" 17.0.0-rc1 " />
29- <PackageReference Include =" Umbraco.Cms.Web.Website" Version =" 17.0.0-rc1 " />
30- <PackageReference Include =" jcdcdev.Umbraco.Core" Version =" 17.0.0-alpha0003 " />
26+ <PackageReference Include =" Umbraco.Cms.Api.Common" Version =" 17.0.0-rc4 " />
27+ <PackageReference Include =" Umbraco.Cms.Api.Management" Version =" 17.0.0-rc4 " />
28+ <PackageReference Include =" Umbraco.Cms.Core" Version =" 17.0.0-rc4 " />
29+ <PackageReference Include =" Umbraco.Cms.Web.Website" Version =" 17.0.0-rc4 " />
30+ <PackageReference Include =" jcdcdev.Umbraco.Core" Version =" 17.0.0-alpha.8 " />
3131 </ItemGroup >
3232
3333 <PropertyGroup Condition =" '$(Configuration)' == 'Debug'" >
4141 </PropertyGroup >
4242
4343 <ItemGroup >
44- <None Include =" ..\..\docs\icon.png" Pack =" true" PackagePath =" images\icon.png" />
45- <None Include =" ..\..\docs\README_nuget.md" Pack =" true" PackagePath =" \" />
46- <EmbeddedResource Include =" Views\Dashboards\ViewNotFound.cshtml" />
44+ <None Include =" ..\..\docs\icon.png" Pack =" true" PackagePath =" images\icon.png" />
45+ <None Include =" ..\..\docs\README_nuget.md" Pack =" true" PackagePath =" \" />
46+ <EmbeddedResource Include =" Views\Dashboards\ViewNotFound.cshtml" />
4747 </ItemGroup >
4848</Project >
Original file line number Diff line number Diff line change 11using Microsoft . Extensions . DependencyInjection ;
22using Microsoft . Extensions . Options ;
3- using Microsoft . OpenApi . Models ;
3+ using Microsoft . OpenApi ;
44using Swashbuckle . AspNetCore . SwaggerGen ;
55using Umbraco . Community . SimpleDashboards . Core ;
66
You can’t perform that action at this time.
0 commit comments