Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<ItemGroup>
<PackageReference Include="Acr.UserDialogs" Version="7.0.1" />
<PackageReference Include="ReactiveUI.XamForms" Version="*" />
<PackageReference Include="Xamarin.Forms" Version="3.3.*" />
<PackageReference Include="Xamarin.Forms" Version="3.4.*" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/EventBuilder/Platforms/Essentials.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class Essentials : BasePlatform
public override AutoPlatform Platform => AutoPlatform.Essentials;

/// <inheritdoc />
public async override Task Extract()
public override async Task Extract()
{
var packageUnzipPath = await NuGetPackageHelper.InstallPackages(_packageNames, Platform).ConfigureAwait(false);

Expand Down
2 changes: 1 addition & 1 deletion src/EventBuilder/Platforms/Tizen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class Tizen : BasePlatform
public override AutoPlatform Platform => AutoPlatform.Tizen4;

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

Expand Down
4 changes: 2 additions & 2 deletions src/EventBuilder/Platforms/XamForms.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ public class XamForms : BasePlatform
{
private readonly PackageIdentity[] _packageNames = new[]
{
new PackageIdentity("Xamarin.Forms", new NuGetVersion("3.3.0.967583")),
new PackageIdentity("Xamarin.Forms", new NuGetVersion("3.4.0.1029999")),
};

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

/// <inheritdoc />
public async override Task Extract()
public override async Task Extract()
{
var packageUnzipPath = await NuGetPackageHelper.InstallPackages(_packageNames, Platform).ConfigureAwait(false);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Xamarin.Forms" Version="3.3.*" />
<PackageReference Include="Xamarin.Forms" Version="3.4.*" />
<Compile Include="Events_XAMFORMS.cs" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion src/ReactiveUI.XamForms/ReactiveUI.XamForms.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Xamarin.Forms" Version="3.3.*" />
<PackageReference Include="Xamarin.Forms" Version="3.4.*" />
</ItemGroup>

<ItemGroup>
Expand Down