Иисус, Кришна, Будда!
Я перешел на EntLib 5.0, но такие классы, как ISymmetricCryptoProvider
, больше не распознаются. Забавно сказать, что Data, Logging и другие блоки работают нормально.
Вот проблемный класс:
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.Practices.EnterpriseLibrary.Common.Configuration;//-->it's not working anymore
using Microsoft.Practices.EnterpriseLibrary.Security.Cryptography;//-->it's not working anymore
namespace MyClassLibrary.Security.EnterpriseLibrary
{
public sealed class Crypto
{
public static ISymmetricCryptoProvider MyProvider
{
get
{
//IConfigurationSource is not recognized either, neither SystemConfigurationSource
IConfigurationSource cs = new SystemConfigurationSource();
SymmetricCryptoProviderFactory scpf = new SymmetricCryptoProviderFactory(cs);
ISymmetricCryptoProvider p = scpf.CreateDefault();
return p;
}
}
Ссылки на проект тоже хороши. Я действительно не знаю, почему этот конкретный проект вызывает слишком много проблем на VS2010! Старые ссылки были удалены, проект был очищен, перестроен, но не может его скомпилировать: - (
Ссылки:
Microsoft.Practices.EnterpriseLibrary.Common
Microsoft.Practices.EnterpriseLibrary.Logging
Microsoft.Practices.EnterpriseLibrary.Logging.Database
Microsoft.Practices.EnterpriseLibrary.Security
Microsoft.Practices.EnterpriseLibrary.Security.Cryptography
Почему некоторые пространства имен можно найти, а другие нет?