Skip to content

Commit f1ad8a0

Browse files
RLittlesIIglennawatson
authored andcommitted
(housekeeping) Upgraded Xamarin.Forms to v3.4 (#1942)
* (housekeeping) Upgraded Xamarin.Forms to v3.4
1 parent 1e3b303 commit f1ad8a0

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

integrationtests/IntegrationTests.XamarinForms/IntegrationTests.XamarinForms.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<ItemGroup>
88
<PackageReference Include="Acr.UserDialogs" Version="7.0.1" />
99
<PackageReference Include="ReactiveUI.XamForms" Version="*" />
10-
<PackageReference Include="Xamarin.Forms" Version="3.3.*" />
10+
<PackageReference Include="Xamarin.Forms" Version="3.4.*" />
1111
</ItemGroup>
1212

1313
<ItemGroup>

src/EventBuilder/Platforms/Essentials.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public class Essentials : BasePlatform
2929
public override AutoPlatform Platform => AutoPlatform.Essentials;
3030

3131
/// <inheritdoc />
32-
public async override Task Extract()
32+
public override async Task Extract()
3333
{
3434
var packageUnzipPath = await NuGetPackageHelper.InstallPackages(_packageNames, Platform).ConfigureAwait(false);
3535

src/EventBuilder/Platforms/Tizen.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public class Tizen : BasePlatform
2929
public override AutoPlatform Platform => AutoPlatform.Tizen4;
3030

3131
/// <inheritdoc />
32-
public async override Task Extract()
32+
public override async Task Extract()
3333
{
3434
var packageUnzipPath = await NuGetPackageHelper.InstallPackages(_packageNames, Platform, FrameworkConstants.CommonFrameworks.Tizen4).ConfigureAwait(false);
3535

src/EventBuilder/Platforms/XamForms.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ public class XamForms : BasePlatform
2121
{
2222
private readonly PackageIdentity[] _packageNames = new[]
2323
{
24-
new PackageIdentity("Xamarin.Forms", new NuGetVersion("3.3.0.967583")),
24+
new PackageIdentity("Xamarin.Forms", new NuGetVersion("3.4.0.1029999")),
2525
};
2626

2727
/// <inheritdoc />
2828
public override AutoPlatform Platform => AutoPlatform.XamForms;
2929

3030
/// <inheritdoc />
31-
public async override Task Extract()
31+
public override async Task Extract()
3232
{
3333
var packageUnzipPath = await NuGetPackageHelper.InstallPackages(_packageNames, Platform).ConfigureAwait(false);
3434

src/ReactiveUI.Events.XamForms/ReactiveUI.Events.XamForms.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
</ItemGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="Xamarin.Forms" Version="3.3.*" />
19+
<PackageReference Include="Xamarin.Forms" Version="3.4.*" />
2020
<Compile Include="Events_XAMFORMS.cs" />
2121
</ItemGroup>
2222
</Project>

src/ReactiveUI.XamForms/ReactiveUI.XamForms.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Xamarin.Forms" Version="3.3.*" />
9+
<PackageReference Include="Xamarin.Forms" Version="3.4.*" />
1010
</ItemGroup>
1111

1212
<ItemGroup>

0 commit comments

Comments
 (0)