Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ TestCloud/
project.lock.json

tools/
!tools/packages.config
.nugetapikey
.mygetapikey
*.xam
Expand Down
3 changes: 3 additions & 0 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -80,5 +80,8 @@ Task ("clean")
CleanDirectories ("./**/obj");
});

Task("Default")
.IsDependentOn("libs");

RunTarget (TARGET);

4 changes: 4 additions & 0 deletions build.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ if [ ! -f "$PACKAGES_CONFIG_MD5" ] || [ "$( cat "$PACKAGES_CONFIG_MD5" | sed 's/
find . -type d ! -name . | xargs rm -rf
fi

echo "Restoring tools from NuGet..."
mono "$NUGET_EXE" install -ExcludeVersion
if [ $? -ne 0 ]; then
echo "Could not restore NuGet tools."
Expand All @@ -85,6 +86,7 @@ popd >/dev/null
if [ -f "$ADDINS_PACKAGES_CONFIG" ]; then
pushd "$ADDINS_DIR" >/dev/null

echo "Restoring addins from NuGet..."
mono "$NUGET_EXE" install -ExcludeVersion
if [ $? -ne 0 ]; then
echo "Could not restore NuGet addins."
Expand All @@ -98,6 +100,7 @@ fi
if [ -f "$MODULES_PACKAGES_CONFIG" ]; then
pushd "$MODULES_DIR" >/dev/null

echo "Restoring modules from NuGet..."
mono "$NUGET_EXE" install -ExcludeVersion
if [ $? -ne 0 ]; then
echo "Could not restore NuGet modules."
Expand All @@ -113,5 +116,6 @@ if [ ! -f "$CAKE_EXE" ]; then
exit 1
fi

echo "Running Cake..."
# Start Cake
exec mono "$CAKE_EXE" $SCRIPT "${CAKE_ARGUMENTS[@]}"
4 changes: 4 additions & 0 deletions tools/packages.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Cake" version="0.26.1" />
</packages>