This question was dancing a bit, forgive me if this is a duplicate, but I could not find the exact answer.
I am trying to create a Parameters.xml deployment configuration that specifies the folder of the physical destination file for the website. This is for automatic build using TeamCity, for example. using the .deploy.cmd command.
Can someone explain what I need to do?
Parameters.xml:
<parameter name="physicalPathLocation" description="Physical path where files for this Web service will be deployed." defaultValue="\" tags="PhysicalPath"> <parameterEntry kind="DestinationVirtualDirectory" scope="Default\ Web\ Site/iag\.application\.services\.exampleservice/" match="" /> </parameter>
And in SetParameters.xml
<setParameter name="physicalPathLocation" value="C:\MyFolder\MySite" />
I suspect my problem is how I declare the scope, but not sure what needs to be done.
source share