Reputation: 33
I am publishing the .net code to Azure web app using the build service in Visual Studio Team Services (was Visual Studio Online). I want to add License file to the wwwroot folder in Azure web app after the deployment. Please let me know how can i do this automatically after the deployment in Team Services?
Upvotes: 0
Views: 227
Reputation: 29958
You can use curl to upload the file to your Azure WebSite via following steps:
The file will be uploaded to your Azure Web App wwwroot folder.
Upvotes: 1