how can i get 3 execution in a single build action?

  • Thread starter Thread starter cody
  • Start date Start date
C

cody

You have to make 3 projects and put them in one workspace. In my knowledge,
one project can have only one assembly.
 
I have a project containing 3 class have main method
How can i get three exe file after build??
 
dd said:
I have done the project at the way u said before, but i found it many of the
classes in these three project are resuable (the same content), I don't want
to waste my time.

So have another project which is a class library with all the common
code in, and make each of the executable projects refer to it.
 
I have done the project at the way u said before, but i found it many of the
classes in these three project are resuable (the same content), I don't want
to waste my time.
cody said:
You have to make 3 projects and put them in one workspace. In my knowledge,
one project can have only one assembly.

--
cody

[Freeware, Games and Humor]
www.deutronium.de.vu || www.deutronium.tk
dd said:
I have a project containing 3 class have main method
How can i get three exe file after build??
 
Jon Skeet said:
So have another project which is a class library with all the common
code in, and make each of the executable projects refer to it.

Another way would be to use conditional compilation, and a separate
configuration (or two for debug&release) for each executale.

Niki
 
thx...............are there a way have a building script or something to do
at a very extreme case?
 
Back
Top