From 2f0ad13302a77bcd704a165fa32ad7776858db0a Mon Sep 17 00:00:00 2001 From: dawe Date: Tue, 10 Oct 2023 12:35:15 +0200 Subject: [PATCH] seems like the new compiler exception is sometimes thrown, sometimes not. --- build.fsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.fsx b/build.fsx index 097e7a463c..7a84b663de 100644 --- a/build.fsx +++ b/build.fsx @@ -89,8 +89,8 @@ pipeline "Build" { run (analyzeProject "./src/Fantomas.Benchmarks/Fantomas.Benchmarks.fsproj") run (analyzeProject "./src/Fantomas.Client/Fantomas.Client.fsproj") run (analyzeProject "./src/Fantomas.Client.Tests/Fantomas.Client.Tests.fsproj") - // run (analyzeProject "./src/Fantomas.Core/Fantomas.Core.fsproj") // compiler exn - // run (analyzeProject "./src/Fantomas.Core.Tests/Fantomas.Core.Tests.fsproj") // compiler exn + run (analyzeProject "./src/Fantomas.Core/Fantomas.Core.fsproj") + run (analyzeProject "./src/Fantomas.Core.Tests/Fantomas.Core.Tests.fsproj") run (analyzeProject "./src/Fantomas.FCS/Fantomas.FCS.fsproj") run (analyzeProject "./src/Fantomas.Tests/Fantomas.Tests.fsproj") }