-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Makefile
23 lines (14 loc) · 799 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
SRC=src/SQLite.cs src/SQLiteAsync.cs
PACKAGES_OUT=$(abspath PackagesOut)
all: nuget
nuget: pclnuget basenuget sqlciphernuget staticnuget
pclnuget: nuget/SQLite-net-std/SQLite-net-std.csproj $(SRC)
dotnet pack -c Release -o $(PACKAGES_OUT) $<
basenuget: nuget/SQLite-net-base/SQLite-net-base.csproj $(SRC)
dotnet pack -c Release -o $(PACKAGES_OUT) $<
sqlciphernuget: nuget/SQLite-net-sqlcipher/SQLite-net-sqlcipher.csproj $(SRC)
dotnet pack -c Release -o $(PACKAGES_OUT) $<
staticnuget: nuget/SQLite-net-static/SQLite-net-static.csproj $(SRC)
dotnet pack -c Release -o $(PACKAGES_OUT) $<
codecoverage:
cd tests/SQLite.Tests && dotnet test /p:AltCover=true /p:AltCoverForce=true "/p:AltCoverTypeFilter=SQLite.Tests.*" && reportgenerator -reports:coverage.xml -targetdir:./CoverageReport