NAnt
![]() ![]() ![]() |
v0.85 |
[This is preliminary documentation and subject to change.]
Installs or removes .NET Services.
This tasks provides the same functionality as the regsvcs
tool provided in the .NET SDK.
It performs the following actions:
Refer to the .NET Services Installation Tool (Regsvcs.exe) for more information.
Attribute | Type | Description | Required |
---|---|---|---|
assembly | file | The source assembly file. | True |
action | ActionType | Defines the action to take with the assembly. The default is FindOrCreate . |
False |
application | string | Specifies the name of the COM+ application to either find or create. | False |
componentsonly | bool | Configures components only; ignores methods and interfaces. The default is false. | False |
existingapp | bool | Expect an existing application. The default is false. | False |
existingtlb | bool | Uses an existing type library. The default is false. | False |
noreconfig | bool | Do not reconfigure an existing target application. The default is false. | False |
partition | string | Specifies the name or id of the COM+ application to either find or create. | False |
tlb | file | Specifies the type library file to install. | False |
failonerror | bool | Determines if task failure stops the build, or is just reported. The default is true. | False |
if | bool | If true then the task will be executed; otherwise, skipped. The default is true. | False |
timeout | int | The maximum amount of time the application is allowed to execute, expressed in milliseconds. Defaults to no time-out. | False |
unless | bool | Opposite of if . If false then the task will be executed; otherwise, skipped. The default is false. |
False |
verbose | bool | Determines whether the task should report detailed build log messages. The default is false. | False |
Attribute | Type | Description | Required |
---|---|---|---|
exename | string | The name of the executable that should be used to launch the external program. | False |
useruntimeengine | bool | Specifies whether the external program should be executed using a runtime engine, if configured. The default is false. | False |
Contains a collection of <arg> elements.
Adds all public classes contained in myTest.dll
to a COM+ application and produces the myTest.tlb
type library. If the application already exists, it is overwritten.
<regsvcs action="FindOrCreate" assembly="myTest.dll" />
Adds all public classes contained in myTest.dll
to myTargetApp
and produces the myTest.tlb
type library. If the application already exists, it is overwritten.
<regsvcs action="FindOrCreate" assembly="myTest.dll" application="myTargetApp" />
Adds all public classes contained in myTest.dll
to a COM+ application and produces the myTest.tlb
type library. A new application is always created.
<regsvcs action="Create" assembly="myTest.dll" />
Uninstalls the COM+ application contained in myTest.dll
<regsvcs action="Uninstall" assembly="myTest.dll" />