forked from thabart/SimpleIdentityServer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuildProject.cmd
More file actions
23 lines (20 loc) · 1.06 KB
/
Copy pathBuildProject.cmd
File metadata and controls
23 lines (20 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
CD SimpleIdentityServer\VNEXT\
call powershell -NoProfile -ExecutionPolicy unrestricted -Command "&{iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/aspnet/Home/dev/dnvminstall.ps1'))}"
call dnvm upgrade
call dnu restore
dnu build src\SimpleIdentityServer.Host
dnu build src\SimpleIdentityServer.Core
dnu build src\SimpleIdentityServer.Core.Jwt
dnu build src\SimpleIdentityServer.DataAccess.Fake
dnu build src\SimpleIdentityServer.DataAccess.SqlServer
dnu build src\SimpleIdentityServer.RateLimitation
dnu build src\SimpleIdentityServer.Core.Common
dnu build src\SimpleIdentityServer.Common
dnu pack src\SimpleIdentityServer.Common -out nuget\
dnu pack src\SimpleIdentityServer.Core.Common -out nuget\
dnu pack src\SimpleIdentityServer.RateLimitation -out nuget\
dnu pack src\SimpleIdentityServer.DataAccess.SqlServer -out nuget\
dnu pack src\SimpleIdentityServer.DataAccess.Fake -out nuget\
dnu pack src\SimpleIdentityServer.Core.Jwt -out nuget\
dnu pack src\SimpleIdentityServer.Core -out nuget\
dnu pack src\SimpleIdentityServer.Host -out nuget\