NAnt
Help
Task Reference
<vssadd> |
NAnt.Contrib.Tasks () |
Used to add files to a Visual SourceSafe database. If the file is currently in the SourceSafe database a message will be logged but files will continue to be added.
This version does not support recursive adds. Only adds in the root directory will be added to the SourceSafe database.| Attribute | Type | Description | Required |
|---|---|---|---|
| comment | string | Places a comment on all files added into the SourceSafe repository. Not Required. | False |
| dbpath | string | The absolute path to the folder that contains the srcsafe.ini. Required. | True |
| path | string | The source safe project or file path, starting with "$/". Required. | True |
| user | string | The user id to use to login to the Source Safe database. Required. | True |
| failonerror | bool | False | |
| if | bool | False | |
| password | string | The password to use to login to the Source Safe database. | False |
| unless | bool | False | |
| verbose | bool | False | |
| version | string | A version of the path to reference. Accepts multiple forms, including the label, version number, or date of the version. If omitted, the latest version is used. | False |
<vssadd dbpath="C:\SourceSafeFolder\srcsafe.ini" user="user1" password="" path="$/Somefolder">
<fileset basedir="C:\SourceFolder\">
<includes name="*.dll"/>
</fileset>
</vssadd>