forked from luberda-molinet/FFImageLoading
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
30 lines (24 loc) · 1.35 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
all: FFImageLoading Transformations Forms
package:
nuget pack source/Xamarin.FFImageLoading.nuspec
nuget pack source/Xamarin.FFImageLoading.Transformations.nuspec
nuget pack source/Xamarin.FFImageLoading.Forms.nuspec
FFImageLoading:
xbuild source/FFImageLoading.Common/FFImageLoading.csproj /p:Configuration=Release /p:BuildingInsideVisualStudio=true
xbuild source/FFImageLoading.Touch/FFImageLoading.Touch.csproj /p:Configuration=Release /p:BuildingInsideVisualStudio=true
xbuild source/FFImageLoading.Droid/FFImageLoading.Droid.csproj /p:Configuration=Release /p:BuildingInsideVisualStudio=true
Transformations:
xbuild source/FFImageLoading.Transformations/FFImageLoading.Transformations.csproj /p:Configuration=Release
xbuild source/FFImageLoading.Transformations.Touch/FFImageLoading.Transformations.Touch.csproj /p:Configuration=Release
xbuild source/FFImageLoading.Transformations.Droid/FFImageLoading.Transformations.Droid.csproj /p:Configuration=Release
Forms:
xbuild source/FFImageLoading.Forms/FFImageLoading.Forms.csproj /p:Configuration=Release
xbuild source/FFImageLoading.Forms.Touch/FFImageLoading.Forms.Touch.csproj /p:Configuration=Release
xbuild source/FFImageLoading.Forms.Droid/FFImageLoading.Forms.Droid.csproj /p:Configuration=Release
clean:
rm -rf */bin
rm -rf */obj
rm -rf */*/bin
rm -rf */*/obj
rm -rf */*/*/bin
rm -rf */*/*/obj