Skip to content

Commit

Permalink
#49
Browse files Browse the repository at this point in the history
  • Loading branch information
JimKerslake committed May 25, 2023
1 parent 9d8207f commit d3df71e
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using cloudscribe.PwaKit.Interfaces;
using cloudscribe.PwaKit.Models;
using cloudscribe.Web.Navigation;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ public static PwaBuilder MakeCloudscribeAdminPagesNetworkOnly(this PwaBuilder bu
public static PwaBuilder PreCacheContentFiles(this PwaBuilder builder)
{
builder.Services.Configure<PwaContentFilesPreCacheOptions>(builder.Configuration.GetSection("PwaContentFilesPreCacheOptions"));
builder.Services.Configure<PwaNetworkOnlyUrlOptions>(builder.Configuration.GetSection("PwaNetworkOnlyUrlOptions"));

builder.Services.AddScoped<IRuntimeCacheItemProvider, ContentFilesRuntimeCacheItemProvider>();
builder.Services.AddScoped<IHandleFilesUploaded, FileUploadCacheUpdateHandler>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Description>Integration between cloudscribe.Core and cloudscribe.PwaKit</Description>
<Version>6.0.2</Version>
<Version>6.0.4</Version>
<TargetFramework>net6.0</TargetFramework>
<Authors>Joe Audette</Authors>
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Collections.Generic;

namespace cloudscribe.PwaKit.Integration.CloudscribeCore
namespace cloudscribe.PwaKit.Models
{
public class PwaNetworkOnlyUrlOptions
{
Expand Down
2 changes: 2 additions & 0 deletions src/cloudscribe.PwaKit/StartupExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ IConfiguration config
services.Configure<PwaOptions>(config.GetSection("PwaOptions"));
services.Configure<PwaPreCacheItems>(config.GetSection("PwaPreCacheItems"));
services.Configure<PwaRuntimeCacheItems>(config.GetSection("PwaRuntimeCacheItems"));
services.Configure<PwaNetworkOnlyUrlOptions>(config.GetSection("PwaNetworkOnlyUrlOptions"));


services.Configure<PushClientSettings>(config.GetSection("PushServiceClient"));

Expand Down
4 changes: 2 additions & 2 deletions src/cloudscribe.PwaKit/cloudscribe.PwaKit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

<PropertyGroup>
<Description>A set of tools for building a dynamic serviceworker at runtime for ASP.NET Core</Description>
<Version>6.0.1</Version>
<TargetFramework>net6.0</TargetFramework>
<Version>6.0.4</Version>
<TargetFramework>net6.0</TargetFramework>
<Authors>Joe Audette</Authors>
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
<PackageTags>pwa,serviceworker,manifest,cloudscribe</PackageTags>
Expand Down

0 comments on commit d3df71e

Please sign in to comment.