Skip to content

Commit

Permalink
prepare 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
isc30 committed Jun 2, 2020
1 parent d430465 commit 5fde21c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/Components.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ There are multiple ways of using resources from modules, but the simplest one is
It should be installed in every library that wants to consume decoupled resources:

```xml
<PackageReference Include="BlazorLazyLoading.Components" Version="1.2.0" />
<PackageReference Include="BlazorLazyLoading.Components" Version="1.3.0" />
```

This section will cover the different components available and their usage.
2 changes: 1 addition & 1 deletion docs/Configuring-Lazy-Loading-@-Server.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ The following nuget package includes everything you need to support lazy loading
It can be installed by adding the following line inside the host csproj:

```xml
<PackageReference Include="BlazorLazyLoading.Server" Version="1.2.0" PrivateAssets="all" />
<PackageReference Include="BlazorLazyLoading.Server" Version="1.3.0" PrivateAssets="all" />
```

It will also require to be initialized from **Startup.cs** by adding the following lines:<br/>
Expand Down
2 changes: 1 addition & 1 deletion docs/Configuring-Lazy-Loading-@-WebAssembly.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ The following nuget package includes everything you need to support lazy loading
It can be installed by adding the following line inside the host csproj:

```xml
<PackageReference Include="BlazorLazyLoading.Wasm" Version="1.2.0" PrivateAssets="all" />
<PackageReference Include="BlazorLazyLoading.Wasm" Version="1.3.0" PrivateAssets="all" />
```

It will also require to be initialized from **Program.cs** by adding the following lines:<br/>
Expand Down
4 changes: 2 additions & 2 deletions docs/Creating-a-Lazy-Loadable-Module.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ In order to covert your csproj to a lazy loadable module, it will require:

After checking that, just add:
```xml
<PackageReference Include="BlazorLazyLoading.Module" Version="1.2.0" PrivateAssets="all" />
<PackageReference Include="BlazorLazyLoading.Module" Version="1.3.0" PrivateAssets="all" />
```

and... **done!** This project is now a module and can be lazy loaded 😄
Expand Down Expand Up @@ -44,7 +44,7 @@ Steps:

1. Create a new Module project **without any content or dependencies** (*I personally recommend `ModulesHost` as for the name*) and add a reference to **BlazorLazyLoading.Module**:
```xml
<PackageReference Include="BlazorLazyLoading.Module" Version="1.2.0" PrivateAssets="all" />
<PackageReference Include="BlazorLazyLoading.Module" Version="1.3.0" PrivateAssets="all" />
```

1. Reference all the RazorLib projects that you want to lazy load by using `ProjectReference` or `PackageReference`. For example:
Expand Down

0 comments on commit 5fde21c

Please sign in to comment.