Skip to content

Commit 5fde21c

Browse files
committed
prepare 1.3.0
1 parent d430465 commit 5fde21c

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/Components.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ There are multiple ways of using resources from modules, but the simplest one is
33
It should be installed in every library that wants to consume decoupled resources:
44

55
```xml
6-
<PackageReference Include="BlazorLazyLoading.Components" Version="1.2.0" />
6+
<PackageReference Include="BlazorLazyLoading.Components" Version="1.3.0" />
77
```
88

99
This section will cover the different components available and their usage.

docs/[email protected]

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ The following nuget package includes everything you need to support lazy loading
33
It can be installed by adding the following line inside the host csproj:
44

55
```xml
6-
<PackageReference Include="BlazorLazyLoading.Server" Version="1.2.0" PrivateAssets="all" />
6+
<PackageReference Include="BlazorLazyLoading.Server" Version="1.3.0" PrivateAssets="all" />
77
```
88

99
It will also require to be initialized from **Startup.cs** by adding the following lines:<br/>

docs/[email protected]

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ The following nuget package includes everything you need to support lazy loading
33
It can be installed by adding the following line inside the host csproj:
44

55
```xml
6-
<PackageReference Include="BlazorLazyLoading.Wasm" Version="1.2.0" PrivateAssets="all" />
6+
<PackageReference Include="BlazorLazyLoading.Wasm" Version="1.3.0" PrivateAssets="all" />
77
```
88

99
It will also require to be initialized from **Program.cs** by adding the following lines:<br/>

docs/Creating-a-Lazy-Loadable-Module.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ In order to covert your csproj to a lazy loadable module, it will require:
66

77
After checking that, just add:
88
```xml
9-
<PackageReference Include="BlazorLazyLoading.Module" Version="1.2.0" PrivateAssets="all" />
9+
<PackageReference Include="BlazorLazyLoading.Module" Version="1.3.0" PrivateAssets="all" />
1010
```
1111

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

4545
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**:
4646
```xml
47-
<PackageReference Include="BlazorLazyLoading.Module" Version="1.2.0" PrivateAssets="all" />
47+
<PackageReference Include="BlazorLazyLoading.Module" Version="1.3.0" PrivateAssets="all" />
4848
```
4949

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

0 commit comments

Comments
 (0)