Need to see if your shared folder is taking up space on your dropbox 👨💻? Find out how to check here.
Forum Discussion
Jan_Zeman
9 years agoHelpful | Level 6
.NET Standard support
Hello. I've tried to find an aswer within the already existing answers but without success. Sorry in case I overlooked.
I have recently tried to convert my PCL projects to .NET Standard. After the conversion I was supposed to re-add all the NuGet packages. All went fine until I bumped into my dependency on Dropbox.Api library. That one refused to install claiming .NET Standard is not supported. Because of this I had to rollback the whole effort.
Is there a plan to add .NET Standard support anytime soon?
Thanks in advance for your answer.
Best regards
Jan
Hi Jan,
The SDK contains a PCL libarary which is compatible with .NET Standard. If you are using project.json you need add portable-net45+win8 to your import section e.g.
"frameworks": { "netstandard1.1": { "imports": [ "portable-net45+win8" ] } }If your are using .csproj you need add
<PackageTargetFallback>portable-net45+win8</PackageTargetFallback>
under your <Project> element.
Thanks,
Qiming
6 Replies
- Greg-DB9 years ago
Dropbox Community Moderator
Hi Jan, I believe this is supposed to already work. The SDK contains PCL with profile111 which is compatible with .NET Standard 1.1 and above.
Can you share the steps you followed to reproduce this, and the full error/output you're getting? Thanks in advance! - Jan_Zeman9 years agoHelpful | Level 6
Hi Greg,
Thanks for the fast reaction.
1) Start VS 2017 (Windows)
2) Create new project and select "Class library (Portable)" with the following profile: (NET 4.5.1, Xamarin.Android, Xamarin.iOS
3) Open properities of the just created project
4) Click "Target .NET Platform Standard" link (in my case .NETStandard1.2 is preselected so I keep it)
5) Manage NuGet Packages and try to add "Dropbox.Api"
Nothing is added and the output says:
Package Dropbox.Api 4.3.0 is not compatible with netstandard1.2 (.NETStandard,Version=v1.2). Package Dropbox.Api 4.3.0 supports:
- net45 (.NETFramework,Version=v4.5)
- portable-dnxcore50+net45+win8+wp8+wpa81 (.NETPortable,Version=v0.0,Profile=net45+wp80+win8+wpa81+dnxcore50)
- portable-net40+sl5+win8+wp8+wpa81 (.NETPortable,Version=v0.0,Profile=Profile328)
One or more packages are incompatible with .NETStandard,Version=v1.2.
Package restore failed. Rolling back package changes for 'ClassLibrary1'.If I try to switch to .NETStandard1.6 it is the same result:
Package Dropbox.Api 4.3.0 is not compatible with netstandard1.6 (.NETStandard,Version=v1.6). Package Dropbox.Api 4.3.0 supports:
- net45 (.NETFramework,Version=v4.5)
- portable-dnxcore50+net45+win8+wp8+wpa81 (.NETPortable,Version=v0.0,Profile=net45+wp80+win8+wpa81+dnxcore50)
- portable-net40+sl5+win8+wp8+wpa81 (.NETPortable,Version=v0.0,Profile=Profile328)
One or more packages are incompatible with .NETStandard,Version=v1.6.
Package restore failed. Rolling back package changes for 'ClassLibrary1'. - Qiming Y.9 years ago
Dropbox Staff
Hi Jan,
The SDK contains a PCL libarary which is compatible with .NET Standard. If you are using project.json you need add portable-net45+win8 to your import section e.g.
"frameworks": { "netstandard1.1": { "imports": [ "portable-net45+win8" ] } }If your are using .csproj you need add
<PackageTargetFallback>portable-net45+win8</PackageTargetFallback>
under your <Project> element.
Thanks,
Qiming
- Jan_Zeman9 years agoHelpful | Level 6
Hi Qiming,
Yes, this worked. Thank you! I thought this all should work automatically while adding the NuGet. I do not know that much about this area yet. Is there any documentation Dropbox & .NET Standard around where I can read more and also use it in the future when libs get updated?
Best regards
Jan
- Qiming Y.9 years ago
Dropbox Staff
We've added some instructions to the github README. If you need more info about PCL .NET Standard compatibility you can check out
https://docs.microsoft.com/en-us/nuget/schema/msbuild-targets#packagetargetfallback and https://docs.microsoft.com/en-us/dotnet/articles/standard/library
Thanks,
Qiming
- Jan_Zeman9 years agoHelpful | Level 6
Perfect. Thank you again! Jan
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.
If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X, Facebook or Instagram.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!