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
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
add a comment |
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
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
add a comment |
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
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
angular iis bamboo microsoft-web-deploy webdeploy-3.5
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
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
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"
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>
I want to deploy it from Bamboo. It's a remote deployment. For visual studio projects I can use MSBUILD publish. Here usingng 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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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"
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>
I want to deploy it from Bamboo. It's a remote deployment. For visual studio projects I can use MSBUILD publish. Here usingng 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
add a comment |
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"
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>
I want to deploy it from Bamboo. It's a remote deployment. For visual studio projects I can use MSBUILD publish. Here usingng 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
add a comment |
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"
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>
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"
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>
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 usingng 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
add a comment |
I want to deploy it from Bamboo. It's a remote deployment. For visual studio projects I can use MSBUILD publish. Here usingng 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
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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