From ec822f586cd8b4bdb67c9c4f52f68c84d24c18fe Mon Sep 17 00:00:00 2001 From: Ryan Davis Date: Wed, 8 Jun 2022 20:00:33 +1000 Subject: [PATCH] feat: enable fixers by default --- src/components/tbc.host/Config/AssemblyCompilationOptions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/tbc.host/Config/AssemblyCompilationOptions.cs b/src/components/tbc.host/Config/AssemblyCompilationOptions.cs index d4cb892..a1a1bbc 100644 --- a/src/components/tbc.host/Config/AssemblyCompilationOptions.cs +++ b/src/components/tbc.host/Config/AssemblyCompilationOptions.cs @@ -16,6 +16,6 @@ public class AssemblyCompilationOptions public string WriteAssembliesPath { get; set; } public List SourceGeneratorReferences { get; set; } = new(); public List GlobalUsingsSources { get; set; } = new(); - public AssemblyFixerOptions FixerOptions { get; set; } + public AssemblyFixerOptions FixerOptions { get; set; } = new() { Enabled = true }; } }