File tree Expand file tree Collapse file tree 11 files changed +86
-67
lines changed
Expand file tree Collapse file tree 11 files changed +86
-67
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ public class Composer : IComposer
1212{
1313 public void Compose ( IUmbracoBuilder builder )
1414 {
15- builder . ManifestFilters ( ) . Append < ManifestFilter > ( ) ;
1615 builder . AddB2MediaFileSystem ( ) ;
1716 }
1817}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ using jcdcdev . Umbraco . Core . Composing ;
2+
3+ namespace Umbraco . Community . FileSystemProviders . B2 . Composing ;
4+
5+ public class PackageManifest : SimplePackageManifest
6+ {
7+ protected override string PackageName => Constants . PackageName ;
8+ protected override bool AllowPackageTelemetry => true ;
9+ }
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ namespace Umbraco.Community.FileSystemProviders.B2;
22
33public class Constants
44{
5+ public const string PackageName = "Umbraco.Community.FileSystemProviders.B2" ;
56 public const string Section = "Umbraco:Storage:B2:Media" ;
67
78 public class HealthChecks
Original file line number Diff line number Diff line change 1+ using jcdcdev . Umbraco . Core . HealthChecks ;
12using Microsoft . Extensions . Options ;
23using Umbraco . Cms . Core . HealthChecks ;
34using Umbraco . Cms . Core . Services ;
@@ -10,8 +11,12 @@ namespace Umbraco.Community.FileSystemProviders.B2.HealthChecks;
1011 Constants . HealthChecks . ApplicationKey . Name ,
1112 Description = Constants . HealthChecks . ApplicationKey . Description ,
1213 Group = Constants . HealthChecks . Groups . Configuration ) ]
13- internal class ApplicationKeyHealthCheck ( ILocalizedTextService textService , IOptions < B2Options > options ) : ConfigurationNotNullHealthcheck < B2Options > ( textService , options )
14+ internal class ApplicationKeyHealthCheck : ConfigurationNotNullHealthcheck < B2Options >
1415{
16+ public ApplicationKeyHealthCheck ( ILocalizedTextService textService , IOptions < B2Options > options ) : base ( textService , options )
17+ {
18+ }
19+
1520 public override string ItemPath => Constants . HealthChecks . ApplicationKey . ItemPath ;
1621 public override string ReadMoreLink => Constants . HealthChecks . ApplicationKey . ReadMoreLink ;
1722 public override string CurrentValue => Options . Credentials ? . ApplicationKey ?? string . Empty ;
Original file line number Diff line number Diff line change 1+ using jcdcdev . Umbraco . Core . HealthChecks ;
12using Microsoft . Extensions . Hosting ;
23using Microsoft . Extensions . Options ;
34using Umbraco . Cms . Core . HealthChecks ;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ using jcdcdev . Umbraco . Core . HealthChecks ;
12using Microsoft . Extensions . Options ;
23using Umbraco . Cms . Core . HealthChecks ;
34using Umbraco . Cms . Core . Services ;
Original file line number Diff line number Diff line change 1+ using jcdcdev . Umbraco . Core . HealthChecks ;
12using Microsoft . Extensions . Options ;
23using Umbraco . Cms . Core . HealthChecks ;
34using Umbraco . Cms . Core . Services ;
Original file line number Diff line number Diff line change 3030 <PackageReference Include =" Umbraco.Cms.Web.BackOffice" Version =" [10.4.0,11.0.0)" />
3131 <PackageReference Include =" Umbraco.Cms.Web.Common" Version =" [10.4.0,11.0.0)" />
3232 <PackageReference Include =" Our.Umbraco.StorageProviders.AWSS3" Version =" 1.3.0" />
33+ <PackageReference Include =" jcdcdev.Umbraco.Core" Version =" 0.3.1" />
3334 </ItemGroup >
3435
3536 <ItemGroup Condition =" '$(TargetFramework)' == 'net7.0'" >
3839 <PackageReference Include =" Umbraco.Cms.Web.Common" Version =" [11.0.0,13.0.0)" />
3940 <PackageReference Include =" Umbraco.Cms.Imaging.ImageSharp" Version =" [11.0.0,13.0.0)" />
4041 <PackageReference Include =" Our.Umbraco.StorageProviders.AWSS3" Version =" 1.3.0" />
42+ <PackageReference Include =" jcdcdev.Umbraco.Core" Version =" 0.3.1" />
4143 </ItemGroup >
4244
4345 <ItemGroup Condition =" '$(TargetFramework)' == 'net8.0'" >
4648 <PackageReference Include =" Umbraco.Cms.Web.Common" Version =" [13.0.0,14.0.0)" />
4749 <PackageReference Include =" Umbraco.Cms.Imaging.ImageSharp" Version =" [13.0.0,14.0.0)" />
4850 <PackageReference Include =" Our.Umbraco.StorageProviders.AWSS3" Version =" 1.3.0" />
51+ <PackageReference Include =" jcdcdev.Umbraco.Core" Version =" 0.3.1" />
4952 </ItemGroup >
5053
5154 <PropertyGroup Condition =" '$(Configuration)' == 'Debug'" >
5861 <None Include =" ..\..\docs\icon.png" Pack =" true" PackagePath =" images\icon.png" />
5962 <None Include =" ..\..\.github\README.md" Pack =" true" PackagePath =" \" />
6063 </ItemGroup >
64+
65+ <ItemGroup >
66+ </ItemGroup >
6167</Project >
You can’t perform that action at this time.
0 commit comments