Skip to content

Commit e7f004d

Browse files
Updated ready for release
1 parent 431069d commit e7f004d

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

Blazor.PWA.MSBuild.Tasks/build/BlazorPWA.MSBuild.targets

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
<PropertyGroup Label="ProjectTypes">
88
<!-- Project type -->
9+
<BlazorProjectType Condition="'$(BlazorProjectType)' == '' AND '$(TargetFramework)' == 'netcoreapp3.1'">SSB</BlazorProjectType>
910
<BlazorProjectType Condition="'$(BlazorProjectType)' == '' AND '$(TargetFramework)' == 'netcoreapp3.0'">SSB</BlazorProjectType>
1011
<BlazorProjectType Condition="'$(BlazorProjectType)' == '' AND '$(TargetFramework)' == 'netstandard2.0'">CSB</BlazorProjectType>
1112
</PropertyGroup>

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
#### 16/10/2019
2+
3+
- Added new **Property** **`BlazorProjectType`** - used to select the type of Blazor project (SSB/CSB). This property will auto-configure but can be overridden in your csproj file in cases where auto-configure is wrong.
4+
- Added new **ServiceWorkerPattern** value - "none" - primarily intended for SSB projects (where it is the default) - this service worker does nothing.
5+
- Removed **Property** **`ServiceWorkerIndexUrl`**
6+
- Added new **Property** **`ProjectIndexPage`** - used to identify the name of a _CSB_ index page - defaults to `index.html`
7+
- Added new **Property** **`ProjectHomePage`** - used to identify the name of a _SSB_ index page - defaults to `Pages\_Host.cshtml`
8+
- Added **`BlazorProjectType`** to build output.
9+
110
#### 10/08/2019 - 13/08/2019
211

312
- Added new **Property** **`ServiceWorkerUpdateAlertText`** - used to change the default text in the "Update available alert".

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Blazor PWA Builder - MSBuild
22

3-
The easiest way to turn your Client Side Blazor project into a Progressive Web App (PWA).
3+
The easiest way to turn your Server Side And Client Side Blazor projects into Progressive Web Apps (PWA).
44

55
This project, when added to your build process, will generate the required files to enable basic PWA abilities for your project.
66

7-
It generates a manifest.json, a Service Worker with pre-caching of all required files and an installer for the Service Worker.
7+
It generates a manifest.json, a Service Worker with pre-caching of all required files (Blazor WebAssembly only) and an installer for the Service Worker.
88

9-
It currently includes a simple banner to notify the user that your application can be installed, and a simple alert to notify users when your application has been updated.
9+
It currently includes a simple banner, by default, to notify the user that your application can be installed, and a simple alert to notify users when your application has been updated (CSB Only).
1010

11-
This is to be considered a Beta release - I am looking for feedback/issues/requests.
11+
This is now an official release - I am looking for feedback/issues/requests.
1212

1313
### Browser compatibility
1414

0 commit comments

Comments
 (0)