We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.

Forum Discussion

Jan_Zeman's avatar
Jan_Zeman
Helpful | Level 6
8 years ago

.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

     

  • Greg-DB's avatar
    Greg-DB
    Icon for Dropbox Staff rankDropbox Staff
    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_Zeman's avatar
      Jan_Zeman
      Helpful | 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.'s avatar
        Qiming Y.
        Icon for Dropbox Staff rankDropbox 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

         

About Dropbox API Support & Feedback

Node avatar for Dropbox API Support & Feedback

Find help with the Dropbox API from other developers.

5,876 PostsLatest Activity: 6 hours ago
325 Following

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 or Facebook.

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!