1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-07-04 19:21:33 +02:00
Radarr/docs.sh

45 lines
954 B
Bash
Raw Normal View History

2021-08-30 05:33:32 +02:00
PLATFORM=$1
if [ "$PLATFORM" = "Windows" ]; then
RUNTIME="win-x64"
elif [ "$PLATFORM" = "Linux" ]; then
2023-04-29 20:43:12 +02:00
RUNTIME="linux-x64"
2021-08-30 05:33:32 +02:00
elif [ "$PLATFORM" = "Mac" ]; then
2023-04-29 20:43:12 +02:00
RUNTIME="osx-x64"
2021-08-30 05:33:32 +02:00
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 03:55:55 +01:00
slnFile=src/Radarr.sln
2021-08-30 05:33:32 +02:00
platform=Posix
if [ "$PLATFORM" = "Windows" ]; then
application=Radarr.Console.dll
else
application=Radarr.dll
fi
2021-08-30 05:33:32 +02:00
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
dotnet tool install --version 6.6.2 Swashbuckle.AspNetCore.Cli
2021-08-30 05:33:32 +02:00
dotnet tool run swagger tofile --output ./src/Radarr.Api.V3/openapi.json "$outputFolder/net6.0/$RUNTIME/$application" v3 &
2021-08-30 05:33:32 +02:00
sleep 45
2021-08-30 05:33:32 +02:00
kill %1
2023-04-29 20:43:12 +02:00
exit 0