-
Notifications
You must be signed in to change notification settings - Fork 26
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
.NET Standard support? #3
Comments
hey, Problem solved! Best regards --- UPDATE |
Hello! In the end we did this too. But I would have liked it more if there was official support and a nuget package. I'll include the
|
Hi, that's sounds strange to me. Lucky you if it worked. The piple on azure reported an error in compiling and I had to switch back. |
We didn't encounter this compilation error nor the exception. But we only use |
+1 for getting this officially ported to .NET Standard |
Hi @amitsendinblue, is there any update on when .netstandard will be officially supported? I have deployed a project using the existing package to a Linux environment and run locally on a Mac and it seems to work as expected. Would be great to see this project maintained properly. Thanks! |
Hi @Res42, @Mikelsoft99 , @mbrookson , I have incorporated suggested changes to the following branch, could you please check at you end if these changes are working fine for you. In either case please let me know. https://github.com/sendinblue/APIv3-csharp-library/tree/UpdateWrapper Thank you |
Hello, I don't work on the project which used this anymore, but I will forward this issue to my colleagues. |
Hi @Res42, Thanks for the reply. I have merged the above mentioned branch into master:- https://github.com/sendinblue/APIv3-csharp-library Also updated the nuget package for the same :- https://www.nuget.org/packages/sib_api_v3_sdk/ As the issue is resolved now, I am closing this issue. |
Currently this library only supports
.NET Framework 4.5
according to the .csproj file.This library is generated with
swagger-codegen-cli 2.4.4
. There is a switch in the generator command to change the target framework like this:swagger-codegen generate [...] --additional-properties targetFramework=v5.0
. This will then generate a.NET Standard 1.3
client.As the generator script is not publicized I cannot rerun the generator with this added configuration option. Could you please publicize the generator script or regenerate the client with this option?
Note: this change will also replace the RestSharp 105.1.0 package with these two: FubarCoder.RestSharp.Portable.Core 4.0.7 and FubarCoder.RestSharp.Portable.HttpClient 4.0.7. So this line in the readme may be removed:
The text was updated successfully, but these errors were encountered: