-
Notifications
You must be signed in to change notification settings - Fork 255
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
Windows 10, VS2015U3, NuGet 3.5 install package issue with Facade assemblies #3103
Comments
Please let me know if this is in the wrong repo. |
I'm experiencing this same issue. Thank you for any guidance. |
My latest commit (exceptionless/Exceptionless.Net@c7becdb) seems to have fixed it. I changed the portable projects framework dependencies to build time.. Which is crazy because my net451 project shouldn't even be looking at the portable projects dependencies.. |
There is an issue here that needs to be resolved asap... There seems to be an installer issue when you have |
I need more information to route this. Do you think this is a NuGet issue, or a VS issue? What went wrong, when? @csharpfritz |
I think it's a nuget issue, package install just fails. You can reproduce it very easily.. {
"frameworks": {
"netstandard1.0": {
"dependencies": {
"System.Collections": "4.0.11",
"System.Runtime": "4.1.0"
}
},
".NETPortable,Version=v4.5,Profile=Profile259": {
"frameworkAssemblies": {
"System.Collections": "",
"System.Runtime": ""
}
}
}
} Then create a new If you don't want to define a simple package just use @StephenCleary's package https://www.nuget.org/packages/Nito.Collections.Deque/1.0.0-delta-8 |
Note that
But this feels wrong to me, since they are not build-only dependencies. |
@StephenCleary has the right workaround, we believe. |
I created a new ASP.NET MVC Project (.NET 4.5.1) and then opened the package manager console and tried to install our package...
https://www.nuget.org/packages/Exceptionless/4.0.1880-pre
And I get an install error
Install-Package : Failed to add reference. The package 'Exceptionless' tried to add a framework reference to 'System.Runtime' which was not found in the GAC. This is possibly a bug in the package. Please contact the package owners for assistance.
The issue is my package doesn't define any assembly references (only in the .net standard packages...) I don't get why it's happening. Also, it seemsl ike the exceptionless packages folder is removed but the assembly reference isn't removed from the project references list.The text was updated successfully, but these errors were encountered: