Packages

package windows

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. case class AddDirectoryToPath(dir: String = "") extends FeatureComponent with Product with Serializable

    Will add the directory to the windows path.

    Will add the directory to the windows path. NOTE: Only one of these per MSI.

  2. case class AddShortCuts(target: Seq[String], workingDir: String = "INSTALLDIR") extends FeatureComponent with Product with Serializable
  3. case class ComponentFile(source: String, editable: Boolean = false) extends FeatureComponent with Product with Serializable

    Adds a file into a given windows feature.

  4. sealed trait FeatureComponent extends AnyRef
  5. case class NamespaceDefinitions(majorVersionNumber: Int, namespace: String, utilExtension: String) extends Product with Serializable

    Define wix namespace definitions, that depend on the major version of Wix tools *

  6. case class WindowsFeature(id: String, title: String, desc: String, absent: String = "allow", level: String = "1", display: String = "collapse", components: Seq[FeatureComponent] = Seq.empty) extends FeatureComponent with Product with Serializable

    Define a new feature, that will be selectable in the default MSI.

  7. trait WindowsKeys extends AnyRef

    windows settings

  8. case class WindowsProductInfo(id: String, title: String, version: String, maintainer: String, description: String, upgradeId: String, comments: String = "", installScope: String = "perMachine", installerVersion: String = "200", compressed: Boolean = true) extends Product with Serializable

Value Members

  1. object NameHelper
  2. object WindowsDeployPlugin extends AutoPlugin
  3. object WindowsPlugin extends AutoPlugin

    This plugin generates msi packages that can be installed on windows systems.

    Windows Plugin

    This plugin generates msi packages that can be installed on windows systems.

    Configuration

    In order to configure this plugin take a look at the available com.typesafe.sbt.packager.windows.WindowsKeys

    Requirements

    Example:
    1. Enable the plugin in the build.sbt

      enablePlugins(WindowsPlugin)
  4. object WixHelper

    Helper functions to deal with Wix/CAB craziness.

Ungrouped