Update dependencies (#16)

* Update dependencies
Implement AsyncLazy
Fix namespaces
Fix CD pipeline

* Fix code issues
Fix Int64BitStruct test
This commit is contained in:
2022-06-02 10:42:34 +02:00
committed by GitHub
parent 41b1b48f98
commit 7222528eed
25 changed files with 155 additions and 107 deletions
@@ -12,13 +12,13 @@ namespace System.Collections.Tests
[TestMethod()]
public void SkipListTest()
{
var skipList = new SkipList<int>();
_ = new SkipList<int>();
}
[TestMethod()]
public void SkipListTest2()
{
var skipList = new SkipList<int>(30);
_ = new SkipList<int>(30);
}
[TestMethod()]
@@ -132,7 +132,6 @@ namespace System.Collections.Tests
skipList.Add(i);
}
var serializer = new BinaryFormatter();
var s = string.Empty;
using (var stream = new MemoryStream())
{
serializer.Serialize(stream, skipList);