Skip to content

Commit

Permalink
Update CommunityToolkit version (#429)
Browse files Browse the repository at this point in the history
Update App version
Fix linting warning.
  • Loading branch information
SteveMaier-IRT committed Aug 10, 2023
1 parent c8da377 commit 6f07394
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/electionguard-ui/Directory.Packages.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<ItemGroup>
<PackageVersion Include="CommunityToolkit.Maui" Version="5.2.0" />
<PackageVersion Include="CommunityToolkit.Maui" Version="5.3.0" />
<PackageVersion Include="CommunityToolkit.Mvvm" Version="8.2.1" />
<PackageVersion Include="MetroLog.Maui" Version="2.1.0" />
<PackageVersion Include="MetroLog.Net6" Version="2.1.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
namespace ElectionGuard.UI.Lib.Services;
public class ZipStorageService : IStorageService
{
private string _zipFile;
private string _zipFile = string.Empty;

private ZipArchiveMode ZipMode => File.Exists(_zipFile) ? ZipArchiveMode.Update : ZipArchiveMode.Create;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

<!-- Versions -->
<ApplicationDisplayVersion>1.91</ApplicationDisplayVersion>
<ApplicationVersion>3</ApplicationVersion>
<ApplicationVersion>6</ApplicationVersion>

<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">15.3</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.19041.0</SupportedOSPlatformVersion>
Expand Down

0 comments on commit 6f07394

Please sign in to comment.