Setup route map source generator

This commit is contained in:
2024-09-23 13:38:20 +02:00
parent 0899b2d63b
commit 3e3845d414
15 changed files with 618 additions and 10 deletions
@@ -0,0 +1,13 @@
namespace Net.Sdk.Web.Extensions.SourceGenerators.Tests;
public class EndpointRouteBuilder : IEndpointRouteBuilder
{
public IServiceProvider ServiceProvider { get; }
public ICollection<EndpointDataSource> DataSources { get; }
public IApplicationBuilder CreateApplicationBuilder()
{
throw new NotImplementedException();
}
}