hi, Can anyone let me know whether, I can manually compile an entire asp.net project or solution to give a single DLL, without vs.net? Which normally vs.net does, when the project is compiled to give a single DLL. Thanks in Advance, Murugavel S :)
hi, Can anyone let me know whether, I can manually compile an entire asp.net project or solution to give a single DLL, without vs.net? Which normally vs.net does, when the project is compiled to give a single DLL. Thanks in Advance, Murugavel S :)
hi, Can anyone let me know whether, I can manually compile an entire asp.net project or solution to give a single DLL, without vs.net? Which normally vs.net does, when the project is compiled to give a single DLL. Thanks in Advance, Murugavel S :)
This command should do the job: csc /target:library /out:C:\Inetpub\wwwroot\xxx\bin\xxx.dll /recurse:C:\Inetpub\wwroot\xxx\*.cs You'll have to adjust the paths and of course the name of the library to your needs and maybe need to specify the full qualified path of the C# compiler.