Skip to content

Commit

Permalink
Set required plgx DotNetVersion to 4.0. Removed .NET Framework 4.5 ty…
Browse files Browse the repository at this point in the history
…pes. (#125)

Fixes #99 
Fixes #124
  • Loading branch information
dannoe committed Apr 18, 2020
1 parent 239b1ee commit 65d3ea7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion KeeTrayTOTP/KeeTrayTOTP.csproj
Expand Up @@ -9,7 +9,7 @@
<PlgxConfiguration>
<Prerequisites>
<KeePassVersion>2.31</KeePassVersion>
<DotNetVersion>3.5</DotNetVersion>
<DotNetVersion>4.0</DotNetVersion>
</Prerequisites>
</PlgxConfiguration>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion KeeTrayTOTP/TrayTOTP_Plugin.cs
Expand Up @@ -70,7 +70,7 @@ public sealed class KeeTrayTOTPExt : Plugin
/// </summary>
internal const int setstat_int_EntryList_RefreshRate = 300;
internal const int setstat_trim_text_length = 25;
internal IReadOnlyList<string> setstat_allowed_lengths = new ReadOnlyCollection<string>(new[] { "6", "7", "8", "S" });
internal readonly ReadOnlyCollection<string> setstat_allowed_lengths = new ReadOnlyCollection<string>(new[] { "6", "7", "8", "S" });

/// <summary>
/// Form Help Global Reference.
Expand Down

0 comments on commit 65d3ea7

Please sign in to comment.