-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-nupkg.bat
21 lines (17 loc) · 1.04 KB
/
build-nupkg.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
@echo off
rem ForestLog - A minimalist logger interface.
rem Copyright (c) Kouji Matsui (@kozy_kekyo, @kekyo@mastodon.cloud)
rem
rem Licensed under Apache-v2: https://opensource.org/licenses/Apache-2.0
echo.
echo "==========================================================="
echo "Build ForestLog"
echo.
rem git clean -xfd
dotnet build -p:Configuration=Release -p:Platform="Any CPU"
dotnet pack -p:Configuration=Release -p:Platform=AnyCPU -o artifacts ForestLog.Core\ForestLog.Core.csproj
dotnet pack -p:Configuration=Release -p:Platform=AnyCPU -o artifacts ForestLog\ForestLog.csproj
dotnet pack -p:Configuration=Release -p:Platform=AnyCPU -o artifacts ForestLog.JsonLines\ForestLog.JsonLines.csproj
dotnet pack -p:Configuration=Release -p:Platform=AnyCPU -o artifacts ForestLog.Extensions.Logging\ForestLog.Extensions.Logging.csproj
dotnet pack -p:Configuration=Release -p:Platform=AnyCPU -o artifacts ForestLog.MQTTnet312\ForestLog.MQTTnet312.csproj
dotnet pack -p:Configuration=Release -p:Platform=AnyCPU -o artifacts FSharp.ForestLog\FSharp.ForestLog.fsproj