Michal Motyčka
Michal Motyčka
Following example doesn't work: ```csharp public class SexyProxyTest { public void GenericMethod(TModel model) { } } public class SexyProxyTests { [Test] public void Test() { var proxy = Proxy.CreateProxy(new SexyProxyTest(),...
Controllers and actions with same name are currently not supported. Folowing example will fail ```csharp namespace TestWebApplication.Controllers { [GenerateClient] [Route("SameName1")] public class ControllersWithSameName { [HttpGet] public int AndWithSameMethod() { return...
There are 5 problems that need to be overcome to support minimal API: 1. Naming of the generated files and clients 2. Naming of the generated method 3. Obtaining URL...
Internal constructors are currently not supported. Ridge fails with "action not found error". Internal controllers and internal actions can also use internal objects. If internal constructor or internal action uses...
Use https://github.com/scriban/scriban for easier code generation