When using the new CritterStackDefaults extension method on the IServiceProvider
builder.Services.CritterStackDefaults(profile =>
{
profile.GeneratedCodeOutputPath = "Test/ABC";
});
Wolverine still takes on the AppContext.BaseDirectory and it cannot be overriden.
The regular configuration in the WolverineOptions can still be used as an alternative:
builder.UseWolverine(options =>
{
options.CodeGeneration.GeneratedCodeOutputPath = "Test/ABC";
}
When using the new CritterStackDefaults extension method on the IServiceProvider
Wolverine still takes on the AppContext.BaseDirectory and it cannot be overriden.
The regular configuration in the WolverineOptions can still be used as an alternative: