Question on building Web application

  • Thread starter Thread starter Sericinus hunter
  • Start date Start date
S

Sericinus hunter

I hope this is right group for the question. If not, please
forgive me and give some pointers.

I have VS 2003 and Web application project which builds and works
just fine. I need to build the project with command line on a
different machine, which does not have IIS running. Devenv naturally
wants the working virtual folder exist. Is it at all possible to
instruct it not refer to the URL? Theoretically, it should not
be necessary just for the build, I can achieve my goal by compiling
cs files and resources separatly but can I do it with a simple
devenv /build command?

Thank you in advance.
 
A Web Application ALWAYS runs in the context of a web site. It is an HTTP
handler.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
The sun never sets on
the Kingdom of Heaven
 
Sorry. I misunderstood you. Try using a MakeFile.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
The sun never sets on
the Kingdom of Heaven
 
Yes, running resgen.exe and csc.exe on individual source
files does the job. But this solution is not as convenient for
automatic nightly builds on a dedicated machine. I was hoping
it was possible just to change some settings in the .csproj
and build it with devenv.exe one-liner.
 
That's what MakeFiles are for.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
The sun never sets on
the Kingdom of Heaven
 
Back
Top