I am using the msbuild script command line to publish a C # web project from the city command to a live server.
After struggling with IIS perimisions, etc. everything works well...
.... except that the font files are not copied to the correct directory (they get to the bin directory)
/t:rebuild /p:Configuration=Deploy /p:OutputPath=bin /p:DeployOnBuild=True /p:DeployTarget=MSDeployPublish /p:MsDeployServiceUrl=https://<server>/MsDeploy.axd /p:username=<username> /p:password=<password> /p:AllowUntrustedCertificate=True /p:DeployIisAppPath=<sitename> /p:MSDeployPublishMethod=WMSVC
Any suggestions like wo, what can I do to get the files to go to the right directory?
source share