forked from IdentityServer/IdentityServer4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.ps1
93 lines (73 loc) · 1.96 KB
/
build.ps1
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
New-Item -ItemType Directory -Force -Path ./nuget
dotnet tool install --tool-path tools SignClient
$cd = Get-Location
# storage
""
"###########################################"
"######### IdentityServer4.Storage #########"
"###########################################"
""
set-location ./src/Storage
& ./build.ps1 $args
Set-Location $cd
if ($LASTEXITCODE -ne 0)
{
exit $LASTEXITCODE
}
Copy-Item -path .\src\Storage\artifacts\*.nupkg -Destination .\nuget
# core
""
"###########################################"
"######### IdentityServer4 #################"
"###########################################"
""
set-location ./src/IdentityServer4
& ./build.ps1 $args
Set-Location $cd
if ($LASTEXITCODE -ne 0)
{
exit $LASTEXITCODE
}
Copy-Item -path .\src\IdentityServer4\artifacts\*.nupkg -Destination .\nuget
# EF storage
""
"############################################################"
"######### IdentityServer4.EntityFramework.Storage ##########"
"############################################################"
""
set-location ./src/EntityFramework.Storage
& ./build.ps1 $args
Set-Location $cd
if ($LASTEXITCODE -ne 0)
{
exit $LASTEXITCODE
}
Copy-Item -path .\src\EntityFramework.Storage\artifacts\*.nupkg -Destination .\nuget
# EF
""
"###################################################"
"######### IdentityServer4.EntityFramework #########"
"###################################################"
""
set-location ./src/EntityFramework
& ./build.ps1 $args
Set-Location $cd
if ($LASTEXITCODE -ne 0)
{
exit $LASTEXITCODE
}
Copy-Item -path .\src\EntityFramework\artifacts\*.nupkg -Destination .\nuget
# aspid
""
"###################################################"
"######### IdentityServer4.AspNetIdentity ##########"
"###################################################"
""
set-location ./src/AspNetIdentity
& ./build.ps1 $args
Set-Location $cd
if ($LASTEXITCODE -ne 0)
{
exit $LASTEXITCODE
}
Copy-Item -path .\src\AspNetIdentity\artifacts\*.nupkg -Destination .\nuget