Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/csharp/290.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# Windows 10通用应用程序中的AWS SDK_C#_Amazon Web Services_Amazon S3_Windows 10 - Fatal编程技术网

C# Windows 10通用应用程序中的AWS SDK

C# Windows 10通用应用程序中的AWS SDK,c#,amazon-web-services,amazon-s3,windows-10,C#,Amazon Web Services,Amazon S3,Windows 10,我试图在正在开发的Windows 10通用应用程序中使用AWS SDK,在尝试导入“AWSSDK.Core.dll”和“AWSSDK.S3.dll”以使用S3功能时,我收到以下错误: A reference to '..\AWSSDK.Core.dll' could not be added. The project targets '.NETCore' while the file reference targets '.NETFramework'. This is not a support

我试图在正在开发的Windows 10通用应用程序中使用AWS SDK,在尝试导入“AWSSDK.Core.dll”和“AWSSDK.S3.dll”以使用S3功能时,我收到以下错误:

A reference to '..\AWSSDK.Core.dll' could not be added. The project targets
'.NETCore' while the file reference targets '.NETFramework'. This is not a
supported scenario. 

为了使用SDK,我需要做些什么呢?或者说,现在它们是不兼容的?

这是可能的,但可用的资源有点误导。在AWS博客上找到的结果表明,MSI安装程序中提供了该功能,但事实上,截至本文,情况并非如此。我能够访问AWSSDK服务的唯一方法是通过VisualStudioNuget控制台安装AWSSDK。VS2015 Professional中的控制台位于工具菜单中。命令很简单:

Install-Package AWSSDK

查看这篇博文:@CoryCharlton嘿,Cory,在发布我的问题之前,我无意中发现了你的链接,这就是为什么我这么问,因为这似乎是可能的。解决方案似乎只是通过NuGet安装AWSSDK。我刚刚在安装文件夹中找到一个解释/自述文件,其中指定了此项。一旦计时器允许,我会发布我的答案。