I have an api in .net framework 4.8 that uses the flurl package to make http calls. Running the api directly through visual studio, or even publishing it, it works correctly, however when generating the build from an azureDevOps pipeline, it builds and generates correctly, but in http calls using flurl this error occurs: System .EntryPointNotFoundException: The entry point was not found.
in System.Collections.Generic.IEnumerable1.GetEnumerator() in System.Collections.Generic.List1..ctor(IEnumerable1 collection) in System.Linq.Enumerable.ToList[TSource](IEnumerable1 source)
in Flurl.Http.FlurlRequest.SyncHeaders(IFlurlClient client, IFlurlRequest request)
in Flurl.Http.FlurlRequest.EnsureClient()
I've tried several things, all without success, I hoped that the build from the pipeline would work.