I have a C-sharp solution/project and I target “netstandard2.0”. I added a ‘connected service’ to be able to talk to a payment provider and also that is targeted to “netstandard2.0” (generated via the visual studio wizard).
It is no problem to make a connection to the payment provider through the connected service, but when I execute for example below code then on the 2nd line (GetCardExtendedDetailsAsync) it gives me the error message “System.PlatformNotSupportedException: ‘This operation is not supported on .NET Standard as Reflection.Emit is not available.’
“:
*GetCardExtendedDetailsRequest request = new GetCardExtendedDetailsRequest(authenticate, cardNumber, “”, false);
Task response = client.GetCardExtendedDetailsAsync(request);
*
Everything is netstandard2.0 so I don’t know what the error message means or how to fix it. Hope someone can help me.
Thx.
user25542035 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.