Do you compile the C# project using VS.net IDE
-
I find that some C# project is compiled with the makefile, so i want to know why use the makefile to compile it. Is it a best way to improve the programming skills? What compiler do you use?
-
I find that some C# project is compiled with the makefile, so i want to know why use the makefile to compile it. Is it a best way to improve the programming skills? What compiler do you use?
It makes no difference as far as I know, its generally down to the site standards and source control methods.
Fired.Fish.Gmail wrote:
Is it a best way to improve the programming skills?
No, its not really that relevant any more than say using IE or FF for a browser.
Bob Ashfield Consultants Ltd Proud to be a 2009 Code Project MVP
-
I find that some C# project is compiled with the makefile, so i want to know why use the makefile to compile it. Is it a best way to improve the programming skills? What compiler do you use?
Fired.Fish.Gmail wrote:
What compiler do you use?
The compiler doesn't change whether you use a MakeFile, the IDE or an MSBuild project. It's always going to be csc.exe (for C#).
"WPF has many lovers. It's a veritable porn star!" - Josh Smith
As Braveheart once said, "You can take our freedom but you'll never take our Hobnobs!" - Martin Hughes.
-
Fired.Fish.Gmail wrote:
What compiler do you use?
The compiler doesn't change whether you use a MakeFile, the IDE or an MSBuild project. It's always going to be csc.exe (for C#).
"WPF has many lovers. It's a veritable porn star!" - Josh Smith
As Braveheart once said, "You can take our freedom but you'll never take our Hobnobs!" - Martin Hughes.
I Have seen the csc.exe file. Thanks.