Skip to content

Commit 9bb288b

Browse files
Stupid me - missed some changes for v1.0.0 in the metadata.
1 parent a942a14 commit 9bb288b

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed

Blazor.PWA.MSBuild.Tasks/Blazor.PWA.MSBuild.Tasks.csproj

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<Authors>Mister Magoo</Authors>
1111
<Copyright>2019 SQL-MisterMagoo</Copyright>
1212
<DevelopmentDependency>true</DevelopmentDependency>
13-
<Description>The easiest way to turn your Client Side Blazor application into a PWA with offline capabilities.
13+
<Description>The easiest way to turn your Blazor application into a PWA with offline capabilities.
1414
Add this package to your build process and it will generate the files you need to become PWA compatible.
1515
This does not make your application ready for distribution through "App Stores" - it just provides basic PWA functionality.</Description>
1616
<PackageId>BlazorPWA.MSBuild</PackageId>
@@ -21,19 +21,24 @@ This does not make your application ready for distribution through "App Stores"
2121
<PackageTags>Blazor,Build,MSBuild,PWA,Manifest,ServiceWorker,C#,DotNET,Web,Client</PackageTags>
2222
<Product>BlazorPWA.MSBuild</Product>
2323
<RepositoryUrl>https://github.com/SQL-MisterMagoo/Blazor.PWA.MSBuild</RepositoryUrl>
24-
<PackageIconUrl>https://github.com/SQL-MisterMagoo/Blazor.PWA.MSBuild/raw/master/Blazor.PWA.MSBuild-NuGet-Icon.png</PackageIconUrl>
24+
<PackageIconUrl></PackageIconUrl>
2525
<RepositoryType>git</RepositoryType>
26-
<PackageReleaseNotes>This is a beta release of a very basic PWA build target.
27-
Just by including this in the build, it can generate the basic requirements for an installable PWA for client side Blazor.
26+
<PackageReleaseNotes>This is a very basic PWA build target.
27+
Just by including this in the build, it can generate the basic requirements for an installable PWA for Blazor.
2828
The result is not an App Store package, it is simply the basic requirements for PWA.
29-
I will add more network caching strategies, but for now it has just one - cache all local assets.</PackageReleaseNotes>
29+
I will add more network caching strategies, but for now it has just one for CSB - cache all local assets.</PackageReleaseNotes>
30+
<PackageIcon>Blazor.PWA.MSBuild-NuGet-Icon.png</PackageIcon>
3031
</PropertyGroup>
3132

3233
<ItemGroup>
3334
<PackageReference Update="@(PackageReference)" PrivateAssets="All" />
3435
</ItemGroup>
3536

3637
<ItemGroup>
38+
<None Include="..\Blazor.PWA.MSBuild-NuGet-Icon.png">
39+
<Pack>True</Pack>
40+
<PackagePath></PackagePath>
41+
</None>
3742
<None Include="..\LICENSE.txt;..\README.md;">
3843
<Pack>True</Pack>
3944
<PackagePath></PackagePath>

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ I don't have a Mac, but I believe Safari does not prompt on desktop either.
2121
Install the nuget BlazorPWA.MsBuild
2222

2323
#### Package Manager:
24-
`Install-Package BlazorPWA.MSBuild -Version 0.0.1-beta20190808-20`
24+
`Install-Package BlazorPWA.MSBuild -Version 1.0.0`
2525

2626
#### .NET Cli:
27-
`dotnet add package BlazorPWA.MSBuild --version 0.0.1-beta20190808-20`
27+
`dotnet add package BlazorPWA.MSBuild --version 1.0.0`
2828

2929
#### Package Reference
30-
`<PackageReference Include="BlazorPWA.MSBuild" Version="0.0.1-beta20190808-20"/>`
30+
`<PackageReference Include="BlazorPWA.MSBuild" Version="1.0.0"/>`
3131

3232
## Configuration
3333

0 commit comments

Comments
 (0)