-
Notifications
You must be signed in to change notification settings - Fork 526
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Microsoft.Bcl.Async nags about missing "The type 'AnnouncementClient' is required here and is unavailable." #1117
Comments
Try with Nuget - it will install the same dlls. |
Alright I believe you. 😄 I have to manually remove this ref from the project to get it to build. |
I've recently started getting the same error message actually. For example this project currently builds as expected, but it will fail as soon as I paket update. |
For the record, and reproducing our private discussion with @forki, the problem more likely has to do with a bug in paket when resolving the dependency graph for AWSSDK.Core, which has the following dependency tree <dependencies>
<group targetFramework=".NETFramework4.5" />
<group targetFramework=".NETPortable0.0-net45+netcore45+wpa81+wp8+MonoAndroid10+xamarinios10+MonoTouch10">
<dependency id="Microsoft.Net.Http" version="2.2.29" />
<dependency id="PCLStorage" version="1.0.2" />
<dependency id="PCLCrypto" version="1.0.2.15130" />
</group>
</dependencies> which however is resolved to the following paket.lock:
|
The project is built to .net 4.6 so it should not do anything. At least I was under the impression it shouldn't do anything.
But to my suprise this ended up in my project file:
why does this reference get added to the project for 4.6 when the package is obviously meant for .net4.
I don't know if this is a paket issue, but I thought I'd ask here anyway.
ps. I'm so fed up with these Bcl packages...
The text was updated successfully, but these errors were encountered: