textmagic / textmagic-rest-csharp

MIT License
8 stars 19 forks source link

Support .NET Standard / .Net Core? #10

Open Thorium opened 4 years ago

Thorium commented 4 years ago

When building on NETCoreApp 3.1, this says:

warning NU1701: Package 'RestSharp 105.1.0' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8' instead of the project target framework '.NETCoreApp,Version=v3.1'. This package may not be fully compatible with your project.
warning NU1701: Package 'TextmagicRest 1.0.0.5' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8' instead of the project target framework '.NETCoreApp,Version=v3.1'. This package may not be fully compatible with your project.
johnmckay-reward commented 4 years ago

@Thorium I've ran into the same issue today, created a PR to move the library to .net Standard 2.0 - https://github.com/textmagic/textmagic-rest-csharp/pull/11

Not sure if this is still maintained, last commit was in 2018!

Thorium commented 4 years ago

@jmkni, did you happened to create a NuGet package of this? :-)

johnmckay-reward commented 4 years ago

Not yet @Thorium , was hoping I might get a response here first. Currently just using the code in my project directly, but will create one when I get a chance.

Thorium commented 1 year ago

Any news on this?