80 lines
2.8 KiB
Batchfile
Executable file
80 lines
2.8 KiB
Batchfile
Executable file
:<<"::SHELLSCRIPT"
|
|
@ECHO OFF
|
|
GOTO :CMDSCRIPT
|
|
|
|
::SHELLSCRIPT
|
|
config=$1
|
|
os=$2
|
|
|
|
if [[ $os ]]; then
|
|
os="-r $os-x64"
|
|
elif [[ $(uname) = "Darwin" ]]; then
|
|
os="-r osx-x64"
|
|
elif [[ -f /etc/os-release ]]; then
|
|
. /etc/os-release
|
|
NAME="$(tr '[:upper:]' '[:lower:]' <<< $NAME | tr -d [:blank:])"
|
|
os="-r $NAME.$VERSION_ID-x64"
|
|
fi
|
|
|
|
if [[ $config ]]; then
|
|
config="$(tr '[:lower:]' '[:upper:]' <<< ${1:0:1})${1:1}"
|
|
config="-c $config"
|
|
else
|
|
config="-c Release"
|
|
fi
|
|
|
|
if [[ $os == *'centos'* || $os == *'rhel'* ]]; then
|
|
export DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1
|
|
fi
|
|
|
|
echo dotnet clean --verbosity quiet
|
|
dotnet clean --verbosity quiet
|
|
echo dotnet restore --force-evaluate --source https://api.nuget.org/v3/index.json
|
|
dotnet restore --force-evaluate --source https://api.nuget.org/v3/index.json
|
|
|
|
echo dotnet build -c Release Projects/SerializationGenerator/SerializationGenerator.csproj
|
|
dotnet build -c Release Projects/SerializationGenerator/SerializationGenerator.csproj
|
|
|
|
echo dotnet publish ${config} ${os} --no-restore --self-contained=false -o Distribution/Assemblies Projects/UOContent/UOContent.csproj
|
|
dotnet publish ${config} ${os} --no-restore --self-contained=false -o Distribution/Assemblies Projects/UOContent/UOContent.csproj
|
|
|
|
echo dotnet build -c Release Projects/SerializationSchemaGenerator/SerializationSchemaGenerator.csproj
|
|
dotnet build -c Release Projects/SerializationSchemaGenerator/SerializationSchemaGenerator.csproj
|
|
echo Generating serialization schemas
|
|
dotnet Projects/SerializationSchemaGenerator/Output/SerializationSchemaGenerator.dll ModernUO.sln
|
|
|
|
exit $?
|
|
|
|
:CMDSCRIPT
|
|
|
|
IF "%~1" == "" (
|
|
SET config=-c Release
|
|
) ELSE (
|
|
IF "%~1" == "release" (
|
|
SET config=-c Release
|
|
) ELSE (
|
|
SET config=-c Debug
|
|
)
|
|
)
|
|
|
|
IF "%~2" == "" (
|
|
SET os=-r win-x64
|
|
) ELSE (
|
|
SET os=-r %~2-x64
|
|
)
|
|
|
|
echo dotnet clean --verbosity quiet
|
|
dotnet clean --verbosity quiet
|
|
echo dotnet restore --force-evaluate --source https://api.nuget.org/v3/index.json
|
|
dotnet restore --force-evaluate --source https://api.nuget.org/v3/index.json
|
|
|
|
echo dotnet build -c Release Projects/SerializationGenerator/SerializationGenerator.csproj
|
|
dotnet build -c Release Projects/SerializationGenerator/SerializationGenerator.csproj
|
|
|
|
echo dotnet publish %config% %os% --no-restore --self-contained=false -o Distribution\Assemblies Projects\UOContent\UOContent.csproj
|
|
dotnet publish %config% %os% --no-restore --self-contained=false -o Distribution\Assemblies Projects\UOContent\UOContent.csproj
|
|
|
|
echo dotnet build -c Release Projects/SerializationSchemaGenerator/SerializationSchemaGenerator.csproj
|
|
dotnet build -c Release Projects/SerializationSchemaGenerator/SerializationSchemaGenerator.csproj
|
|
echo Generating serialization schemas
|
|
dotnet Projects/SerializationSchemaGenerator/Output/SerializationSchemaGenerator.dll ModernUO.sln
|