-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add db only install, add support for wizard args, add 4.1.0 migration
- Loading branch information
1 parent
a031137
commit 7d51817
Showing
26 changed files
with
302 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
using Xperience.Manager.Commands; | ||
|
||
namespace Xperience.Manager.Options | ||
{ | ||
/// <summary> | ||
/// The options used to install Xperience by Kentico project files, used by <see cref="InstallCommand"/>. | ||
/// </summary> | ||
public class InstallProjectOptions : IWizardOptions | ||
{ | ||
/// <summary> | ||
/// The version of the Xperience by Kentico templates and database to install. | ||
/// </summary> | ||
public Version? Version { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// The name of the template to install. | ||
/// </summary> | ||
public string Template { get; set; } = "kentico-xperience-sample-mvc"; | ||
|
||
|
||
/// <summary> | ||
/// The name of the Xperience by Kentico project. | ||
/// </summary> | ||
public string ProjectName { get; set; } = "xbk"; | ||
|
||
|
||
/// <summary> | ||
/// The absolute path of the parent directory to install the project within. E.g. if set to | ||
/// "C:\inetpub\wwwroot" a new installation will be created in "C:\inetpub\wwwroot\projectname." | ||
/// </summary> | ||
public string InstallRootPath { get; set; } = Environment.CurrentDirectory; | ||
|
||
|
||
/// <summary> | ||
/// If <c>true</c>, the "--cloud" parameter is used during installation. | ||
/// </summary> | ||
public bool UseCloud { get; set; } = false; | ||
} | ||
} |
Oops, something went wrong.