-
-
Notifications
You must be signed in to change notification settings - Fork 420
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
31 additions
and
29 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,19 @@ | ||
sh clean.sh | ||
sh docs.sh | ||
|
||
echo committing them to git | ||
# Artifacts is where the DLLs are compiled to | ||
Artifacts=/home/paul/Documents/dev/artifacts | ||
|
||
cd $LangExtDocs | ||
# $LangExtRoot is where the source code root should be (i.e. c:\dev\language-ext) | ||
LangExtRoot=/home/paul/Documents/dev/language-ext | ||
|
||
git add . | ||
git commit -m "Language-ext documentation update" | ||
git push | ||
sh clean.sh | ||
sh docs.sh | ||
|
||
cd $LangExtRoot | ||
|
||
echo building the artefacts | ||
|
||
dotnet restore | ||
dotnet pack LanguageExt.Core -c Release -o ../artifacts/bin | ||
dotnet pack LanguageExt.FSharp -c Release -o ../artifacts/bin | ||
dotnet pack LanguageExt.Parsec -c Release -o ../artifacts/bin | ||
dotnet pack LanguageExt.Rx -c Release -o ../artifacts/bin | ||
dotnet pack LanguageExt.Sys -c Release -o ../artifacts/bin | ||
dotnet pack LanguageExt.Core -c Release -o $Artifacts | ||
dotnet pack LanguageExt.FSharp -c Release -o $Artifacts | ||
dotnet pack LanguageExt.Parsec -c Release -o $Artifacts | ||
dotnet pack LanguageExt.Rx -c Release -o $Artifacts | ||
dotnet pack LanguageExt.Sys -c Release -o $Artifacts |