I have a development server and was wondering if there was a way to configure VS 2012 so when I do a debug to have it deploy it's self to my dev server on my LAN instead of running off the local IIS?
You can go to the project properties and set the output path to the location in your development server. You may have to add a post build event to reset the IIS Server remotely if you are deploying a web application.
Another option is to publish your project into a specific location and point your dev server to take the latest version from that location always
I'm not sure what you are trying to do. If you are asking if there is anyway to publish the app on remote server, when you press debug in Visual Studio, well it's not possible. But if you would like to allow remote debugging, following MSDN article will
help you.
I'm not sure what you are trying to do. If you are asking if there is anyway to publish the app on remote server, when you press debug in Visual Studio, well it's not possible. But if you would like to allow remote debugging, following MSDN article will
help you.
I have a local Windows 2012 server on my LAN and I want to use IIS on it to test and debug on (when I hit F5) instead of the dumbed down version of IIS VS2012 gives you.
Eagle_f90
Member
465 Points
532 Posts
VS2012 deploying to remote IIS for debug?
Nov 24, 2012 09:11 PM|LINK
I have a development server and was wondering if there was a way to configure VS 2012 so when I do a debug to have it deploy it's self to my dev server on my LAN instead of running off the local IIS?
sujithgokul
Member
42 Points
17 Posts
Re: VS2012 deploying to remote IIS for debug?
Nov 25, 2012 10:29 PM|LINK
You can go to the project properties and set the output path to the location in your development server. You may have to add a post build event to reset the IIS Server remotely if you are deploying a web application.
Another option is to publish your project into a specific location and point your dev server to take the latest version from that location always
Sujith Gokuladas
Ruchira
All-Star
42904 Points
7022 Posts
MVP
Re: VS2012 deploying to remote IIS for debug?
Nov 27, 2012 01:28 PM|LINK
Hello,
I'm not sure what you are trying to do. If you are asking if there is anyway to publish the app on remote server, when you press debug in Visual Studio, well it's not possible. But if you would like to allow remote debugging, following MSDN article will help you.
http://msdn.microsoft.com/en-us/library/bt727f1t.aspx
My Tech blog | My YouTube ChannelPlease 'Mark as Answer' if this post helps you.Eagle_f90
Member
465 Points
532 Posts
Re: VS2012 deploying to remote IIS for debug?
Nov 27, 2012 03:30 PM|LINK
I have a local Windows 2012 server on my LAN and I want to use IIS on it to test and debug on (when I hit F5) instead of the dumbed down version of IIS VS2012 gives you.