Skip to content

Commit

Permalink
Increase CLI version.
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianStehle committed Mar 27, 2022
1 parent fe65c16 commit b664456
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cli/Squidex.CLI/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/Squidex/squidex/</PackageProjectUrl>
<PackageTags>Squidex HeadlessCMS</PackageTags>
<Version>8.6</Version>
<Version>8.7</Version>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// ==========================================================================
// Squidex Headless CMS
// ==========================================================================
// Copyright (c) Squidex UG (haftungsbeschraenkt)
// All rights reserved. Licensed under the MIT license.
// ==========================================================================

namespace Squidex.CLI.Commands.Implementation.Sync.App
{
public sealed class AssetScriptsModel
{
public string? Create { get; set; }

public string? Update { get; set; }

public string? Annotate { get; set; }

public string? Move { get; set; }

public string? Delete { get; set; }
}
}

0 comments on commit b664456

Please sign in to comment.