This repository has been archived by the owner on Nov 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2k
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
2,286 changed files
with
266,349 additions
and
91,408 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
language: csharp | ||
solution: Sources/Accord.NET.Mono.sln | ||
install: | ||
- nuget restore Sources/Accord.NET.Mono.sln | ||
script: | ||
- ./Build.sh framework | ||
- ./Build.sh samples | ||
- ./Tests.sh |
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#!/bin/bash | ||
########### | ||
|
||
echo " " | ||
echo "Accord.NET Framework all projects configurations builder " | ||
echo "=========================================================" | ||
echo " " | ||
echo "This Linux bash script will use Mono's xbuild tool to " | ||
echo "compile the Debug and Release versions of the framework. " | ||
echo " " | ||
|
||
|
||
|
||
if [ $# -eq 0 ] || [ "$1" == "framework" ]; then | ||
echo "" | ||
echo " - Building NET40 configuration..." | ||
echo "" | ||
xbuild /p:Configuration=NET40 Sources/Accord.NET.Mono.sln | ||
fi | ||
|
||
if [ $# -eq 0 ] || [ "$1" == "samples" ]; then | ||
echo "" | ||
echo " - Building samples..." | ||
echo "" | ||
xbuild /p:Configuration=Mono /p:Platform=x86 Samples/Samples.sln | ||
fi |
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.
Oops, something went wrong.