Fix pipeline errors for V11 (#13208)

* Correct exec parameter list for json schema generation during build

* Update OpenAPI schema
This commit is contained in:
Kenn Jacobsen
2022-10-14 08:37:14 +02:00
committed by GitHub
parent 8e3e4d7ba6
commit 9ce83e8f55
2 changed files with 1694 additions and 977 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -28,6 +28,6 @@
</PropertyGroup>
<Target Name="GenerateAppsettingsSchema" BeforeTargets="Build;CopyAppsettingsSchema" Condition="!Exists('$(JsonSchemaPath)') or !Exists('$(JsonSchemaCmsPath)')">
<Message Text="Generating appsettings-schema.json and appsettings-schema.Umbraco.Cms.json because it doesn't exist" Importance="high" />
<Exec WorkingDirectory="$(JsonSchemaProjectPath)" Command="dotnet run -c Release --mainOutputFile &quot;$(JsonSchemaPath)&quot; --cmsOutputFile &quot;$(JsonSchemaCmsPath)&quot;" />
<Exec WorkingDirectory="$(JsonSchemaProjectPath)" Command="dotnet run -c Release -- --mainOutputFile &quot;$(JsonSchemaPath)&quot; --cmsOutputFile &quot;$(JsonSchemaCmsPath)&quot;" />
</Target>
</Project>