feat: add aot sandbox by TimothyMakkison ยท Pull Request #1969 ยท reactiveui/refit

Conversation

@TimothyMakkison

Added aot sandbox file

  • Don't know if the name should be AotSandbox or SandboxAot
  • Technically works in aot ๐Ÿ‘

When creating this I noticed that the first example in the readme doesn't work. Perhaps the readme should be updated?

public interface IGitHubApi
{
    [Get("/users/{user}")]
    [Headers("User-Agent: Refit")] // github expects a user-agent otherwise it returns forbidden
    Task<User> GetUser(string user);
}

@codecov

Codecov Report

All modified and coverable lines are covered by tests โœ…

Project coverage is 85.51%. Comparing base (6ebeda5) to head (a7e8505).
Report is 182 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #1969      +/-   ##
==========================================
- Coverage   87.73%   85.51%   -2.22%     
==========================================
  Files          33       36       +3     
  Lines        2348     2506     +158     
  Branches      294      365      +71     
==========================================
+ Hits         2060     2143      +83     
- Misses        208      285      +77     
+ Partials       80       78       -2     

โ˜” View full report in Codecov by Sentry.
๐Ÿ“ข Have feedback on the report? Share it here.

๐Ÿš€ New features to boost your workflow:
  • โ„๏ธ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@github-actions

This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators

May 7, 2025

1 participant

@TimothyMakkison