Skip to content

Commit

Permalink
Stupid me - missed some changes for v1.0.0 in the metadata.
Browse files Browse the repository at this point in the history
  • Loading branch information
SQL-MisterMagoo committed Oct 16, 2019
1 parent a942a14 commit 9bb288b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
15 changes: 10 additions & 5 deletions Blazor.PWA.MSBuild.Tasks/Blazor.PWA.MSBuild.Tasks.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<Authors>Mister Magoo</Authors>
<Copyright>2019 SQL-MisterMagoo</Copyright>
<DevelopmentDependency>true</DevelopmentDependency>
<Description>The easiest way to turn your Client Side Blazor application into a PWA with offline capabilities.
<Description>The easiest way to turn your Blazor application into a PWA with offline capabilities.
Add this package to your build process and it will generate the files you need to become PWA compatible.
This does not make your application ready for distribution through "App Stores" - it just provides basic PWA functionality.</Description>
<PackageId>BlazorPWA.MSBuild</PackageId>
Expand All @@ -21,19 +21,24 @@ This does not make your application ready for distribution through "App Stores"
<PackageTags>Blazor,Build,MSBuild,PWA,Manifest,ServiceWorker,C#,DotNET,Web,Client</PackageTags>
<Product>BlazorPWA.MSBuild</Product>
<RepositoryUrl>https://github.com/SQL-MisterMagoo/Blazor.PWA.MSBuild</RepositoryUrl>
<PackageIconUrl>https://github.com/SQL-MisterMagoo/Blazor.PWA.MSBuild/raw/master/Blazor.PWA.MSBuild-NuGet-Icon.png</PackageIconUrl>
<PackageIconUrl></PackageIconUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>This is a beta release of a very basic PWA build target.
Just by including this in the build, it can generate the basic requirements for an installable PWA for client side Blazor.
<PackageReleaseNotes>This is a very basic PWA build target.
Just by including this in the build, it can generate the basic requirements for an installable PWA for Blazor.
The result is not an App Store package, it is simply the basic requirements for PWA.
I will add more network caching strategies, but for now it has just one - cache all local assets.</PackageReleaseNotes>
I will add more network caching strategies, but for now it has just one for CSB - cache all local assets.</PackageReleaseNotes>
<PackageIcon>Blazor.PWA.MSBuild-NuGet-Icon.png</PackageIcon>
</PropertyGroup>

<ItemGroup>
<PackageReference Update="@(PackageReference)" PrivateAssets="All" />
</ItemGroup>

<ItemGroup>
<None Include="..\Blazor.PWA.MSBuild-NuGet-Icon.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\LICENSE.txt;..\README.md;">
<Pack>True</Pack>
<PackagePath></PackagePath>
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ I don't have a Mac, but I believe Safari does not prompt on desktop either.
Install the nuget BlazorPWA.MsBuild

#### Package Manager:
`Install-Package BlazorPWA.MSBuild -Version 0.0.1-beta20190808-20`
`Install-Package BlazorPWA.MSBuild -Version 1.0.0`

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

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

## Configuration

Expand Down

0 comments on commit 9bb288b

Please sign in to comment.