473,569 Members | 2,691 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Web Deploy Project in debug mode

Is there a way I can disable Web Deploy Project to run while I am in debug
mode?

I think Web Deploy Project is very foolish, it could not detect if code of a
website is changed or not, it will load "aspnet_merge.e xe"
"aspnet_compile r.exe"anyway, everytime when I load/debug a site, thus it
causes my machine to spend a lot of time to compile before I make some minor
change to other projects inside same solution.

--
WWW: http://www.imagestation.com/members/hardywang
ICQ: 3359839
yours Hardy
Sep 18 '06 #1
4 2653
Thanks to God, you have the solution....

--
WWW: http://www.imagestation.com/members/hardywang
ICQ: 3359839
yours Hardy
"Steven Cheng[MSFT]" <st*****@online .microsoft.comw rote in message
news:ta******** ******@TK2MSFTN GXA01.phx.gbl.. .
Hello Hardy,

As for the "Web Deployment Project", it is just added as a normal project
into the ASP.NET Website project's solution and the only difference is
that
it is associated with the web site project(can not exist individually).
However, its building behavior(which build configuration to use) is
controlled by the solution's current "Active Solution Configuration".
There're two default build confgiurations (debug and release), we can add
our custom solution build configuration and configure existing ones in the
"Configurat ion Manager" of the solution (you can find it in the solution's
properites page).

And in the Configuration Manager, you can configure each project(include
in
the solution)'s build configuration type for the certain solution build
configuration. for your scenario, you can disable the build of the web
deployment project in the Soluton's "Debug" build configuration and only
enable it in the release build configuration. I've attached two
screenshot
demonstrating the setting(you can get it through outlook express). And in
webdeployment project's own project setting, you can configure the
detailed
settings for the different build confugration( debug and release....),
they'll be applied respectively depend on the solution's build
configuration that is choosed.

Also, this is also what is recommeded in the following webdeployment
introduction article:

#Using Web Deployment Projects with Visual Studio 2005
http://msdn.microsoft.com/library/en...yment_projects.
asp?frame=true

You can also view the MSDN reference about the build configuration in VS
2005:

#Build Configurations
http://msdn2.microsoft.com/en-us/library/kkz9kefa.aspx

Hope this helps some.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead

=============== =============== =============== =====

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.

=============== =============== =============== =====

This posting is provided "AS IS" with no warranties, and confers no
rights.

Sep 19 '06 #2
Hi,

Hardy Wang wrote:
Thanks to God, you have the solution....
I could be wrong, but I'd be ready to bet that He wasn't involved.

Greetings,
Laurent
--
Laurent Bugnion, GalaSoft
Software engineering: http://www.galasoft-LB.ch
PhotoAlbum: http://www.galasoft-LB.ch/pictures
Support children in Calcutta: http://www.calcutta-espoir.ch
Sep 19 '06 #3
re:
>Thanks to God, you have the solution....

I could be wrong, but I'd be ready to bet that He wasn't involved.
Are you sure God's a "He" ?

Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
=============== =============== =====
"Laurent Bugnion" <ga*********@bl uewin.chwrote in message
news:u2******** ******@TK2MSFTN GP06.phx.gbl...
Hi,

Hardy Wang wrote:
>Thanks to God, you have the solution....

I could be wrong, but I'd be ready to bet that He wasn't involved.

Greetings,
Laurent
--
Laurent Bugnion, GalaSoft
Software engineering: http://www.galasoft-LB.ch
PhotoAlbum: http://www.galasoft-LB.ch/pictures
Support children in Calcutta: http://www.calcutta-espoir.ch

Sep 19 '06 #4
Hi,

Juan T. Llibre wrote:
re:
>>>Thanks to God, you have the solution....

I could be wrong, but I'd be ready to bet that He wasn't involved.


Are you sure God's a "He" ?
I am not even sure that God is. :-)

That said, if He is, then He must be a guy. No woman could be so wicked
and mean.

Laurent
--
Laurent Bugnion, GalaSoft
Software engineering: http://www.galasoft-LB.ch
PhotoAlbum: http://www.galasoft-LB.ch/pictures
Support children in Calcutta: http://www.calcutta-espoir.ch
Sep 20 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
1966
by: JJ | last post by:
Hi, I have gone the setup project route and added the setup project to my solution as in the guide. I have checked the dependancy's and they all seem to be there. Now do I just build the project then move the project files to CD or am I missing a step? Do I have to be in release mode for my App in order to do the setup build? How can I...
1
2645
by: bob | last post by:
Hello, I have a SetUp project in my solution. When I add the primary output of certain projects to it they add their project dependencies twice - the debug and the release. Anyone known what I'm doing wrong? I'm worried that I'll end up shipping the debug version. Thanks,
2
2355
by: John Spiegel | last post by:
Hi all, I'm attempting to deploy a pretty simple web service to a shared web server that was built w/ Visual Studio. According to MSDN, I should be able to just copy the asmx and bin folder (w/ contents) and it's ready to go. Of course, in practice this fails. When attempting to add access it with a client, I get the error that follows. ...
1
1302
by: Jeffrey Jones | last post by:
Hello all, I hope I am posting to the right forum. I have made my very first ASP.NET web app and am trying to deploy my baby to a remote server. All I know about my remote server is that it has frontpage extensions installed and is compatible with .NET v1.1.4322. From the IDE, I have chosen the 'Copy project...' option and have copied the...
4
1789
by: Davis Ford | last post by:
Hi, I have a DLL project that implements the Model/Controller part of MVC, and the client of the DLL would be the View. The interface the View consumes is the Controller API, and the Model is marked internal, b/c the View shouldn't need to get at it, but this means I can no longer test the Model unless my NUnit tests exist inside the DLL...
11
1904
by: martin1 | last post by:
Hi, I want o deploy window app to another PC, which does not .Net 2.0 component. The window app has some .Net 2.0 support, so how to deplot the app to that PC? Thanks
7
1309
by: ivo | last post by:
Hi everyone I am having trouble with deploying VS 2005 Express Edition web app to real server on the net. Since VS 2005 ExpressEdition is free - is it for that reason unpossible to do deployment ... What do I need to copy to remote server ...
5
2453
by: Ron | last post by:
Hi all, I am new at .net 2.0 deployment so can any one recommend me a good way or article to follow? What I want to do is (1)to deploy the website on the server2003 with IIS6 (2)we have a website on the web server which is running with .net 1.1
5
3851
by: =?Utf-8?B?c2lwcHl1Y29ubg==?= | last post by:
Hi I have a solution with 50 projects. They are all compiled in DEBUG mode and the output path has been modified to a custom directory I now want to build RELEASE mode and the Output Path needs to be reset for all the project to the custom directory Is there an easy way to do this besides opening 50 projects???
0
7698
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7612
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7924
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
7970
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
1
5513
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
3653
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
1
2113
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1213
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
937
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.