C# 클래스 WixSharp.ExeFileShortcut

Defines ExeFileShortcut to be installed.

ExeFileShortcut is a specialized version of the Shortcut designed for using Shortcut as a Dir nested element

There are different ways of defining shortcuts of the Wix# project:

- It can be specified as a nested element of the File. In this case after the installation the shortcut will point to the file it belongs to.

- Alternatively the Shortcut can be specified as a Dir nested element. In this case after the installation the shortcut will point to the file it belongs to.

상속: Shortcut
파일 보기 프로젝트 열기: Eun/WixSharp

공개 메소드들

메소드 설명
ExeFileShortcut ( )

Initializes a new instance of the ExeFileShortcut class.

ExeFileShortcut ( Feature feature, string name, string target, string arguments )

Initializes a new instance of the ExeFileShortcut class with properties/fields initialized with specified parameters.

This constructor should be used to instantiate shortcuts which belong to the Dir element.

The shortcut will be installed in the directory defined by the parent Dir element.

ExeFileShortcut ( Id id, Feature feature, string name, string target, string arguments )

Initializes a new instance of the ExeFileShortcut class with properties/fields initialized with specified parameters.

This constructor should be used to instantiate shortcuts which belong to the Dir element.

The shortcut will be installed in the directory defined by the parent Dir element

ExeFileShortcut ( Id id, string name, string target, string arguments )

Initializes a new instance of the ExeFileShortcut class with properties/fields initialized with specified parameters.

This constructor should be used to instantiate shortcuts which belong to the Dir element.

The shortcut will be installed in the directory defined by the parent Dir element.

ExeFileShortcut ( string name, string target, string arguments )

Initializes a new instance of the ExeFileShortcut class with properties/fields initialized with specified parameters.

This constructor should be used to instantiate shortcuts which belong to the Dir element.

The shortcut will be installed in the directory defined by the parent Dir element.

메소드 상세

ExeFileShortcut() 공개 메소드

Initializes a new instance of the ExeFileShortcut class.
public ExeFileShortcut ( )

ExeFileShortcut() 공개 메소드

Initializes a new instance of the ExeFileShortcut class with properties/fields initialized with specified parameters.

This constructor should be used to instantiate shortcuts which belong to the Dir element.

The shortcut will be installed in the directory defined by the parent Dir element.

public ExeFileShortcut ( Feature feature, string name, string target, string arguments )
feature Feature the shortcut should be included in.
name string The name of the shortcut to be installed.
target string The path to the executable the shortcut is associated with.
arguments string The shortcut arguments.

ExeFileShortcut() 공개 메소드

Initializes a new instance of the ExeFileShortcut class with properties/fields initialized with specified parameters.

This constructor should be used to instantiate shortcuts which belong to the Dir element.

The shortcut will be installed in the directory defined by the parent Dir element

public ExeFileShortcut ( Id id, Feature feature, string name, string target, string arguments )
id Id The explicit to be associated with instance.
feature Feature the shortcut should be included in.
name string The name of the shortcut to be installed.
target string The path to the executable the shortcut is associated with.
arguments string The shortcut arguments.

ExeFileShortcut() 공개 메소드

Initializes a new instance of the ExeFileShortcut class with properties/fields initialized with specified parameters.

This constructor should be used to instantiate shortcuts which belong to the Dir element.

The shortcut will be installed in the directory defined by the parent Dir element.

public ExeFileShortcut ( Id id, string name, string target, string arguments )
id Id The explicit to be associated with instance.
name string The name of the shortcut to be installed.
target string The path to the executable the shortcut is associated with.
arguments string The shortcut arguments.

ExeFileShortcut() 공개 메소드

Initializes a new instance of the ExeFileShortcut class with properties/fields initialized with specified parameters.

This constructor should be used to instantiate shortcuts which belong to the Dir element.

The shortcut will be installed in the directory defined by the parent Dir element.

public ExeFileShortcut ( string name, string target, string arguments )
name string The name of the shortcut to be installed.
target string The path to the executable the shortcut is associated with.
arguments string The shortcut arguments.