支持的 API 测试的认证测试错误
Certification test error on supported API test
我在 认证 测试中遇到错误,我似乎无法解决它。发现的错误是:
• This API is not supported for this application type -
Api=System.Security.Cryptography.Aes. Module=MSCORLIB.
File=System.Core.dll.
• This API is not supported for this application type -
Api=System.Security.Cryptography.ICryptoTransform. Module=MSCORLIB.
File=System.Core.dll.
• This API is not supported for this application type -
Api=System.Security.Cryptography.Aes.#ctor. Module=MSCORLIB.
File=System.Core.dll.
• This API is not supported for this application type -
Api=System.SystemException. Module=MSCORLIB. File=System.dll.
• This API is not supported for this application type -
Api=System.SystemException.#ctor. Module=MSCORLIB. File=System.dll.
• This API is not supported for this application type -
Api=System.SystemException. Module=MSCORLIB. File=System.Xml.dll.
• This API is not supported for this application type -
Api=System.SystemException.#ctor. Module=MSCORLIB.
File=System.Xml.dll.
mscorlib module
是 Windows Phone 8.1 framework
的一部分。该项目适用于 Windows Phone 8.1 RT
,一款通用应用程序。
我试图解决这个问题的方法是启动一个新项目来刷新引用,但它没有做任何事情。我试过添加和删除库,但它没有做任何事情。我试过删除程序集,但我似乎做不到。
如何解决此错误?
Windows/Windows Phone RT 项目仅支持 .net API 的子集。您可以从 this MSDN article.
获得完整的支持列表
程序集是必需的,请勿尝试移动它。但是对于Windows/Windows Phone RT项目,System.Security.Cryptography.Aes不支持此项目类型。
我想您可能会尝试从 silverlight 应用程序迁移到运行时应用程序。因为 Silverlight 应用程序支持 System.Security.Cryptography.Aes。 This MSDN article 适用于 Windows Phone silverlight 应用程序的可用 .net API。
所以请找出你在哪里使用它并删除它。然后尝试使用 class CryptographicEngine in namespace Windows.Security.Cryptography.Core in the Windows API subset.
实现功能
我在 认证 测试中遇到错误,我似乎无法解决它。发现的错误是:
• This API is not supported for this application type - Api=System.Security.Cryptography.Aes. Module=MSCORLIB. File=System.Core.dll.
• This API is not supported for this application type - Api=System.Security.Cryptography.ICryptoTransform. Module=MSCORLIB. File=System.Core.dll.
• This API is not supported for this application type - Api=System.Security.Cryptography.Aes.#ctor. Module=MSCORLIB. File=System.Core.dll.
• This API is not supported for this application type - Api=System.SystemException. Module=MSCORLIB. File=System.dll.
• This API is not supported for this application type - Api=System.SystemException.#ctor. Module=MSCORLIB. File=System.dll.
• This API is not supported for this application type - Api=System.SystemException. Module=MSCORLIB. File=System.Xml.dll.
• This API is not supported for this application type - Api=System.SystemException.#ctor. Module=MSCORLIB. File=System.Xml.dll.
mscorlib module
是 Windows Phone 8.1 framework
的一部分。该项目适用于 Windows Phone 8.1 RT
,一款通用应用程序。
我试图解决这个问题的方法是启动一个新项目来刷新引用,但它没有做任何事情。我试过添加和删除库,但它没有做任何事情。我试过删除程序集,但我似乎做不到。
如何解决此错误?
Windows/Windows Phone RT 项目仅支持 .net API 的子集。您可以从 this MSDN article.
获得完整的支持列表程序集是必需的,请勿尝试移动它。但是对于Windows/Windows Phone RT项目,System.Security.Cryptography.Aes不支持此项目类型。
我想您可能会尝试从 silverlight 应用程序迁移到运行时应用程序。因为 Silverlight 应用程序支持 System.Security.Cryptography.Aes。 This MSDN article 适用于 Windows Phone silverlight 应用程序的可用 .net API。
所以请找出你在哪里使用它并删除它。然后尝试使用 class CryptographicEngine in namespace Windows.Security.Cryptography.Core in the Windows API subset.
实现功能