2021-08-30 03:33:32 +00:00
|
|
|
PLATFORM=$1
|
|
|
|
|
|
|
|
if [ "$PLATFORM" = "Windows" ]; then
|
|
|
|
RUNTIME="win-x64"
|
|
|
|
elif [ "$PLATFORM" = "Linux" ]; then
|
|
|
|
WHERE="linux-x64"
|
|
|
|
elif [ "$PLATFORM" = "Mac" ]; then
|
|
|
|
WHERE="osx-x64"
|
|
|
|
else
|
|
|
|
echo "Platform must be provided as first arguement: Windows, Linux or Mac"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
outputFolder='_output'
|
|
|
|
testPackageFolder='_tests'
|
|
|
|
|
|
|
|
rm -rf $outputFolder
|
|
|
|
rm -rf $testPackageFolder
|
|
|
|
|
2022-03-14 02:55:55 +00:00
|
|
|
slnFile=src/Radarr.sln
|
2021-08-30 03:33:32 +00:00
|
|
|
|
|
|
|
platform=Posix
|
|
|
|
|
|
|
|
dotnet clean $slnFile -c Debug
|
|
|
|
dotnet clean $slnFile -c Release
|
|
|
|
|
|
|
|
dotnet msbuild -restore $slnFile -p:Configuration=Debug -p:Platform=$platform -p:RuntimeIdentifiers=$RUNTIME -t:PublishAllRids
|
|
|
|
|
|
|
|
dotnet new tool-manifest
|
2022-03-15 03:25:17 +00:00
|
|
|
dotnet tool install --version 6.3.0 Swashbuckle.AspNetCore.Cli
|
2021-08-30 03:33:32 +00:00
|
|
|
|
2022-03-14 03:03:03 +00:00
|
|
|
dotnet tool run swagger tofile --output ./src/Radarr.Api.V3/openapi.json "$outputFolder/net6.0/$RUNTIME/radarr.console.dll" v3 &
|
2021-08-30 03:33:32 +00:00
|
|
|
|
2022-03-15 03:30:18 +00:00
|
|
|
sleep 45
|
2021-08-30 03:33:32 +00:00
|
|
|
|
|
|
|
kill %1
|
|
|
|
|
|
|
|
exit 0
|