瀏覽代碼

Fix build when targeting .NET Framework 3.5 as Func only supports covariance on .NET Framework 4.0 and higher.

Gert Driesen 11 年之前
父節點
當前提交
117e079011
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Renci.SshClient/Renci.SshNet.Tests/Classes/CipherInfoTest.cs

+ 1 - 1
Renci.SshClient/Renci.SshNet.Tests/Classes/CipherInfoTest.cs

@@ -18,7 +18,7 @@ namespace Renci.SshNet.Tests.Classes
         public void CipherInfoConstructorTest()
         {
             int keySize = 0; // TODO: Initialize to an appropriate value
-            Func<byte[], byte[], BlockCipher> cipher = null; // TODO: Initialize to an appropriate value
+            Func<byte[], byte[], Cipher> cipher = null; // TODO: Initialize to an appropriate value
             CipherInfo target = new CipherInfo(keySize, cipher);
             Assert.Inconclusive("TODO: Implement code to verify target");
         }