Replies: 1 comment 2 replies
-
I've upgraded my Maui proj to .net 9, refit to v8.0.0
|
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I had it running very well in.Net 8 Maui and ported to the new Net 9 and it swallows the response...
I upgraded to Refit 8 but still have got the same problem.
It goes to the interface as follows:
global::System.Threading.Tasks.Taskglobal::System.Net.Http.HttpResponseMessage global::ZoEazy.Model.Interfaces.IAuthApi.AvailableEmailAsync(global::ZoEazy.Model.Contracts.EmailValidator @email)
{
var ______arguments = new object[] { @email };
var ______func = requestBuilder.BuildRestResultFuncForMethod("AvailableEmailAsync", new global::System.Type[] { typeof(global::ZoEazy.Model.Contracts.EmailValidator) } );
return (global::System.Threading.Tasks.Taskglobal::System.Net.Http.HttpResponseMessage)______func(this.Client, ______arguments);
}
it goes to the return, gets the request (using debug, ofc) and never returns to the end bracket...
Of course, .Net 9 and Refit 8 are three weeks old, but have to ask:
Is .Net 9 supported?
Thanks in advance
Beta Was this translation helpful? Give feedback.
All reactions