Skip to content
This repository was archived by the owner on Dec 17, 2021. It is now read-only.

Commit ec3d6e4

Browse files
authored
Merge pull request #213 from Daddoon/dev
Dev
2 parents 4efa1cd + b4295b5 commit ec3d6e4

File tree

19 files changed

+66
-28
lines changed

19 files changed

+66
-28
lines changed

MIGRATION.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11

22
# Migration
33

4+
- [BlazorMobile 3.2.7-preview4.20210.8 to 3.2.8](#blazormobile-327-preview4202108-to-328)
45
- [BlazorMobile 3.2.5-preview3.20168.3 to 3.2.7-preview4.20210.8](#blazormobile-325-preview3201683-to-327-preview4202108)
56
- [BlazorMobile 3.2.4-preview2.20160.5 to 3.2.5-preview3.20168.3](#blazormobile-324-preview2201605-to-325-preview3201683)
67
- [BlazorMobile 3.2.3-preview2.20160.5 to 3.2.4-preview2.20160.5](#blazormobile-323-preview2201605-to-324-preview2201605)
@@ -1435,4 +1436,26 @@ dotnet new -i BlazorMobile.Templates::3.2.7-preview4.20210.8
14351436
<script type="text/javascript" src="_framework/blazor.webassembly.js"></script>
14361437
</body>
14371438
</html>
1438-
```
1439+
```
1440+
1441+
### BlazorMobile 3.2.7-preview4.20210.8 to 3.2.8
1442+
1443+
#### Release notes:
1444+
1445+
- Fix **Could not load file or assembly 'BlazorMobile.Common, Version=3.2.7.0, Culture=neutral, PublicKeyToken=null'. The located assembly's manifest definition does not match the assembly reference. (0x80131040)'** error on .NET Core / Server's project at startup.
1446+
- Updated Blazor version to **3.2.0**
1447+
1448+
#### Migration guide:
1449+
1450+
- Update your Blazor project version to Blazor 3.2.0 by follow theses guides, if you upgrade from 3.2.4-preview4:
1451+
- [Blazor 3.2.0-preview5](https://devblogs.microsoft.com/aspnet/blazor-webassembly-3-2-0-preview-5-release-now-available/)
1452+
- [Blazor 3.2.0-RC](https://devblogs.microsoft.com/aspnet/blazor-webassembly-3-2-0-release-candidate-now-available/)
1453+
- [Blazor 3.2.0](https://devblogs.microsoft.com/aspnet/blazor-webassembly-3-2-0-now-available/)
1454+
1455+
- Update your installed BlazorMobile.Templates to this version by calling:
1456+
1457+
```console
1458+
dotnet new -i BlazorMobile.Templates::3.2.8
1459+
```
1460+
1461+
- Update all your BlazorMobile.* NuGet packages to **3.2.8**.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Create full C# driven hybrid-apps for iOS, Android, UWP & Desktop with Blazor!
77
## Framework requirement
88

99

10-
- **Blazor 3.2.0-preview4.20210.8**
10+
- **Blazor 3.2.0**
1111
- **.NET Core 3.1**
1212

1313
## Platform requirements
@@ -84,7 +84,7 @@ The main differences / advantages of BlazorMobile are:
8484
First install the template model with the following command from a command prompt:
8585

8686
```console
87-
dotnet new -i BlazorMobile.Templates::3.2.7-preview4.20210.8
87+
dotnet new -i BlazorMobile.Templates::3.2.8
8888
```
8989

9090
Then go the folder where you want your project to be created, and from a command prompt type the following command, and of course replace **MyProjectName** to your desired project name:

src/BlazorMobile.Build/BlazorMobile.Build.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<copyright>Copyright 2020</copyright>
1616
<tags>Blazor BlazorMobile Xamarin iOS Android Hybrid</tags>
1717
<dependencies>
18-
<dependency id="Microsoft.AspNetCore.Components.WebAssembly.Build" version="3.2.0-preview3.20168.3" include="all" />
18+
<dependency id="Microsoft.AspNetCore.Components.WebAssembly.Build" version="3.2.0" include="all" />
1919
</dependencies>
2020
</metadata>
2121
<files>

src/BlazorMobile.Common/BlazorMobile.Common.csproj

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<RootNamespace>BlazorMobile.Common</RootNamespace>
66
<AssemblyName>BlazorMobile.Common</AssemblyName>
7+
<Authors>Guillaume ZAHRA</Authors>
8+
<Company>Daddoon</Company>
9+
<Copyright>Copyright 2020</Copyright>
10+
<PackageProjectUrl>https://github.com/Daddoon/BlazorMobile</PackageProjectUrl>
11+
<PackageIcon>logo_blazormobile_256x256.png</PackageIcon>
12+
<PackageReleaseNotes>See release notes on BlazorMobile project page</PackageReleaseNotes>
13+
<PackageTags>aspnet templates blazor spa web webassembly xamarin android ios uwp</PackageTags>
14+
<Description>This package is used by BlazorMobile, BlazorMobile.Web &amp; BlazorMobile.ElectronNET. You don't have to reference it directly.</Description>
715
</PropertyGroup>
816

917
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
@@ -44,4 +52,11 @@
4452
<Folder Include="Interop\Javascript\" />
4553
</ItemGroup>
4654

55+
<ItemGroup>
56+
<None Include="..\..\logo_blazormobile_256x256.png">
57+
<Pack>True</Pack>
58+
<PackagePath></PackagePath>
59+
</None>
60+
</ItemGroup>
61+
4762
</Project>

src/BlazorMobile.InteropApp.Android/BlazorMobile.InteropApp.Android.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
</ItemGroup>
6060
<ItemGroup>
6161
<PackageReference Include="BlazorMobile.Build.Android">
62-
<Version>3.2.7-preview4.20210.8</Version>
62+
<Version>3.2.8</Version>
6363
</PackageReference>
6464
<PackageReference Include="Microsoft.AspNetCore.Blazor">
6565
<Version>3.2.0-preview1.20073.1</Version>

src/BlazorMobile.InteropApp.Desktop/BlazorMobile.InteropApp.Desktop.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<None Remove="wwwroot\**" />
1111
</ItemGroup>
1212
<ItemGroup>
13-
<PackageReference Include="BlazorMobile.Build.ElectronNET" Version="3.2.7-preview4.20210.8" />
13+
<PackageReference Include="BlazorMobile.Build.ElectronNET" Version="3.2.8" />
1414
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="3.2.0-preview4.20210.8" />
1515
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.2" />
1616
<PackageReference Include="Microsoft.TypeScript.MSBuild" Version="3.7.4">

src/BlazorMobile.InteropBlazorApp.AnotherApp/BlazorMobile.InteropBlazorApp.AnotherApp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
</ItemGroup>
1515

1616
<ItemGroup>
17-
<PackageReference Include="BlazorMobile.Build" Version="3.2.7-preview4.20210.8" />
17+
<PackageReference Include="BlazorMobile.Build" Version="3.2.8" />
1818
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="3.2.0-preview4.20210.8" />
1919
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Build" Version="3.2.0-preview4.20210.8" PrivateAssets="all" />
2020
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="3.2.0-preview4.20210.8" PrivateAssets="all" />

src/BlazorMobile.InteropBlazorApp/BlazorMobile.InteropBlazorApp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
</ItemGroup>
2222

2323
<ItemGroup>
24-
<PackageReference Include="BlazorMobile.Build" Version="3.2.7-preview4.20210.8" />
24+
<PackageReference Include="BlazorMobile.Build" Version="3.2.8" />
2525
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="3.2.0-preview4.20210.8" />
2626
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Build" Version="3.2.0-preview4.20210.8" PrivateAssets="all" />
2727
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="3.2.0-preview4.20210.8" PrivateAssets="all" />

src/BlazorMobile.NuGet/BlazorMobile.NuGet.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</ItemGroup>
1212

1313
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
14-
<Exec Command="set nugetVersion=3.2.7-preview4.20210.8&#xD;&#xA;echo NuGet artifact version is: %25nugetVersion%25&#xD;&#xA;&#xD;&#xA;nuget pack .\..\BlazorMobile\BlazorMobile.nuspec -Version &quot;%25nugetVersion%25&quot; -OutputDirectory .\artifacts&#xD;&#xA;nuget pack .\..\BlazorMobile\BlazorMobile.Common.nuspec -Version &quot;%25nugetVersion%25&quot; -OutputDirectory .\artifacts&#xD;&#xA;&#xD;&#xA;dotnet pack .\..\BlazorMobile.Web\BlazorMobile.Web.csproj -c $(ConfigurationName) /p:Version=%25nugetVersion%25 -o .\artifacts&#xD;&#xA;&#xD;&#xA;nuget pack .\..\BlazorMobile\BlazorMobile.ElectronNET.nuspec -Version &quot;%25nugetVersion%25&quot; -OutputDirectory .\artifacts&#xD;&#xA;nuget pack .\..\BlazorMobile.Build\BlazorMobile.Build.nuspec -Version &quot;%25nugetVersion%25&quot; -OutputDirectory .\artifacts&#xD;&#xA;nuget pack .\..\BlazorMobile.Build.ElectronNET\BlazorMobile.Build.ElectronNET.nuspec -Version &quot;%25nugetVersion%25&quot; -OutputDirectory .\artifacts&#xD;&#xA;nuget pack .\..\BlazorMobile.Build.Android\BlazorMobile.Build.Android.nuspec -Version &quot;%25nugetVersion%25&quot; -OutputDirectory .\artifacts&#xD;&#xA;&#xD;&#xA;cd .\..\BlazorMobile.Templates\content&#xD;&#xA;&#xD;&#xA;FOR /d /r . %25%25d IN (bin) DO @IF EXIST &quot;%25%25d&quot; rd /s /q &quot;%25%25d&quot;&#xD;&#xA;FOR /d /r . %25%25d IN (_bin) DO @IF EXIST &quot;%25%25d&quot; rd /s /q &quot;%25%25d&quot;&#xD;&#xA;FOR /d /r . %25%25d IN (obj) DO @IF EXIST &quot;%25%25d&quot; rd /s /q &quot;%25%25d&quot;&#xD;&#xA;&#xD;&#xA;cd .\..\..\BlazorMobile.NuGet&#xD;&#xA;&#xD;&#xA;nuget pack .\..\BlazorMobile.Templates\BlazorMobile.Templates.nuspec -Version &quot;%25nugetVersion%25&quot; -OutputDirectory .\artifacts" />
14+
<Exec Command="set nugetVersion=3.2.8&#xD;&#xA;echo NuGet artifact version is: %25nugetVersion%25&#xD;&#xA;&#xD;&#xA;nuget pack .\..\BlazorMobile\BlazorMobile.nuspec -Version &quot;%25nugetVersion%25&quot; -OutputDirectory .\artifacts&#xD;&#xA;dotnet pack .\..\BlazorMobile.Common\BlazorMobile.Common.csproj -c $(ConfigurationName) /p:Version=%25nugetVersion%25 -o .\artifacts&#xD;&#xA;dotnet pack .\..\BlazorMobile.Web\BlazorMobile.Web.csproj -c $(ConfigurationName) /p:Version=%25nugetVersion%25 -o .\artifacts&#xD;&#xA;&#xD;&#xA;nuget pack .\..\BlazorMobile\BlazorMobile.ElectronNET.nuspec -Version &quot;%25nugetVersion%25&quot; -OutputDirectory .\artifacts&#xD;&#xA;nuget pack .\..\BlazorMobile.Build\BlazorMobile.Build.nuspec -Version &quot;%25nugetVersion%25&quot; -OutputDirectory .\artifacts&#xD;&#xA;nuget pack .\..\BlazorMobile.Build.ElectronNET\BlazorMobile.Build.ElectronNET.nuspec -Version &quot;%25nugetVersion%25&quot; -OutputDirectory .\artifacts&#xD;&#xA;nuget pack .\..\BlazorMobile.Build.Android\BlazorMobile.Build.Android.nuspec -Version &quot;%25nugetVersion%25&quot; -OutputDirectory .\artifacts&#xD;&#xA;&#xD;&#xA;cd .\..\BlazorMobile.Templates\content&#xD;&#xA;&#xD;&#xA;FOR /d /r . %25%25d IN (bin) DO @IF EXIST &quot;%25%25d&quot; rd /s /q &quot;%25%25d&quot;&#xD;&#xA;FOR /d /r . %25%25d IN (_bin) DO @IF EXIST &quot;%25%25d&quot; rd /s /q &quot;%25%25d&quot;&#xD;&#xA;FOR /d /r . %25%25d IN (obj) DO @IF EXIST &quot;%25%25d&quot; rd /s /q &quot;%25%25d&quot;&#xD;&#xA;&#xD;&#xA;cd .\..\..\BlazorMobile.NuGet&#xD;&#xA;&#xD;&#xA;nuget pack .\..\BlazorMobile.Templates\BlazorMobile.Templates.nuspec -Version &quot;%25nugetVersion%25&quot; -OutputDirectory .\artifacts" />
1515
</Target>
1616

1717
</Project>

src/BlazorMobile.Templates/content/BlazorMobile.Sample/BlazorMobile.Sample.Android/BlazorMobile.Sample.Android.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@
5959
</ItemGroup>
6060
<ItemGroup>
6161
<PackageReference Include="BlazorMobile">
62-
<Version>3.2.7-preview4.20210.8</Version>
62+
<Version>3.2.8</Version>
6363
</PackageReference>
6464
<PackageReference Include="BlazorMobile.Build.Android">
65-
<Version>3.2.7-preview4.20210.8</Version>
65+
<Version>3.2.8</Version>
6666
</PackageReference>
6767
<PackageReference Include="Xamarin.Android.Support.CustomTabs">
6868
<Version>28.0.0.3</Version>

0 commit comments

Comments
 (0)