How to deploy non VS projects to iis web deploy?2019 Community Moderator ElectionBamboo - Angular 4 app How to deployWeb Deploy API - deploy a .NET 4.5 applicationWeb Deploy from Visual Studio 2012 to a remote IIS 8 serverWeb deploy to IIS without Visual StudioDeploying to FTP/Web Deploy In Visual Studio 2015Why would IPv6 interfere with a Web Deploy?Web Deploy Handler 404 errorWhat is the best way for Deploying the application files to Web Server using TFSJenkins msbuild deploy to remote IISBamboo - Angular 4 app How to deployHow to use publish command with Web Deploy for asp.net core applications

Can Witch Sight see through Mirror Image?

What is better: yes / no radio, or simple checkbox?

Why would /etc/passwd be used every time someone executes `ls -l` command?

How to make sure I'm assertive enough in contact with subordinates?

Use Mercury as quenching liquid for swords?

Precision notation for voltmeters

Is "cogitate" used appropriately in "I cogitate that success relies on hard work"?

Why restrict private health insurance?

How to distinguish easily different soldier of ww2?

Can I challenge the interviewer to give me a proper technical feedback?

Does the US political system, in principle, allow for a no-party system?

Do I need a return ticket to Canada if I'm a Japanese National?

How do you make a gun that shoots melee weapons and/or swords?

Tabular environment - text vertically positions itself by bottom of tikz picture in adjacent cell

Will the concrete slab in a partially heated shed conduct a lot of heat to the unconditioned area?

What is the orbit and expected lifetime of Crew Dragon trunk?

Vector-transposing function

Can I negotiate a patent idea for a raise, under French law?

Why do phishing e-mails use faked e-mail addresses instead of the real one?

Why isn't P and P/poly trivially the same?

Ultrafilters as a double dual

Rationale to prefer local variables over instance variables?

Averaging over columns while ignoring zero entries

How spaceships determine each other's mass in space?



How to deploy non VS projects to iis web deploy?



2019 Community Moderator ElectionBamboo - Angular 4 app How to deployWeb Deploy API - deploy a .NET 4.5 applicationWeb Deploy from Visual Studio 2012 to a remote IIS 8 serverWeb deploy to IIS without Visual StudioDeploying to FTP/Web Deploy In Visual Studio 2015Why would IPv6 interfere with a Web Deploy?Web Deploy Handler 404 errorWhat is the best way for Deploying the application files to Web Server using TFSJenkins msbuild deploy to remote IISBamboo - Angular 4 app How to deployHow to use publish command with Web Deploy for asp.net core applications










0















I have an Angular application and hosted in IIS. I want to deploy this application using Web Deploy.



I know VS solutions (.sln) could be deployed using MSBUILD and Publish Profiles.



How to deploy non VS, static applications using web deploy?



I'm looking for an option to deploy from a Bamboo build server to a remote IIS target.










share|improve this question
























  • Set it up directly on an IIS machine, and sync to others, docs.microsoft.com/en-us/iis/publish/using-web-deploy/…

    – Lex Li
    2 days ago











  • I'm trying for a build server @LexLi It's remote deployment.

    – Purushoth
    yesterday















0















I have an Angular application and hosted in IIS. I want to deploy this application using Web Deploy.



I know VS solutions (.sln) could be deployed using MSBUILD and Publish Profiles.



How to deploy non VS, static applications using web deploy?



I'm looking for an option to deploy from a Bamboo build server to a remote IIS target.










share|improve this question
























  • Set it up directly on an IIS machine, and sync to others, docs.microsoft.com/en-us/iis/publish/using-web-deploy/…

    – Lex Li
    2 days ago











  • I'm trying for a build server @LexLi It's remote deployment.

    – Purushoth
    yesterday













0












0








0








I have an Angular application and hosted in IIS. I want to deploy this application using Web Deploy.



I know VS solutions (.sln) could be deployed using MSBUILD and Publish Profiles.



How to deploy non VS, static applications using web deploy?



I'm looking for an option to deploy from a Bamboo build server to a remote IIS target.










share|improve this question
















I have an Angular application and hosted in IIS. I want to deploy this application using Web Deploy.



I know VS solutions (.sln) could be deployed using MSBUILD and Publish Profiles.



How to deploy non VS, static applications using web deploy?



I'm looking for an option to deploy from a Bamboo build server to a remote IIS target.







angular iis bamboo microsoft-web-deploy webdeploy-3.5






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited yesterday







Purushoth

















asked 2 days ago









PurushothPurushoth

1,16111432




1,16111432












  • Set it up directly on an IIS machine, and sync to others, docs.microsoft.com/en-us/iis/publish/using-web-deploy/…

    – Lex Li
    2 days ago











  • I'm trying for a build server @LexLi It's remote deployment.

    – Purushoth
    yesterday

















  • Set it up directly on an IIS machine, and sync to others, docs.microsoft.com/en-us/iis/publish/using-web-deploy/…

    – Lex Li
    2 days ago











  • I'm trying for a build server @LexLi It's remote deployment.

    – Purushoth
    yesterday
















Set it up directly on an IIS machine, and sync to others, docs.microsoft.com/en-us/iis/publish/using-web-deploy/…

– Lex Li
2 days ago





Set it up directly on an IIS machine, and sync to others, docs.microsoft.com/en-us/iis/publish/using-web-deploy/…

– Lex Li
2 days ago













I'm trying for a build server @LexLi It's remote deployment.

– Purushoth
yesterday





I'm trying for a build server @LexLi It's remote deployment.

– Purushoth
yesterday












1 Answer
1






active

oldest

votes


















0














As Lex Li says, if you want to publish a hosted angualr application to another IIS by using web deploy, you could use web deploy sync method.



If you just want to sync 2 folders directly root-to-root, you could try below command:



Notice:The webdeploy tool normally is inside the C:Program Files (x86)IIS folder, you need firstly locate it.



>msdeploy -verb:sync -source:dirPath="D:my-appdist" -dest:dirPath="D:AnTest"


enter image description here



If you want to include IIS configuration on the destination, you should use iisApp provider instead of dirPath:



>msdeploy -verb:sync -source:iisApp=<SourceFolderOrIISPath> -dest:iisApp=<DestinationFolderOrIISPath>





share|improve this answer























  • I want to deploy it from Bamboo. It's a remote deployment. For visual studio projects I can use MSBUILD publish. Here using ng build I have output that I need to transfer to remote IIS.

    – Purushoth
    yesterday











  • Yes, for asp.net application, the it could use msbuild to publish easily.Microsoft has wirte the logic to build and deploy it. But for angular application, use ngbuild and xcopy is the most easily way to publish the application. I suggest you could refer to this answer to know how deploy the angular application from bamboo to remote server.

    – Brando Zhang
    yesterday











  • Thanks @Brand I could do a build and have all the files to be transferred. But Bamboo supports AWS code deploy or Tomcat directly for deployment. For IIS there no support for non .net projects. I did check the answer which is specific to Apache Tomcat.

    – Purushoth
    yesterday










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55023524%2fhow-to-deploy-non-vs-projects-to-iis-web-deploy%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














As Lex Li says, if you want to publish a hosted angualr application to another IIS by using web deploy, you could use web deploy sync method.



If you just want to sync 2 folders directly root-to-root, you could try below command:



Notice:The webdeploy tool normally is inside the C:Program Files (x86)IIS folder, you need firstly locate it.



>msdeploy -verb:sync -source:dirPath="D:my-appdist" -dest:dirPath="D:AnTest"


enter image description here



If you want to include IIS configuration on the destination, you should use iisApp provider instead of dirPath:



>msdeploy -verb:sync -source:iisApp=<SourceFolderOrIISPath> -dest:iisApp=<DestinationFolderOrIISPath>





share|improve this answer























  • I want to deploy it from Bamboo. It's a remote deployment. For visual studio projects I can use MSBUILD publish. Here using ng build I have output that I need to transfer to remote IIS.

    – Purushoth
    yesterday











  • Yes, for asp.net application, the it could use msbuild to publish easily.Microsoft has wirte the logic to build and deploy it. But for angular application, use ngbuild and xcopy is the most easily way to publish the application. I suggest you could refer to this answer to know how deploy the angular application from bamboo to remote server.

    – Brando Zhang
    yesterday











  • Thanks @Brand I could do a build and have all the files to be transferred. But Bamboo supports AWS code deploy or Tomcat directly for deployment. For IIS there no support for non .net projects. I did check the answer which is specific to Apache Tomcat.

    – Purushoth
    yesterday















0














As Lex Li says, if you want to publish a hosted angualr application to another IIS by using web deploy, you could use web deploy sync method.



If you just want to sync 2 folders directly root-to-root, you could try below command:



Notice:The webdeploy tool normally is inside the C:Program Files (x86)IIS folder, you need firstly locate it.



>msdeploy -verb:sync -source:dirPath="D:my-appdist" -dest:dirPath="D:AnTest"


enter image description here



If you want to include IIS configuration on the destination, you should use iisApp provider instead of dirPath:



>msdeploy -verb:sync -source:iisApp=<SourceFolderOrIISPath> -dest:iisApp=<DestinationFolderOrIISPath>





share|improve this answer























  • I want to deploy it from Bamboo. It's a remote deployment. For visual studio projects I can use MSBUILD publish. Here using ng build I have output that I need to transfer to remote IIS.

    – Purushoth
    yesterday











  • Yes, for asp.net application, the it could use msbuild to publish easily.Microsoft has wirte the logic to build and deploy it. But for angular application, use ngbuild and xcopy is the most easily way to publish the application. I suggest you could refer to this answer to know how deploy the angular application from bamboo to remote server.

    – Brando Zhang
    yesterday











  • Thanks @Brand I could do a build and have all the files to be transferred. But Bamboo supports AWS code deploy or Tomcat directly for deployment. For IIS there no support for non .net projects. I did check the answer which is specific to Apache Tomcat.

    – Purushoth
    yesterday













0












0








0







As Lex Li says, if you want to publish a hosted angualr application to another IIS by using web deploy, you could use web deploy sync method.



If you just want to sync 2 folders directly root-to-root, you could try below command:



Notice:The webdeploy tool normally is inside the C:Program Files (x86)IIS folder, you need firstly locate it.



>msdeploy -verb:sync -source:dirPath="D:my-appdist" -dest:dirPath="D:AnTest"


enter image description here



If you want to include IIS configuration on the destination, you should use iisApp provider instead of dirPath:



>msdeploy -verb:sync -source:iisApp=<SourceFolderOrIISPath> -dest:iisApp=<DestinationFolderOrIISPath>





share|improve this answer













As Lex Li says, if you want to publish a hosted angualr application to another IIS by using web deploy, you could use web deploy sync method.



If you just want to sync 2 folders directly root-to-root, you could try below command:



Notice:The webdeploy tool normally is inside the C:Program Files (x86)IIS folder, you need firstly locate it.



>msdeploy -verb:sync -source:dirPath="D:my-appdist" -dest:dirPath="D:AnTest"


enter image description here



If you want to include IIS configuration on the destination, you should use iisApp provider instead of dirPath:



>msdeploy -verb:sync -source:iisApp=<SourceFolderOrIISPath> -dest:iisApp=<DestinationFolderOrIISPath>






share|improve this answer












share|improve this answer



share|improve this answer










answered yesterday









Brando ZhangBrando Zhang

6,5672726




6,5672726












  • I want to deploy it from Bamboo. It's a remote deployment. For visual studio projects I can use MSBUILD publish. Here using ng build I have output that I need to transfer to remote IIS.

    – Purushoth
    yesterday











  • Yes, for asp.net application, the it could use msbuild to publish easily.Microsoft has wirte the logic to build and deploy it. But for angular application, use ngbuild and xcopy is the most easily way to publish the application. I suggest you could refer to this answer to know how deploy the angular application from bamboo to remote server.

    – Brando Zhang
    yesterday











  • Thanks @Brand I could do a build and have all the files to be transferred. But Bamboo supports AWS code deploy or Tomcat directly for deployment. For IIS there no support for non .net projects. I did check the answer which is specific to Apache Tomcat.

    – Purushoth
    yesterday

















  • I want to deploy it from Bamboo. It's a remote deployment. For visual studio projects I can use MSBUILD publish. Here using ng build I have output that I need to transfer to remote IIS.

    – Purushoth
    yesterday











  • Yes, for asp.net application, the it could use msbuild to publish easily.Microsoft has wirte the logic to build and deploy it. But for angular application, use ngbuild and xcopy is the most easily way to publish the application. I suggest you could refer to this answer to know how deploy the angular application from bamboo to remote server.

    – Brando Zhang
    yesterday











  • Thanks @Brand I could do a build and have all the files to be transferred. But Bamboo supports AWS code deploy or Tomcat directly for deployment. For IIS there no support for non .net projects. I did check the answer which is specific to Apache Tomcat.

    – Purushoth
    yesterday
















I want to deploy it from Bamboo. It's a remote deployment. For visual studio projects I can use MSBUILD publish. Here using ng build I have output that I need to transfer to remote IIS.

– Purushoth
yesterday





I want to deploy it from Bamboo. It's a remote deployment. For visual studio projects I can use MSBUILD publish. Here using ng build I have output that I need to transfer to remote IIS.

– Purushoth
yesterday













Yes, for asp.net application, the it could use msbuild to publish easily.Microsoft has wirte the logic to build and deploy it. But for angular application, use ngbuild and xcopy is the most easily way to publish the application. I suggest you could refer to this answer to know how deploy the angular application from bamboo to remote server.

– Brando Zhang
yesterday





Yes, for asp.net application, the it could use msbuild to publish easily.Microsoft has wirte the logic to build and deploy it. But for angular application, use ngbuild and xcopy is the most easily way to publish the application. I suggest you could refer to this answer to know how deploy the angular application from bamboo to remote server.

– Brando Zhang
yesterday













Thanks @Brand I could do a build and have all the files to be transferred. But Bamboo supports AWS code deploy or Tomcat directly for deployment. For IIS there no support for non .net projects. I did check the answer which is specific to Apache Tomcat.

– Purushoth
yesterday





Thanks @Brand I could do a build and have all the files to be transferred. But Bamboo supports AWS code deploy or Tomcat directly for deployment. For IIS there no support for non .net projects. I did check the answer which is specific to Apache Tomcat.

– Purushoth
yesterday



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55023524%2fhow-to-deploy-non-vs-projects-to-iis-web-deploy%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Save data to MySQL database using ExtJS and PHP [closed]2019 Community Moderator ElectionHow can I prevent SQL injection in PHP?Which MySQL data type to use for storing boolean valuesPHP: Delete an element from an arrayHow do I connect to a MySQL Database in Python?Should I use the datetime or timestamp data type in MySQL?How to get a list of MySQL user accountsHow Do You Parse and Process HTML/XML in PHP?Reference — What does this symbol mean in PHP?How does PHP 'foreach' actually work?Why shouldn't I use mysql_* functions in PHP?

Compiling GNU Global with universal-ctags support Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!Tags for Emacs: Relationship between etags, ebrowse, cscope, GNU Global and exuberant ctagsVim and Ctags tips and trickscscope or ctags why choose one over the other?scons and ctagsctags cannot open option file “.ctags”Adding tag scopes in universal-ctagsShould I use Universal-ctags?Universal ctags on WindowsHow do I install GNU Global with universal ctags support using Homebrew?Universal ctags with emacsHow to highlight ctags generated by Universal Ctags in Vim?

Add ONERROR event to image from jsp tldHow to add an image to a JPanel?Saving image from PHP URLHTML img scalingCheck if an image is loaded (no errors) with jQueryHow to force an <img> to take up width, even if the image is not loadedHow do I populate hidden form field with a value set in Spring ControllerStyling Raw elements Generated from JSP tagds with Jquery MobileLimit resizing of images with explicitly set width and height attributeserror TLD use in a jsp fileJsp tld files cannot be resolved