Skip to content

Commit

Permalink
fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
lochidev committed Nov 16, 2023
1 parent e2b0e9c commit fa5d0c3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
4 changes: 2 additions & 2 deletions MauiApp1/Models/DictWrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public Match(Match og)
{
Trigger = og.Trigger;
Replace = og.Replace;
Vars = og.Vars;
Vars = new (og.Vars);
//Word = og.Word;
}
public string Trigger { get; set; }
Expand All @@ -34,7 +34,7 @@ public Var(Var og)
{
Name = og.Name;
Type = og.Type;
Params = og.Params;
Params = new(og.Params);
}
public string Name { get; set; }
public string Type { get; set; } // echo, random, clipboard and date only supported
Expand Down
11 changes: 10 additions & 1 deletion MauiApp1/TextComparePro.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,15 @@
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0-android|AnyCPU'">
<AndroidPackageFormat>apk</AndroidPackageFormat>
<AndroidCreatePackagePerAbi>True</AndroidCreatePackagePerAbi>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0-android|AnyCPU'">
<AndroidCreatePackagePerAbi>True</AndroidCreatePackagePerAbi>
</PropertyGroup>

<ItemGroup>
<!-- App Icon -->
<MauiIcon Include="Resources\AppIcon\appicon.svg" BaseSize="512,512" />
Expand Down Expand Up @@ -58,7 +67,7 @@
<PackageReference Include="MudBlazor" Version="6.11.0" />
<PackageReference Include="YamlDotNet" Version="13.7.1" />
<PackageReference Include="Microsoft.Maui.Controls" Version="8.0.3" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebView.Maui" Version="8.0.3"/>
<PackageReference Include="Microsoft.AspNetCore.Components.WebView.Maui" Version="8.0.3" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit fa5d0c3

Please sign in to comment.