Step 1: Select the Deployment Type

A variety of deployment options are available via the Deployment Wizard.

Option

Description

Deployment folder

Creates a deployment project folder for your application.  A single application DLL will be created and only the necessary .aspx, .ascx, binary, image, and other content files will be included.  Prior to the .NET Framework 4.5, the folder  "deploy\Release",  in the deployment project folder can be copied to your production server for deployment. Starting with the .NET Framework 4.5, deployment is handled by Publishing A Deployment Package, which contains the deployment folder.

Note: Requires Microsoft Visual Studio.

MSI installer

Creates a Windows Installer (.msi) file for your application.  Only the necessary .aspx, .ascx, binary, image, and other content files will be included. This option also creates a deployment folder as specified in the previous option. This is by far the easiest and best way to deploy your application.  We highly recommend it!  Starting with .NET Framework 4.5, Microsoft has changed deployment methods and eliminated the MSI installer in favor of publishing a deployment package.

MSI installers are self-contained “executables” that are stand-alone installation programs.  They do not require you to copy any files or deploy any stored procedures; the MSI installer, when run, performs all file installation.  The MSI installer created by Iron Speed Designer bundles everything into an MSI file that can be installed anywhere.  The MSI installer contains all necessary application files except your database.

Note: Requires Microsoft Visual Studio.

See MSI Installer Deployment for additional details.

SharePoint Solution Package (WSP)

Creates a deployment project folder for your application.  A single application WSP is created which can be deployed to your SharePoint server.  A solution package is a CAB file with a .wsp file name extension that contains all the files that must be deployed on the front-end Web server and a set of XML-based installation instructions.  Windows SharePoint Services provides a rich infrastructure that simplifies deployment of solution packages in a Web farm environment.

See SharePoint Solution Package (WSP) Deployment for additional details.

Publish to network server

Creates a deployment project folder for your application.  Your application is then copied to a specified location on your network.

Publish to cloud

Creates a deployment project folder for your application.  Your application is then copied via FTP (file transfer protocol) to a specified server location.

Android Application

Creates an Android application and Android application package (.apk). The Android application is a native application that will open the device’s browser to the application’s mobile start page. It creates the application and Android application package in the folder specified in the Deployment Wizard folder step. See: Generating An Android Application.

Apple iOS Application

Creates a native iOS application package which can be distributed using Apple application store and installed on any iOS powered device. Such application will open a browser to navigate to the specified URL. Typically you would host your Iron Speed Designer generated web application at this URL. This application package needs to be build, run and deploy using Xcode IDE (Integrated Development Environment) on an Apple computer. See: Generating An iOS Application

See Also

Deploying Applications with the Deployment Wizard