Question on building Web application

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.
 
K

Kevin Spencer

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
 
K

Kevin Spencer

Sorry. I misunderstood you. Try using a MakeFile.

--
HTH,

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

Sericinus hunter

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.
 
K

Kevin Spencer

That's what MakeFiles are for.

--
HTH,

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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top