|
-
June 17th, 2002, 01:34 PM
#1
Command line build of C# Project
Hi Everyone,
I am looking for a way to build my CSharp Project from the command line. This project contains a Windows application with a lot of .cs and .resx files. I dont see any way to export a Makefile of some sort for this project from Visual Studio .NET. Any ideas?
Thanks,
Krishna.
-
June 18th, 2002, 12:15 PM
#2
You can invoke devenv.exe on the solution file to build it, like this:
Code:
devenv /build Debug MySolution.sln
That will build a Debug version of MySolution.sln, without starting the IDE.
-
June 18th, 2002, 12:50 PM
#3
Thank you very much. This is exactly what I was looking for, but couldn't locate it in the help.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|