-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpack.cmd
More file actions
24 lines (18 loc) · 788 Bytes
/
pack.cmd
File metadata and controls
24 lines (18 loc) · 788 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
@echo off
for %%x in (%*) do (
if "%%x"=="shared" (
dotnet pack -o build -c Release src/Starnight.Shared --include-source --include-symbols -p:TreatWarningsAsErrors=false
)
if "%%x"=="caching-providers" (
dotnet pack -o build -c Release src/Starnight.Caching.Providers --include-source --include-symbols -p:TreatWarningsAsErrors=false
)
if "%%x"=="internal" (
dotnet pack -o build -c Release src/Starnight.Internal --include-source --include-symbols -p:TreatWarningsAsErrors=false
)
if "%%x"=="caching" (
dotnet pack -o build -c Release src/Starnight.Caching --include-source --include-symbols -p:TreatWarningsAsErrors=false
)
if "%%x"=="main" (
dotnet pack -o build -c Release src/Starnight --include-source --include-symbols -p:TreatWarningsAsErrors=false
)
)