473,507 Members | 2,389 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Build 4 executables

VJ
I have one VB.NET project, that outputs a "Mycomapny.exe" everytime I do a
build. But I need it to output 4 different executables everytime I build.
How do I archive this. I am looking at the Project Properties & the
Configuration manager. The configuration manager lets me create any number
configuration.. but I can seem to choose a different assembly name for each
configuration.. How can I do this?

Thanks
VJ
Nov 20 '05 #1
5 1405
* "VJ" <vi********@yahoo.com> scripsit:
I have one VB.NET project, that outputs a "Mycomapny.exe" everytime I do a
build. But I need it to output 4 different executables everytime I build.
How do I archive this. I am looking at the Project Properties & the
Configuration manager. The configuration manager lets me create any number
configuration.. but I can seem to choose a different assembly name for each
configuration.. How can I do this?


I don't see a way for doing that. Maybe a pseudo-post-build event will
solve your problem:

<URL:http://www.google.de/groups?selm=%235qArBxxCHA.1580%40TK2MSFTNGP09>

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>
Nov 20 '05 #2
VJ,
In addition to the other comments, what is different between each of the
executables?

Have you considered 4 projects in a single solution? Each project could then
be configured uniquely. One of the projects would actually contain the
source files, while the other 3 have links to the source files (of the first
project).

To link to a source file, use "Project - Add Existing Item", then click the
down arrow next to the Open button and select "Link file".

Hope this helps
Jay

"VJ" <vi********@yahoo.com> wrote in message
news:ej**************@tk2msftngp13.phx.gbl...
I have one VB.NET project, that outputs a "Mycomapny.exe" everytime I do a
build. But I need it to output 4 different executables everytime I build.
How do I archive this. I am looking at the Project Properties & the
Configuration manager. The configuration manager lets me create any number
configuration.. but I can seem to choose a different assembly name for each configuration.. How can I do this?

Thanks
VJ

Nov 20 '05 #3
VJ
Just the usertype is different.. We would like to name the executable
different for each usertype.. Its a business requirement we have to do
this..
Will what you suggested work.. ?

Thanks
VJ

"Jay B. Harlow [MVP - Outlook]" <Ja************@msn.com> wrote in message
news:uU**************@TK2MSFTNGP12.phx.gbl...
VJ,
In addition to the other comments, what is different between each of the
executables?

Have you considered 4 projects in a single solution? Each project could then be configured uniquely. One of the projects would actually contain the
source files, while the other 3 have links to the source files (of the first project).

To link to a source file, use "Project - Add Existing Item", then click the down arrow next to the Open button and select "Link file".

Hope this helps
Jay

"VJ" <vi********@yahoo.com> wrote in message
news:ej**************@tk2msftngp13.phx.gbl...
I have one VB.NET project, that outputs a "Mycomapny.exe" everytime I do a build. But I need it to output 4 different executables everytime I build. How do I archive this. I am looking at the Project Properties & the
Configuration manager. The configuration manager lets me create any number configuration.. but I can seem to choose a different assembly name for

each
configuration.. How can I do this?

Thanks
VJ


Nov 20 '05 #4
VJ,
What do you mean by "usertype"?

To me a user type is a new Class, Structure, Enum, Delegate, or Interface in
your project.

I suspect, but cannot be certain that you mean a different person who is
using your app.

Either way, each project has its own project properties, the name of the
executable is one of the project properties, so yes what I suggest should
work.

Hope this helps
Jay

"VJ" <vi********@yahoo.com> wrote in message
news:ul**************@TK2MSFTNGP12.phx.gbl...
Just the usertype is different.. We would like to name the executable
different for each usertype.. Its a business requirement we have to do
this..
Will what you suggested work.. ?

Thanks
VJ

"Jay B. Harlow [MVP - Outlook]" <Ja************@msn.com> wrote in message
news:uU**************@TK2MSFTNGP12.phx.gbl...
VJ,
In addition to the other comments, what is different between each of the
executables?

Have you considered 4 projects in a single solution? Each project could then
be configured uniquely. One of the projects would actually contain the
source files, while the other 3 have links to the source files (of the

first
project).

To link to a source file, use "Project - Add Existing Item", then click

the
down arrow next to the Open button and select "Link file".

Hope this helps
Jay

"VJ" <vi********@yahoo.com> wrote in message
news:ej**************@tk2msftngp13.phx.gbl...
I have one VB.NET project, that outputs a "Mycomapny.exe" everytime I
do a build. But I need it to output 4 different executables everytime I build. How do I archive this. I am looking at the Project Properties & the
Configuration manager. The configuration manager lets me create any number configuration.. but I can seem to choose a different assembly name for

each
configuration.. How can I do this?

Thanks
VJ



Nov 20 '05 #5
VJ
Yes Thanks.. It did work..

Thanks
VJ

"Jay B. Harlow [MVP - Outlook]" <Ja************@msn.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
VJ,
What do you mean by "usertype"?

To me a user type is a new Class, Structure, Enum, Delegate, or Interface in your project.

I suspect, but cannot be certain that you mean a different person who is
using your app.

Either way, each project has its own project properties, the name of the
executable is one of the project properties, so yes what I suggest should
work.

Hope this helps
Jay

"VJ" <vi********@yahoo.com> wrote in message
news:ul**************@TK2MSFTNGP12.phx.gbl...
Just the usertype is different.. We would like to name the executable
different for each usertype.. Its a business requirement we have to do
this..
Will what you suggested work.. ?

Thanks
VJ

"Jay B. Harlow [MVP - Outlook]" <Ja************@msn.com> wrote in message news:uU**************@TK2MSFTNGP12.phx.gbl...
VJ,
In addition to the other comments, what is different between each of the executables?

Have you considered 4 projects in a single solution? Each project could
then
be configured uniquely. One of the projects would actually contain the
source files, while the other 3 have links to the source files (of the first
project).

To link to a source file, use "Project - Add Existing Item", then
click the
down arrow next to the Open button and select "Link file".

Hope this helps
Jay

"VJ" <vi********@yahoo.com> wrote in message
news:ej**************@tk2msftngp13.phx.gbl...
> I have one VB.NET project, that outputs a "Mycomapny.exe" everytime

I do
a
> build. But I need it to output 4 different executables everytime I

build.
> How do I archive this. I am looking at the Project Properties & the
> Configuration manager. The configuration manager lets me create any

number
> configuration.. but I can seem to choose a different assembly name

for each
> configuration.. How can I do this?
>
> Thanks
> VJ
>
>



Nov 20 '05 #6

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

Similar topics

2
4359
by: AIM | last post by:
Error in msvc in building inheritance.obj to build hello.pyd Hello, I am trying to build the boost 1.31.0 sample extension hello.cpp. I can not compile the file inheritance.cpp because the two...
3
2876
by: Steve Franks | last post by:
I'm using Visual Studio 2005 RC and cannot figure out how to produce a "release" build. Am I doing something wrong? I'm wondering if perhaps MS locked out the ability to produce a release build...
4
1496
by: Nick | last post by:
Hi there, I have a solution which consists of 2 class libraries and 2 executables which both consume these class libraries. I've set the correct dependencies in order for the VS to...
9
1971
by: yevvi | last post by:
Hi, We have a product with bunch of dlls which are now built with Visual Studio 2003. We want to switch the build to use VS2005. I have read that in VS2005 runtime libraries come as...
5
1221
by: GatlingGun | last post by:
Hi everyone, I need to make another exe from my app. For example there are some app that compare two file and then buil another exe with the different (patcher). Help me please! :) 10x
28
2707
by: =?Utf-8?B?R2Vvcmdl?= | last post by:
Hello everyone, I am developing C++ COM native code (unmanaged C++) using Visual Studio 2005. I do not take any new features of 64-bit platform, and currently my code runs fine on 32-bit...
7
4335
by: plumb and tree | last post by:
I've been trying for days to build 64 bit python with Solaris 10 + Sun Studio 12. Can anyone helpl please. This is how I tried to do build: # ./configure --prefix=/opt/python2.4...
2
1252
by: Lonnie Princehouse | last post by:
I'm the author of Yapgvb, a Python binding for Graphviz. Yapgvb enjoys modest success, but for some time it has been in dire need of a Python 2.5 build for Windows. I'm posting this message in the...
12
1666
by: chardish | last post by:
Hello, I'm trying to build an executable with py2exe, but unfortunately the version I have is 0.6.6, which has a rather annoying bug that doesn't let you rename the executable file if you bundle...
0
7223
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
7321
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
7377
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...
1
7034
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7488
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...
0
5623
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,...
0
3179
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1544
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 ...
0
412
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...

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.