You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
440 B
Bash
16 lines
440 B
Bash
#!/bin/bash
|
|
DIR=`dirname $0`
|
|
source $DIR/dotnet-include.sh
|
|
|
|
cd $DIR/src/OcelotApplicationService/
|
|
dotnet restore -s https://api.nuget.org/v3/index.json
|
|
dotnet build
|
|
dotnet publish -o ../../OcelotApplication/OcelotApplicationServicePkg/Code
|
|
cd -
|
|
|
|
cd $DIR/src/OcelotApplicationApiGateway/
|
|
dotnet restore -s https://api.nuget.org/v3/index.json
|
|
dotnet build
|
|
dotnet publish -o ../../OcelotApplication/OcelotApplicationApiGatewayPkg/Code
|
|
cd -
|