fix: Fixes argument for schema generation in publish command (#935)

This commit is contained in:
Kamron Batman 2022-02-18 11:00:10 -08:00 committed by GitHub
parent 36d07dd34d
commit 04909828c8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,7 +39,7 @@ echo dotnet publish ${config} ${os} --no-restore --self-contained=false -o Distr
dotnet publish ${config} ${os} --no-restore --self-contained=false -o Distribution/Assemblies Projects/UOContent/UOContent.csproj
echo Generating serialization migration schema...
dotnet tool run ModernUOSchemaGenerator ModernUO.sln
dotnet tool run ModernUOSchemaGenerator -- ModernUO.sln
exit $?
@ -73,4 +73,4 @@ echo dotnet publish %config% %os% --no-restore --self-contained=false -o Distrib
dotnet publish %config% %os% --no-restore --self-contained=false -o Distribution\Assemblies Projects\UOContent\UOContent.csproj
echo Generating serialization migration schema...
dotnet tool run ModernUOSchemaGenerator ModernUO.sln
dotnet tool run ModernUOSchemaGenerator -- ModernUO.sln