- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有 4 个 PCL,它们都针对相同的框架:
阿姨点:
AuntieDot.Authentication:
AuntieDot.Core:
AuntieDot.Models:
但出于某种原因,“AuntieDot.Authentication”命名空间中“AuntieDot.Core.Helpers”的使用(尽管“AuntieDot.Core”被添加为对“AuntieDot.Authentication”的引用,它说它没有'不存在。我用谷歌搜索了一下,得到的唯一答复是我需要确保其他库针对的是相同的框架,它们确实是。
我使用的唯一外部代码是 JSON.net,它是我通过 NuGet 添加的,所以我认为这不是问题所在。
“AuntieDot.Core”中的代码;
抛出问题的代码只是在错误列表和编译时提示,它没有像往常一样的红色下划线:
我只是觉得发布构建输出可能会有帮助; http://pastebin.com/raw.php?i=wn74UKyc
最佳答案
发现问题,似乎在针对我所针对的框架时 VS 存在错误。我通过谷歌搜索 The currently targeted framework ".NETPortable,Version=v4.5,Profile=Profile78"does not include "System.Net.Requests, Version=4.0.0.0, Culture=neutral
构建输出中的错误,这让我遇到了在 Microsoft 的 Connect Site 上遇到相同问题的人。似乎他们很快就会修复此错误,但在此之前 Microsoft 发布了此解决方法,感谢 VS 团队的 Dave,
Thanks once again for the bug report. We've found another workaround that does not require you to change the frameworks you are targeting. To workaround this, edit the project in a text editor, and add the following underneath the last "Import" element:
<Target Name="_SetFullFrameworkFolderToProfile"
AfterTargets="GetReferenceAssemblyPaths">
<PropertyGroup>
<_FullFrameworkReferenceAssemblyPaths>$(TargetFrameworkDirectory)</_FullFrameworkReferenceAssemblyPaths>
</PropertyGroup>
</Target>
Andddd 繁荣:
关于c# - 命名空间 'Core' 中不存在类型或命名空间名称 'AuntieDot',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14527042/
我有 4 个 PCL,它们都针对相同的框架: 阿姨点: AuntieDot.Authentication: AuntieDot.Core: AuntieDot.Models: 但出于某种原因,“Aun
我是一名优秀的程序员,十分优秀!