File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ public Match(Match og)
19
19
{
20
20
Trigger = og . Trigger ;
21
21
Replace = og . Replace ;
22
- Vars = og . Vars ;
22
+ Vars = new ( og . Vars ) ;
23
23
//Word = og.Word;
24
24
}
25
25
public string Trigger { get ; set ; }
@@ -34,7 +34,7 @@ public Var(Var og)
34
34
{
35
35
Name = og . Name ;
36
36
Type = og . Type ;
37
- Params = og . Params ;
37
+ Params = new ( og . Params ) ;
38
38
}
39
39
public string Name { get ; set ; }
40
40
public string Type { get ; set ; } // echo, random, clipboard and date only supported
Original file line number Diff line number Diff line change 30
30
<SupportedOSPlatformVersion Condition =" $([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'" >6.5</SupportedOSPlatformVersion >
31
31
</PropertyGroup >
32
32
33
+ <PropertyGroup Condition =" '$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0-android|AnyCPU'" >
34
+ <AndroidPackageFormat >apk</AndroidPackageFormat >
35
+ <AndroidCreatePackagePerAbi >True</AndroidCreatePackagePerAbi >
36
+ </PropertyGroup >
37
+
38
+ <PropertyGroup Condition =" '$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0-android|AnyCPU'" >
39
+ <AndroidCreatePackagePerAbi >True</AndroidCreatePackagePerAbi >
40
+ </PropertyGroup >
41
+
33
42
<ItemGroup >
34
43
<!-- App Icon -->
35
44
<MauiIcon Include =" Resources\AppIcon\appicon.svg" BaseSize =" 512,512" />
58
67
<PackageReference Include =" MudBlazor" Version =" 6.11.0" />
59
68
<PackageReference Include =" YamlDotNet" Version =" 13.7.1" />
60
69
<PackageReference Include =" Microsoft.Maui.Controls" Version =" 8.0.3" />
61
- <PackageReference Include =" Microsoft.AspNetCore.Components.WebView.Maui" Version =" 8.0.3" />
70
+ <PackageReference Include =" Microsoft.AspNetCore.Components.WebView.Maui" Version =" 8.0.3" />
62
71
</ItemGroup >
63
72
64
73
<ItemGroup >
You can’t perform that action at this time.
0 commit comments