-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
scripts(build): several tiny improvements
* If none of the .NET versions were found, a mysterious InvalidOperationException was being thrown from calling Fsdk: now we use a newer version that allows to handle the case gracefully. * Check if buildTool is dotnet instead of using #if clauses because we might support soon both at the same time being handled by make.fsx. * Don't compare exactly against 'dotnet' but use "StartsWith" in case we use the whole thing ('dotnet build') in the buildTool variable soon.
- Loading branch information
Showing
7 changed files
with
23 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule fsx
updated
30 files
+36 −62 | .github/workflows/CI.yml | |
+3 −0 | .gitignore | |
+1 −1 | Fsdk.Tests/AsyncExtensions.fs | |
+5 −0 | Fsdk/Fsdk.fsproj | |
+182 −28 | Fsdk/Misc.fs | |
+140 −88 | Fsdk/Network.fs | |
+6 −5 | Fsdk/Process.fs | |
+40 −34 | Fsdk/Unix.fs | |
+1 −2 | ReadMe.md | |
+57 −0 | Tools/clean.fsx | |
+0 −300 | Tools/gitPush1by1.fsx | |
+3 −1 | Tools/nugetPush.fsx | |
+190 −0 | Tools/rename.fsx | |
+2 −31 | Tools/replace.fsx | |
+5 −0 | fsx-legacy.sln | |
+5 −0 | fsx.sln | |
+17 −58 | fsx/Program.fs | |
+79 −0 | fsx/fsx-legacy.fsproj | |
+60 −0 | fsx/fsx.fsproj | |
+948 −0 | fsxc/Fsxc.fs | |
+4 −955 | fsxc/Program.fs | |
+1 −0 | fsxc/fsxc-legacy.fsproj | |
+1 −0 | fsxc/fsxc.fsproj | |
+2 −2 | scripts/fsx-legacy.bat | |
+2 −2 | scripts/fsx.bat | |
+35 −3 | scripts/make.fsx | |
+170 −0 | scripts/publish.fsx | |
+17 −1 | scripts/runTests.fsx | |
+3 −1 | test/testProcess.fsx | |
+13 −0 | test/testRefNugetLibNewFormatWithShortVersion.fsx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters