Updates Forms and adds Deploy JSON schema. (#11739)

This commit is contained in:
Andy Butland
2021-12-21 15:19:55 +01:00
committed by GitHub
parent 76cf5037e5
commit 1af09c7f13
2 changed files with 9 additions and 2 deletions

View File

@@ -1,7 +1,9 @@
// Copyright (c) Umbraco.
// Copyright (c) Umbraco.
// See LICENSE for more details.
using Umbraco.Cms.Core.Configuration.Models;
using Umbraco.Deploy.Core.Configuration.DeployConfiguration;
using Umbraco.Deploy.Core.Configuration.DeployProjectConfiguration;
using Umbraco.Forms.Core.Configuration;
using SecuritySettings = Umbraco.Cms.Core.Configuration.Models.SecuritySettings;
@@ -82,6 +84,7 @@ namespace JsonSchema
public BasicAuthSettings BasicAuth { get; set; }
public PackageMigrationSettings PackageMigration { get; set; }
public LegacyPasswordMigrationSettings LegacyPasswordMigration { get; set; }
}
@@ -116,6 +119,9 @@ namespace JsonSchema
/// </summary>
public class DeployDefinition
{
public DeploySettings Settings { get; set; }
public DeployProjectConfig Project { get; set; }
}
}
}

View File

@@ -10,7 +10,8 @@
<PackageReference Include="CommandLineParser" Version="2.8.0" />
<PackageReference Include="NJsonSchema" Version="10.5.2" />
<PackageReference Include="System.Xml.XPath.XmlDocument" Version="4.3.0" />
<PackageReference Include="Umbraco.Forms.Core" Version="9.0.1" />
<PackageReference Include="Umbraco.Deploy.Core" Version="9.2.0" />
<PackageReference Include="Umbraco.Forms.Core" Version="9.2.0" />
</ItemGroup>
<ItemGroup>