azure-deployment

Azure Package Not including linked project dll even with copy local set

☆樱花仙子☆ 提交于 2019-11-29 06:21:28
问题 I have an Azure solution with 4 projects in it. (VS2012 on Windows 8, Azure Tools 1.8) Core project with common code Web Role Front End Service Role for servicing data (from SQL Azure DB) Worker Role for scheduled tasks All role projects have a reference to the core project with copy local = true... standard stuff. The web role and the worker role work fine, but my service role keeps getting stuck in the Initializing - Starting - Recycling loop. When I browse to the service I get the 'Could

ENOTSUP using Grunt

限于喜欢 提交于 2019-11-28 08:26:41
问题 I'm using Grunt to minify and concatenate files for an AngularJS web application. Our source is on a file share and I'm connecting to it via a mapped drive. Whenever Grunt runs over my source directory, I get an error on one of my concat tasks. The error is "ENOTSUP, operation not supported on socket". If I copy the source, local, Grunt runs, fine. For the sake of our source control, I need Grunt to watch and run over the mapped drive. The concat task uses grunt-contrib-concat. I've tried

Deploy Angular 2 with Azure Webapp

亡梦爱人 提交于 2019-11-27 19:09:41
How can can I deploy an angular 2 webapp to azure? I guess I need some type of final compilation script. Thanks in advance. Amir Sasson In order to run angular2 app in azure follow these steps: create a new ng app (with ng cli) : ng new testApp and push to some github repo . create Azure deployment files for Kudu : npm install azure-cli -g azure site deploymentscript --node this will create 2 files .deployment and deploy.cmd edit the deploy.cmd remove the --production from the line :: 3. Install npm packages so that all dependencies will be installed (including ng cli) add under the section of