Coinio / Bittrex.Api.Client

A C# http client wrapper for the Bittrex cryptocurrency trading platform api
MIT License
13 stars 12 forks source link

Can this package be targeted to .NET FX 4.5? #14

Closed juanonsoftware closed 6 years ago

juanonsoftware commented 6 years ago

Hi, I see the package requires net standard 2, is it possible to support lower framework? Thanks,

Coinio commented 6 years ago

I built this net standard so I could target a Linux deployment and lowering the framework supported on the current package wouldn't allow that. It shouldn't be too difficult to make the source code work on a lower framework but I don't have any plans to deploy a none .net standard package. Are you not able to upgrade your project to .NET 4.6.2 which would support .net standard while still giving you access to the full framework?

juanonsoftware commented 6 years ago

I see .NET 4.6.2 supports net standard 1.6 whilst package on nuget requires net standard 2.

Coinio commented 6 years ago

.NET 4.6.2 should support the package (see link below). I've just tried a new solution and imported the package and it worked okay. Are you still having issues? You might want to try installed the .NET Core 2.0 SDK on your machine too if so.

https://docs.microsoft.com/en-us/dotnet/standard/net-standard

juanonsoftware commented 6 years ago

Hi, it did not work if I used VS2013 but worked when I used VS2017 . Thanks.