Skip to content

Commit 1af09c7

Browse files
authored
Updates Forms and adds Deploy JSON schema. (#11739)
1 parent 76cf503 commit 1af09c7

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

src/JsonSchema/AppSettings.cs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
// Copyright (c) Umbraco.
1+
// Copyright (c) Umbraco.
22
// See LICENSE for more details.
33

44
using Umbraco.Cms.Core.Configuration.Models;
5+
using Umbraco.Deploy.Core.Configuration.DeployConfiguration;
6+
using Umbraco.Deploy.Core.Configuration.DeployProjectConfiguration;
57
using Umbraco.Forms.Core.Configuration;
68
using SecuritySettings = Umbraco.Cms.Core.Configuration.Models.SecuritySettings;
79

@@ -82,6 +84,7 @@ public class CmsDefinition
8284
public BasicAuthSettings BasicAuth { get; set; }
8385

8486
public PackageMigrationSettings PackageMigration { get; set; }
87+
8588
public LegacyPasswordMigrationSettings LegacyPasswordMigration { get; set; }
8689
}
8790

@@ -116,6 +119,9 @@ public class FieldTypesDefinition
116119
/// </summary>
117120
public class DeployDefinition
118121
{
122+
public DeploySettings Settings { get; set; }
123+
124+
public DeployProjectConfig Project { get; set; }
119125
}
120126
}
121127
}

src/JsonSchema/JsonSchema.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
<PackageReference Include="CommandLineParser" Version="2.8.0" />
1111
<PackageReference Include="NJsonSchema" Version="10.5.2" />
1212
<PackageReference Include="System.Xml.XPath.XmlDocument" Version="4.3.0" />
13-
<PackageReference Include="Umbraco.Forms.Core" Version="9.0.1" />
13+
<PackageReference Include="Umbraco.Deploy.Core" Version="9.2.0" />
14+
<PackageReference Include="Umbraco.Forms.Core" Version="9.2.0" />
1415
</ItemGroup>
1516

1617
<ItemGroup>

0 commit comments

Comments
 (0)