Need to write the script for deploying of web site to shared directory. But for access to this directory needs enter login/password. How can i do it?
The part of MSBuild config:
<PropertyGroup Condition="'$(SERVER)'=='DEV'">
<DeploymentFolder>\\server\dir$</DeploymentFolder>
<CopyConfig>dev.web.config</CopyConfig>
<ZipFile>webSite.zip</ZipFile>
</PropertyGroup>
Where and how i can specify login and password which allow TeamCity deploy web site to selected directory?
P.S. i cant run TeamCity with same access rights that should used in deploying.