-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathbuild.bat
More file actions
38 lines (32 loc) · 744 Bytes
/
build.bat
File metadata and controls
38 lines (32 loc) · 744 Bytes
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
31
32
33
34
35
36
37
38
@echo off
cls
dotnet build Fleece.sln -c Release
if ERRORLEVEL 1 (
echo Error building Fleece
exit /b 1
)
dotnet pack src\Fleece -c Release
if ERRORLEVEL 1 (
echo Error creating package for Fleece
exit /b 1
)
dotnet pack src\Fleece.SystemJson -c Release
if ERRORLEVEL 1 (
echo Error creating package for Fleece.SystemJson
exit /b 1
)
dotnet pack src\Fleece.FSharpData -c Release
if ERRORLEVEL 1 (
echo Error creating package for Fleece.FSharpData
exit /b 1
)
dotnet pack src\Fleece.NewtonsoftJson -c Release
if ERRORLEVEL 1 (
echo Error creating package for Fleece.NewtonsoftJson
exit /b 1
)
dotnet pack src\Fleece.SystemTextJson -c Release
if ERRORLEVEL 1 (
echo Error creating package for Fleece.SystemTextJson
exit /b 1
)