Giter VIP home page Giter VIP logo

Comments (3)

Suchiman avatar Suchiman commented on May 3, 2024

For me this also happened by just putting the ISomeApi into another file in the same project than the file which does RestService.For.

So i had a ISomeApi.cs containing the ISomeApi Interface but calling RestService.For<ISomeApi>() from Client.cs in the same Project did result in an empty RefitStubs.cs (besides the PreserveAttribute) with the same error as described.

To workaround that i put a

public static class SomeApi
{
    public static ISomeApi GetService(string address)
    {
        return RestService.For<ISomeApi>(address);
    }
}

in the same file which works but is not that nice.

from refit.

carl-berg avatar carl-berg commented on May 3, 2024

👍 for this one. In my current project we are using a factory that wraps the calls for RestService.For (and adds logging and other interesting things) which makes the current implementation fall flat for us (when upgrading from Refit 1.3 to 2.0.2). As a side note calling Refit.RestService.For (because of a namespace clash) does not seem to generate any stubs.

from refit.

bennor avatar bennor commented on May 3, 2024

This will be fixed by #67, which should be merged when @paulcbetts has had time to review it. 😸

If you are desperate, you could build your own InterfaceStubGenerator.exe from that PR, but ⚠️ it may still have some changes coming before it's nugetted.

In the meantime, a temporary workaround is just to have another class in the same project as the interfaces that calls RestService.For<IYourInterface>() for all of the interfaces.

image

from refit.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.