473,396 Members | 1,961 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Do not deploy the source code files

Hi,

I have developed a a web application with ASP.NET 2.0 and VS 2005.
My client wants to be delivered a .msi file that installs the app. My big
problem is that the .msi also deploys the source code files which I strongly
don't want to happen.

How to create a setup project that does not include the source files but
only the aspx, config and some binaries (as it was with VS 2003 setup
projects)?

Thank you,
Mircea

Feb 1 '07 #1
5 2239
"Mircea Pleteriu" <mp*******@ecom-webfactory.dewrote in message
news:%2****************@TK2MSFTNGP05.phx.gbl...
How to create a setup project that does not include the source files but
only the aspx, config and some binaries (as it was with VS 2003 setup
projects)?
http://www.google.co.uk/search?sourc...oyment+Project
Feb 1 '07 #2
Use the Web Deployments Project add-in for VS:

Download:
http://msdn2.microsoft.com/en-us/asp.net/aa336619.aspx

Usage hints:
http://msdn2.microsoft.com/en-us/library/aa479568.aspx


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Mircea Pleteriu" <mp*******@ecom-webfactory.dewrote in message
news:%2****************@TK2MSFTNGP05.phx.gbl...
Hi,

I have developed a a web application with ASP.NET 2.0 and VS 2005.
My client wants to be delivered a .msi file that installs the app. My big problem is that the .msi
also deploys the source code files which I strongly don't want to happen.

How to create a setup project that does not include the source files but only the aspx, config
and some binaries (as it was with VS 2003 setup projects)?

Thank you,
Mircea

Feb 1 '07 #3
I've installed the tool.
At a first glance it seems that this tool does not generate .msi or merge
modules..
And I need a msi or merge module.
"Juan T. Llibre" <no***********@nowhere.comwrote in message
news:e3**************@TK2MSFTNGP04.phx.gbl...
Use the Web Deployments Project add-in for VS:

Download:
http://msdn2.microsoft.com/en-us/asp.net/aa336619.aspx

Usage hints:
http://msdn2.microsoft.com/en-us/library/aa479568.aspx


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Mircea Pleteriu" <mp*******@ecom-webfactory.dewrote in message
news:%2****************@TK2MSFTNGP05.phx.gbl...
>Hi,

I have developed a a web application with ASP.NET 2.0 and VS 2005.
My client wants to be delivered a .msi file that installs the app. My big
problem is that the .msi also deploys the source code files which I
strongly don't want to happen.

How to create a setup project that does not include the source files but
only the aspx, config and some binaries (as it was with VS 2003 setup
projects)?

Thank you,
Mircea


Feb 1 '07 #4
It does.

Review the hints at :
http://msdn2.microsoft.com/en-us/library/aa479568.aspx

You need to add a “Web Setup” project into your WDP solution.

This is a standard VS 2005 project type that supports packaging a .msi file
along with logic to create a vroot and deploy an application when executed.

You can easily configure the WebSetup project to pipe in
the output from your WebSiteDeployment project into the MSI.

Then, while you select “Build Solution” again you’ll build your web deployment project,
pipe it into the setup project, and you’ll be left with a .MSI setup program for your web
application
that will walk you through creating an IIS vroot and deploy your production app on a web server when
run.

There's specific instructions for doing that, with images, at :
http://weblogs.asp.net/scottgu/archi...06/429723.aspx


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Mircea Pleteriu" <mp*******@ecom-webfactory.dewrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...
I've installed the tool.
At a first glance it seems that this tool does not generate .msi or merge modules..
And I need a msi or merge module.
"Juan T. Llibre" <no***********@nowhere.comwrote in message
news:e3**************@TK2MSFTNGP04.phx.gbl...
>Use the Web Deployments Project add-in for VS:

Download:
http://msdn2.microsoft.com/en-us/asp.net/aa336619.aspx

Usage hints:
http://msdn2.microsoft.com/en-us/library/aa479568.aspx


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Mircea Pleteriu" <mp*******@ecom-webfactory.dewrote in message
news:%2****************@TK2MSFTNGP05.phx.gbl...
>>Hi,

I have developed a a web application with ASP.NET 2.0 and VS 2005.
My client wants to be delivered a .msi file that installs the app. My big problem is that the
.msi also deploys the source code files which I strongly don't want to happen.

How to create a setup project that does not include the source files but only the aspx, config
and some binaries (as it was with VS 2003 setup projects)?

Thank you,
Mircea



Feb 1 '07 #5
It works.
Thank you lots.

"Juan T. Llibre" <no***********@nowhere.comwrote in message
news:%2***************@TK2MSFTNGP05.phx.gbl...
It does.

Review the hints at :
http://msdn2.microsoft.com/en-us/library/aa479568.aspx

You need to add a "Web Setup" project into your WDP solution.

This is a standard VS 2005 project type that supports packaging a .msi
file
along with logic to create a vroot and deploy an application when
executed.

You can easily configure the WebSetup project to pipe in
the output from your WebSiteDeployment project into the MSI.

Then, while you select "Build Solution" again you'll build your web
deployment project,
pipe it into the setup project, and you'll be left with a .MSI setup
program for your web application
that will walk you through creating an IIS vroot and deploy your
production app on a web server when run.

There's specific instructions for doing that, with images, at :
http://weblogs.asp.net/scottgu/archi...06/429723.aspx


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Mircea Pleteriu" <mp*******@ecom-webfactory.dewrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...
>I've installed the tool.
At a first glance it seems that this tool does not generate .msi or merge
modules..
And I need a msi or merge module.
"Juan T. Llibre" <no***********@nowhere.comwrote in message
news:e3**************@TK2MSFTNGP04.phx.gbl...
>>Use the Web Deployments Project add-in for VS:

Download:
http://msdn2.microsoft.com/en-us/asp.net/aa336619.aspx

Usage hints:
http://msdn2.microsoft.com/en-us/library/aa479568.aspx


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Mircea Pleteriu" <mp*******@ecom-webfactory.dewrote in message
news:%2****************@TK2MSFTNGP05.phx.gbl.. .
Hi,

I have developed a a web application with ASP.NET 2.0 and VS 2005.
My client wants to be delivered a .msi file that installs the app. My
big problem is that the .msi also deploys the source code files which I
strongly don't want to happen.

How to create a setup project that does not include the source files
but only the aspx, config and some binaries (as it was with VS 2003
setup projects)?

Thank you,
Mircea





Feb 1 '07 #6

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

Similar topics

0
by: Ashutosh | last post by:
---------------------------------------------------------------------------- ---- Parser Error Description: An error occurred during the parsing of a resource required to service this request....
4
by: bob lambert | last post by:
Help I am trying to deploy to another pc a vb.net std 2002 windows form application. I am confused. I created a project - windows form I built form, compiled and debugged. I created a...
0
by: Siegfried Heintze | last post by:
I'm so fustrated! While my prefered approach is still to call a C DLL from C# Web Service, I thought I would tran another approach while waiting for a response. I created a C++ service using...
5
by: JebBushell | last post by:
I need to deploy a 1.1 web app without the .cs files. I am so far unable to find out how to do this. Can anyone shed some light? I have already tried upgrading to ASP.NET 2.0. Cost me a day. ...
2
by: Daniela Roman | last post by:
To deploy a simple web application what type of files do I need to copy over? I want to use a simple copy. Thanks
6
by: AGP | last post by:
I resisted for many years but I've just written my first app in .NET2005 and am looking to deploy my app with a third-party installer. ClickOnce and the VS Installer do not meed my needs and I am...
3
by: balaki | last post by:
Hi, I am working on a Installer Project, which requires to deploy SQL Server 2005 Reports (.rdl files) and Datasource (.rds file). The datasource is common for all reports. The report files are...
6
by: =?Utf-8?B?QW5kcmV3X2QxMjM=?= | last post by:
Here is my problem. I have an app that has over 9 web services. For years I had not issues with clickonce but now it looks like the build is missing XmlSerializers.dll.deploy. I did have this...
0
by: stephen | last post by:
Hi, I am using Click Once Deploy to deploy an application.(this application has an .exe, .config, .xml files) and after deployment to a location, I checked for the files and all the files are...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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,...
0
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,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.