Update Lib to version 2.44

Update nuget packages
This commit is contained in:
Geoffroy BONNEVILLE
2020-03-16 15:28:05 +01:00
parent 3a85b60e58
commit b8240d482f
108 changed files with 1102 additions and 595 deletions

View File

@@ -1,6 +1,6 @@
/*
KeePass Password Safe - The Open-Source Password Manager
Copyright (C) 2003-2019 Dominik Reichl <dominik.reichl@t-online.de>
Copyright (C) 2003-2020 Dominik Reichl <dominik.reichl@t-online.de>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -73,7 +73,7 @@ namespace ModernKeePassLib
get { return m_uuid; }
set
{
Debug.Assert(value != null); if(value == null) throw new ArgumentNullException("value");
if(value == null) { Debug.Assert(false); throw new ArgumentNullException("value"); }
m_uuid = value;
}
}
@@ -106,7 +106,7 @@ namespace ModernKeePassLib
get { return m_listStrings; }
set
{
Debug.Assert(value != null); if(value == null) throw new ArgumentNullException("value");
if(value == null) { Debug.Assert(false); throw new ArgumentNullException("value"); }
m_listStrings = value;
}
}
@@ -119,7 +119,7 @@ namespace ModernKeePassLib
get { return m_listBinaries; }
set
{
Debug.Assert(value != null); if(value == null) throw new ArgumentNullException("value");
if(value == null) { Debug.Assert(false); throw new ArgumentNullException("value"); }
m_listBinaries = value;
}
}
@@ -132,7 +132,7 @@ namespace ModernKeePassLib
get { return m_listAutoType; }
set
{
Debug.Assert(value != null); if(value == null) throw new ArgumentNullException("value");
if(value == null) { Debug.Assert(false); throw new ArgumentNullException("value"); }
m_listAutoType = value;
}
}
@@ -145,7 +145,7 @@ namespace ModernKeePassLib
get { return m_listHistory; }
set
{
Debug.Assert(value != null); if(value == null) throw new ArgumentNullException("value");
if(value == null) { Debug.Assert(false); throw new ArgumentNullException("value"); }
m_listHistory = value;
}
}
@@ -169,7 +169,7 @@ namespace ModernKeePassLib
get { return m_pwCustomIconID; }
set
{
Debug.Assert(value != null); if(value == null) throw new ArgumentNullException("value");
if(value == null) { Debug.Assert(false); throw new ArgumentNullException("value"); }
m_pwCustomIconID = value;
}
}
@@ -256,7 +256,7 @@ namespace ModernKeePassLib
get { return m_strOverrideUrl; }
set
{
if(value == null) throw new ArgumentNullException("value");
if(value == null) { Debug.Assert(false); throw new ArgumentNullException("value"); }
m_strOverrideUrl = value;
}
}
@@ -269,7 +269,7 @@ namespace ModernKeePassLib
get { return m_vTags; }
set
{
if(value == null) throw new ArgumentNullException("value");
if(value == null) { Debug.Assert(false); throw new ArgumentNullException("value"); }
m_vTags = value;
}
}