Advanced Installation TopicsInstall Sana Commerce SDK

Install Sana Commerce SDK

Sana Commerce 9.2
Your connector

Create Sana 9.2.0 Installer

 NOTE

Applies to: Sana Commerce SDK 9.2.0

In this chapter you will learn how to create the Sana Installer from a customized SDK project.

Step 1: Open the "SDK build package.proj" file in any text editor from the Sana Commerce SDK directory: SDK > Installer.

Step 2: Locate the <PropertyGroup> section:

<PropertyGroup>
 <Configuration>Debug</Configuration>
 <OutputFolder>.\_Package</OutputFolder>
 <ConfigurationFolder>.\Sources</ConfigurationFolder>
 <ReadyToDeployFolder>..\..\SDK</ReadyToDeployFolder>
 <GeneralSolutionFile>..\Sana Commerce SDK.sln</GeneralSolutionFile>
 <ConsoleInstallerOutput>ConsoleInstaller</ConsoleInstallerOutput>
 <WinFormInstallerOutput>WinFormInstaller</WinFormInstallerOutput>
 <FrontEndFolderName>Sana.Commerce.Startersite</FrontEndFolderName>
 <WebServiceFolderName>Sana.Commerce.WebService</WebServiceFolderName>
 <FrontEndOutput>Frontend</FrontEndOutput>
 <WebServiceOutput>WebService</WebServiceOutput>
 <SqlServerInstance>.\SQLEXPRESS</SqlServerInstance>
 <DatabaseName>SanaStore</DatabaseName>
 <DatabaseAdminLogin></DatabaseAdminLogin>
 <DatabaseAdminPassword></DatabaseAdminPassword>
</PropertyGroup>

Step 3: Check the following configuration nodes and modify their values if needed:

Configuration node Description
OutputFolder The path to the folder where the installation package will be created.
ReadyToDeployFolder The path to the SDK directory.
GeneralSolutionFile The path to the SDK solution file.
SqlServerInstance The name of the SQL server database backup instance.
DatabaseName The name of the SQL database backup.
DatabaseAdminLogin The administrator credentials of the SQL database.
If empty the Windows Authentication will be used.
DatabaseAdminPassword

Step 4: Run the "SDK build package.bat" from the SDK directory: SDK > Installer.

The installation package will be created in the folder which is specified in the <OutputFolder> node of the "SDK build package.proj" file.

 NOTE

The created installation package contains the database.

When the installation package from a customized SDK project is created, the Sana Commerce solution can be installed.

In the "Installation" section you can read how to install the Sana Commerce solution.

Advanced Installation TopicsInstall Sana Commerce SDK