-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #84 from fsprojects/modernize-build-2021-08
Starts the process of modernizing the build and documentation for Excelprovider. Upgrades FAKE to version 5 Use fake as dotnet tool Use paket as dotnet tool Only provide ExcelProvider as NetStandard2.0 dll's. This provides maximum compatibility and lower maintenance costs. This change is the reason I suggest bumping the version number to 2.0-rc1. Not all the build targets are updated yet, so not all old functionality is enabled yet in this pull request. I have additional changes lined up to re-enable most of the remaining targets.
- Loading branch information
Showing
20 changed files
with
1,271 additions
and
884 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"version": 1, | ||
"isRoot": true, | ||
"tools": { | ||
"fake-cli": { | ||
"version": "5.20.4", | ||
"commands": [ | ||
"fake" | ||
] | ||
}, | ||
"paket": { | ||
"version": "6.0.3", | ||
"commands": [ | ||
"paket" | ||
] | ||
}, | ||
"fsharp.formatting.commandtool": { | ||
"version": "11.4.2", | ||
"commands": [ | ||
"fsdocs" | ||
] | ||
} | ||
} | ||
} |
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
Binary file not shown.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
@echo off | ||
cls | ||
|
||
.paket\paket.exe restore | ||
dotnet tool restore | ||
if errorlevel 1 ( | ||
exit /b %errorlevel% | ||
) | ||
|
||
dotnet paket restore | ||
if errorlevel 1 ( | ||
exit /b %errorlevel% | ||
) | ||
|
||
packages\build\FAKE\tools\FAKE.exe build.fsx %* | ||
dotnet fake run build.fsx %* |
Oops, something went wrong.