From 04909828c85c78f255c6bddcf156274641ce112d Mon Sep 17 00:00:00 2001 From: Kamron Batman <3953314+kamronbatman@users.noreply.github.com> Date: Fri, 18 Feb 2022 11:00:10 -0800 Subject: [PATCH] fix: Fixes argument for schema generation in publish command (#935) --- publish.cmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/publish.cmd b/publish.cmd index ffe8c6039..15daf9977 100755 --- a/publish.cmd +++ b/publish.cmd @@ -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