From adf7c5aec6e587c93ee3de6762602d2822070013 Mon Sep 17 00:00:00 2001 From: nojaf Date: Sun, 24 Oct 2021 16:18:06 +0200 Subject: [PATCH 1/3] Set DOTNET_CLI_UI_LANGUAGE to en-us when running dotnet tool command. --- src/Fantomas.Client/FantomasToolLocator.fs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Fantomas.Client/FantomasToolLocator.fs b/src/Fantomas.Client/FantomasToolLocator.fs index 559d22ff3e..68ec16cf7f 100644 --- a/src/Fantomas.Client/FantomasToolLocator.fs +++ b/src/Fantomas.Client/FantomasToolLocator.fs @@ -51,6 +51,7 @@ let private readOutputStreamAsLines (outputStream: StreamReader) : string list = let private runToolListCmd (Folder workingDir) (globalFlag: bool) = let ps = ProcessStartInfo("dotnet") ps.WorkingDirectory <- workingDir + ps.EnvironmentVariables.Add("DOTNET_CLI_UI_LANGUAGE", "en-us") ps.Arguments <- if globalFlag then From 83f76ba28f7ebb9c71b3f7533126b077ef991910 Mon Sep 17 00:00:00 2001 From: nojaf Date: Sun, 24 Oct 2021 16:21:44 +0200 Subject: [PATCH 2/3] Add RepositoryUrl. --- src/Fantomas.Client/Fantomas.Client.fsproj | 3 ++- src/Fantomas.CoreGlobalTool/Fantomas.CoreGlobalTool.fsproj | 1 + src/Fantomas.Extras/Fantomas.Extras.fsproj | 1 + src/Fantomas/Fantomas.fsproj | 1 + 4 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Fantomas.Client/Fantomas.Client.fsproj b/src/Fantomas.Client/Fantomas.Client.fsproj index e15c2d325d..c3cf26c00a 100644 --- a/src/Fantomas.Client/Fantomas.Client.fsproj +++ b/src/Fantomas.Client/Fantomas.Client.fsproj @@ -1,7 +1,7 @@ netstandard2.0 - 0.3.0 + 0.3.1 Companion library to format using fantomas tool. true 3390;$(WarnOn) @@ -11,6 +11,7 @@ true true embedded + https://github.com/fsprojects/fantomas diff --git a/src/Fantomas.CoreGlobalTool/Fantomas.CoreGlobalTool.fsproj b/src/Fantomas.CoreGlobalTool/Fantomas.CoreGlobalTool.fsproj index 084d76302a..35d2afe97a 100644 --- a/src/Fantomas.CoreGlobalTool/Fantomas.CoreGlobalTool.fsproj +++ b/src/Fantomas.CoreGlobalTool/Fantomas.CoreGlobalTool.fsproj @@ -13,6 +13,7 @@ FS0025 LICENSE.md fantomas_logo.png + https://github.com/fsprojects/fantomas diff --git a/src/Fantomas.Extras/Fantomas.Extras.fsproj b/src/Fantomas.Extras/Fantomas.Extras.fsproj index e968162231..c56fe36682 100644 --- a/src/Fantomas.Extras/Fantomas.Extras.fsproj +++ b/src/Fantomas.Extras/Fantomas.Extras.fsproj @@ -10,6 +10,7 @@ true true embedded + https://github.com/fsprojects/fantomas diff --git a/src/Fantomas/Fantomas.fsproj b/src/Fantomas/Fantomas.fsproj index 163229d1e0..58446356fa 100644 --- a/src/Fantomas/Fantomas.fsproj +++ b/src/Fantomas/Fantomas.fsproj @@ -10,6 +10,7 @@ true true embedded + https://github.com/fsprojects/fantomas From 01a7b7418470c355e204855e5872a248cd73296f Mon Sep 17 00:00:00 2001 From: nojaf Date: Sun, 24 Oct 2021 16:22:12 +0200 Subject: [PATCH 3/3] Bump Fantomas.Client version to 0.3.1 --- build.fsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.fsx b/build.fsx index fb918b8da7..72af1fc684 100644 --- a/build.fsx +++ b/build.fsx @@ -51,7 +51,7 @@ let owner = "Anh-Dung Phan" let tags = "F# fsharp formatting beautifier indentation indenter" -let fantomasClientVersion = "0.3.0" +let fantomasClientVersion = "0.3.1" // (.sln is built during the building process) let solutionFile = "fantomas"